UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

18 lines (17 loc) 780 B
/** * 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 { UnparsedObject } from "../../datadog-api-client-common/util"; /** * The incident severity. */ export declare type IncidentSeverity = typeof UNKNOWN | typeof SEV_0 | typeof SEV_1 | typeof SEV_2 | typeof SEV_3 | typeof SEV_4 | typeof SEV_5 | UnparsedObject; export declare const UNKNOWN = "UNKNOWN"; export declare const SEV_0 = "SEV-0"; export declare const SEV_1 = "SEV-1"; export declare const SEV_2 = "SEV-2"; export declare const SEV_3 = "SEV-3"; export declare const SEV_4 = "SEV-4"; export declare const SEV_5 = "SEV-5";