UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

14 lines (13 loc) 817 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 type of security issues on which the rule applies. Notification rules based on security signals need to use the trigger source "security_signals", * while notification rules based on security vulnerabilities need to use the trigger source "security_findings". */ export declare type TriggerSource = typeof SECURITY_FINDINGS | typeof SECURITY_SIGNALS | UnparsedObject; export declare const SECURITY_FINDINGS = "security_findings"; export declare const SECURITY_SIGNALS = "security_signals";