@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
17 lines (16 loc) • 1.03 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";
/**
* The case event that activates the automation rule.
*/
export declare type AutomationRuleTriggerType = typeof CASE_CREATED | typeof STATUS_TRANSITIONED | typeof ATTRIBUTE_VALUE_CHANGED | typeof EVENT_CORRELATION_SIGNAL_CORRELATED | typeof CASE_REVIEW_APPROVED | typeof COMMENT_ADDED | UnparsedObject;
export declare const CASE_CREATED = "case_created";
export declare const STATUS_TRANSITIONED = "status_transitioned";
export declare const ATTRIBUTE_VALUE_CHANGED = "attribute_value_changed";
export declare const EVENT_CORRELATION_SIGNAL_CORRELATED = "event_correlation_signal_correlated";
export declare const CASE_REVIEW_APPROVED = "case_review_approved";
export declare const COMMENT_ADDED = "comment_added";