@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
15 lines (14 loc) • 805 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 duration in days during which values are learned, and after which signals will be generated for values that
* weren't learned. If set to 0, a signal will be generated for all new values after the first value is learned.
*/
export declare type SecurityMonitoringRuleNewValueOptionsLearningDuration = typeof ZERO_DAYS | typeof ONE_DAY | typeof SEVEN_DAYS | UnparsedObject;
export declare const ZERO_DAYS = 0;
export declare const ONE_DAY = 1;
export declare const SEVEN_DAYS = 7;