@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
64 lines (63 loc) • 1.88 kB
TypeScript
/**
* 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 { SLORawErrorBudgetRemaining } from "./SLORawErrorBudgetRemaining";
import { SLOState } from "./SLOState";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Status of the SLO's primary timeframe.
*/
export declare class SLOStatus {
/**
* Error message if SLO status or error budget could not be calculated.
*/
"calculationError"?: string;
/**
* Remaining error budget of the SLO in percentage.
*/
"errorBudgetRemaining"?: number;
/**
* timestamp (UNIX time in seconds) of when the SLO status and error budget
* were calculated.
*/
"indexedAt"?: number;
/**
* Error budget remaining for an SLO.
*/
"rawErrorBudgetRemaining"?: SLORawErrorBudgetRemaining;
/**
* The current service level indicator (SLI) of the SLO, also known as 'status'. This is a percentage value from 0-100 (inclusive).
*/
"sli"?: number;
/**
* The number of decimal places the SLI value is accurate to.
*/
"spanPrecision"?: number;
/**
* State of the SLO.
*/
"state"?: SLOState;
/**
* 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();
}