UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

26 lines (25 loc) 1.5 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"; /** * Assertion operator to apply. */ export declare type SyntheticsAssertionOperator = typeof CONTAINS | typeof DOES_NOT_CONTAIN | typeof IS | typeof IS_NOT | typeof LESS_THAN | typeof LESS_THAN_OR_EQUAL | typeof MORE_THAN | typeof MORE_THAN_OR_EQUAL | typeof MATCHES | typeof DOES_NOT_MATCH | typeof VALIDATES | typeof IS_IN_MORE_DAYS_THAN | typeof IS_IN_LESS_DAYS_THAN | typeof DOES_NOT_EXIST | typeof IS_UNDEFINED | UnparsedObject; export declare const CONTAINS = "contains"; export declare const DOES_NOT_CONTAIN = "doesNotContain"; export declare const IS = "is"; export declare const IS_NOT = "isNot"; export declare const LESS_THAN = "lessThan"; export declare const LESS_THAN_OR_EQUAL = "lessThanOrEqual"; export declare const MORE_THAN = "moreThan"; export declare const MORE_THAN_OR_EQUAL = "moreThanOrEqual"; export declare const MATCHES = "matches"; export declare const DOES_NOT_MATCH = "doesNotMatch"; export declare const VALIDATES = "validates"; export declare const IS_IN_MORE_DAYS_THAN = "isInMoreThan"; export declare const IS_IN_LESS_DAYS_THAN = "isInLessThan"; export declare const DOES_NOT_EXIST = "doesNotExist"; export declare const IS_UNDEFINED = "isUndefined";