UNPKG

@datadog/datadog-api-client

Version:
36 lines 921 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AutomationRuleAction = void 0; /** * Defines what happens when the rule triggers. Combines an action type with action-specific configuration data. */ class AutomationRuleAction { constructor() { } /** * @ignore */ static getAttributeTypeMap() { return AutomationRuleAction.attributeTypeMap; } } exports.AutomationRuleAction = AutomationRuleAction; /** * @ignore */ AutomationRuleAction.attributeTypeMap = { data: { baseName: "data", type: "AutomationRuleActionData", required: true, }, type: { baseName: "type", type: "AutomationRuleActionType", required: true, }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }", }, }; //# sourceMappingURL=AutomationRuleAction.js.map