UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

23 lines (22 loc) 1.65 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"; /** * The definition of `CompletionConditionOperator` object. */ export declare type CompletionConditionOperator = typeof OPERATOR_EQUAL | typeof OPERATOR_NOT_EQUAL | typeof OPERATOR_GREATER_THAN | typeof OPERATOR_LESS_THAN | typeof OPERATOR_GREATER_THAN_OR_EQUAL_TO | typeof OPERATOR_LESS_THAN_OR_EQUAL_TO | typeof OPERATOR_CONTAINS | typeof OPERATOR_DOES_NOT_CONTAIN | typeof OPERATOR_IS_NULL | typeof OPERATOR_IS_NOT_NULL | typeof OPERATOR_IS_EMPTY | typeof OPERATOR_IS_NOT_EMPTY | UnparsedObject; export declare const OPERATOR_EQUAL = "OPERATOR_EQUAL"; export declare const OPERATOR_NOT_EQUAL = "OPERATOR_NOT_EQUAL"; export declare const OPERATOR_GREATER_THAN = "OPERATOR_GREATER_THAN"; export declare const OPERATOR_LESS_THAN = "OPERATOR_LESS_THAN"; export declare const OPERATOR_GREATER_THAN_OR_EQUAL_TO = "OPERATOR_GREATER_THAN_OR_EQUAL_TO"; export declare const OPERATOR_LESS_THAN_OR_EQUAL_TO = "OPERATOR_LESS_THAN_OR_EQUAL_TO"; export declare const OPERATOR_CONTAINS = "OPERATOR_CONTAINS"; export declare const OPERATOR_DOES_NOT_CONTAIN = "OPERATOR_DOES_NOT_CONTAIN"; export declare const OPERATOR_IS_NULL = "OPERATOR_IS_NULL"; export declare const OPERATOR_IS_NOT_NULL = "OPERATOR_IS_NOT_NULL"; export declare const OPERATOR_IS_EMPTY = "OPERATOR_IS_EMPTY"; export declare const OPERATOR_IS_NOT_EMPTY = "OPERATOR_IS_NOT_EMPTY";