@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
22 lines (21 loc) • 1.23 kB
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";
/**
* Operator to use for the WAF Condition.
*/
export declare type ApplicationSecurityWafCustomRuleConditionOperator = typeof MATCH_REGEX | typeof NOT_MATCH_REGEX | typeof PHRASE_MATCH | typeof NOT_PHRASE_MATCH | typeof IS_XSS | typeof IS_SQLI | typeof EXACT_MATCH | typeof NOT_EXACT_MATCH | typeof IP_MATCH | typeof NOT_IP_MATCH | typeof CAPTURE_DATA | UnparsedObject;
export declare const MATCH_REGEX = "match_regex";
export declare const NOT_MATCH_REGEX = "!match_regex";
export declare const PHRASE_MATCH = "phrase_match";
export declare const NOT_PHRASE_MATCH = "!phrase_match";
export declare const IS_XSS = "is_xss";
export declare const IS_SQLI = "is_sqli";
export declare const EXACT_MATCH = "exact_match";
export declare const NOT_EXACT_MATCH = "!exact_match";
export declare const IP_MATCH = "ip_match";
export declare const NOT_IP_MATCH = "!ip_match";
export declare const CAPTURE_DATA = "capture_data";