@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
85 lines (84 loc) • 2.52 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 { Creator } from "./Creator";
import { SLOCorrectionCategory } from "./SLOCorrectionCategory";
import { SLOCorrectionResponseAttributesModifier } from "./SLOCorrectionResponseAttributesModifier";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* The attribute object associated with the SLO correction.
*/
export declare class SLOCorrectionResponseAttributes {
/**
* Category the SLO correction belongs to.
*/
"category"?: SLOCorrectionCategory;
/**
* The epoch timestamp of when the correction was created at.
*/
"createdAt"?: number;
/**
* Object describing the creator of the shared element.
*/
"creator"?: Creator;
/**
* Description of the correction being made.
*/
"description"?: string;
/**
* Length of time (in seconds) for a specified `rrule` recurring SLO correction.
*/
"duration"?: number;
/**
* Ending time of the correction in epoch seconds.
*/
"end"?: number;
/**
* The epoch timestamp of when the correction was modified at.
*/
"modifiedAt"?: number;
/**
* Modifier of the object.
*/
"modifier"?: SLOCorrectionResponseAttributesModifier;
/**
* The recurrence rules as defined in the iCalendar RFC 5545. The supported rules for SLO corrections
* are `FREQ`, `INTERVAL`, `COUNT`, `UNTIL` and `BYDAY`.
*/
"rrule"?: string;
/**
* ID of the SLO that this correction applies to.
*/
"sloId"?: string;
/**
* Starting time of the correction in epoch seconds.
*/
"start"?: number;
/**
* The timezone to display in the UI for the correction times (defaults to "UTC").
*/
"timezone"?: string;
/**
* 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();
}