@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
24 lines (23 loc) • 1.33 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";
/**
* A time window is specified to match when at least one of the cases matches true. This is a sliding window
* and evaluates in real time. For third party detection method, this field is not used.
*/
export declare type SecurityMonitoringRuleEvaluationWindow = typeof ZERO_MINUTES | typeof ONE_MINUTE | typeof FIVE_MINUTES | typeof TEN_MINUTES | typeof FIFTEEN_MINUTES | typeof THIRTY_MINUTES | typeof ONE_HOUR | typeof TWO_HOURS | typeof THREE_HOURS | typeof SIX_HOURS | typeof TWELVE_HOURS | typeof ONE_DAY | UnparsedObject;
export declare const ZERO_MINUTES = 0;
export declare const ONE_MINUTE = 60;
export declare const FIVE_MINUTES = 300;
export declare const TEN_MINUTES = 600;
export declare const FIFTEEN_MINUTES = 900;
export declare const THIRTY_MINUTES = 1800;
export declare const ONE_HOUR = 3600;
export declare const TWO_HOURS = 7200;
export declare const THREE_HOURS = 10800;
export declare const SIX_HOURS = 21600;
export declare const TWELVE_HOURS = 43200;
export declare const ONE_DAY = 86400;