@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
21 lines (20 loc) • 976 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 operator used in a targeting condition.
*/
export declare type ConditionOperator = typeof LT | typeof LTE | typeof GT | typeof GTE | typeof MATCHES | typeof NOT_MATCHES | typeof ONE_OF | typeof NOT_ONE_OF | typeof IS_NULL | typeof EQUALS | UnparsedObject;
export declare const LT = "LT";
export declare const LTE = "LTE";
export declare const GT = "GT";
export declare const GTE = "GTE";
export declare const MATCHES = "MATCHES";
export declare const NOT_MATCHES = "NOT_MATCHES";
export declare const ONE_OF = "ONE_OF";
export declare const NOT_ONE_OF = "NOT_ONE_OF";
export declare const IS_NULL = "IS_NULL";
export declare const EQUALS = "EQUALS";