@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
19 lines (18 loc) • 963 B
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 { UnparsedObject } from "../../datadog-api-client-common/util";
/**
* The field and direction to sort apps by
*/
export declare type AppsSortField = typeof NAME | typeof CREATED_AT | typeof UPDATED_AT | typeof USER_NAME | typeof NAME_DESC | typeof CREATED_AT_DESC | typeof UPDATED_AT_DESC | typeof USER_NAME_DESC | UnparsedObject;
export declare const NAME = "name";
export declare const CREATED_AT = "created_at";
export declare const UPDATED_AT = "updated_at";
export declare const USER_NAME = "user_name";
export declare const NAME_DESC = "-name";
export declare const CREATED_AT_DESC = "-created_at";
export declare const UPDATED_AT_DESC = "-updated_at";
export declare const USER_NAME_DESC = "-user_name";