UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

28 lines (27 loc) 1.66 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 { UnparsedObject } from "../../datadog-api-client-common/util"; /** * Widget sorting methods. */ export declare type WidgetMonitorSummarySort = typeof NAME | typeof GROUP | typeof STATUS | typeof TAGS | typeof TRIGGERED | typeof GROUP_ASCENDING | typeof GROUP_DESCENDING | typeof NAME_ASCENDING | typeof NAME_DESCENDING | typeof STATUS_ASCENDING | typeof STATUS_DESCENDING | typeof TAGS_ASCENDING | typeof TAGS_DESCENDING | typeof TRIGGERED_ASCENDING | typeof TRIGGERED_DESCENDING | typeof PRIORITY_ASCENDING | typeof PRIORITY_DESCENDING | UnparsedObject; export declare const NAME = "name"; export declare const GROUP = "group"; export declare const STATUS = "status"; export declare const TAGS = "tags"; export declare const TRIGGERED = "triggered"; export declare const GROUP_ASCENDING = "group,asc"; export declare const GROUP_DESCENDING = "group,desc"; export declare const NAME_ASCENDING = "name,asc"; export declare const NAME_DESCENDING = "name,desc"; export declare const STATUS_ASCENDING = "status,asc"; export declare const STATUS_DESCENDING = "status,desc"; export declare const TAGS_ASCENDING = "tags,asc"; export declare const TAGS_DESCENDING = "tags,desc"; export declare const TRIGGERED_ASCENDING = "triggered,asc"; export declare const TRIGGERED_DESCENDING = "triggered,desc"; export declare const PRIORITY_ASCENDING = "priority,asc"; export declare const PRIORITY_DESCENDING = "priority,desc";