UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

16 lines (15 loc) 827 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"; /** * Reason a signal is archived. */ export declare type SecurityMonitoringSignalArchiveReason = typeof NONE | typeof FALSE_POSITIVE | typeof TESTING_OR_MAINTENANCE | typeof INVESTIGATED_CASE_OPENED | typeof OTHER | UnparsedObject; export declare const NONE = "none"; export declare const FALSE_POSITIVE = "false_positive"; export declare const TESTING_OR_MAINTENANCE = "testing_or_maintenance"; export declare const INVESTIGATED_CASE_OPENED = "investigated_case_opened"; export declare const OTHER = "other";