UNPKG

@datadog/datadog-api-client

Version:
53 lines (52 loc) 1.88 kB
/** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. */ import { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * Cost data for a single budget entry. */ export declare class BudgetWithEntriesDataAttributesEntriesItemsCosts { /** * The actual cost for this entry. Present only when `actual=true` is requested. */ "actual"?: number; /** * The budgeted amount for this entry. */ "amount"?: number; /** * The custom forecast override for this entry. `null` when `forecast=true` is requested but no custom forecast has been set for this entry's month. A numeric value, including `0`, indicates an explicit custom forecast override. Omitted when `forecast=false` or the feature is not available for the organization. */ "customForecast"?: number; /** * The final forecast for this entry, with any custom forecast override applied. Present only when `forecast=true` is requested. */ "forecast"?: number; /** * The out-of-the-box ML forecast for this entry, before custom overrides. Present only when `forecast=true` is requested. */ "ootbForecast"?: number; /** * A container for additional, undeclared properties. * This is a holder for any undeclared properties as specified with * the 'additionalProperties' keyword in the OAS document. */ "additionalProperties"?: { [key: string]: any; }; /** * @ignore */ "_unparsed"?: boolean; /** * @ignore */ static readonly attributeTypeMap: AttributeTypeMap; /** * @ignore */ static getAttributeTypeMap(): AttributeTypeMap; constructor(); }