UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

17 lines (16 loc) 806 B
/** * 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 after which a learned value is forgotten. */ export declare type SecurityMonitoringRuleNewValueOptionsForgetAfter = typeof ONE_DAY | typeof TWO_DAYS | typeof ONE_WEEK | typeof TWO_WEEKS | typeof THREE_WEEKS | typeof FOUR_WEEKS | UnparsedObject; export declare const ONE_DAY = 1; export declare const TWO_DAYS = 2; export declare const ONE_WEEK = 7; export declare const TWO_WEEKS = 14; export declare const THREE_WEEKS = 21; export declare const FOUR_WEEKS = 28;