@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
35 lines • 851 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AutomationRuleScope = void 0;
/**
* Defines the scope of findings to which the automation rule applies.
*/
class AutomationRuleScope {
constructor() { }
/**
* @ignore
*/
static getAttributeTypeMap() {
return AutomationRuleScope.attributeTypeMap;
}
}
exports.AutomationRuleScope = AutomationRuleScope;
/**
* @ignore
*/
AutomationRuleScope.attributeTypeMap = {
findingTypes: {
baseName: "finding_types",
type: "Array<SecurityFindingType>",
required: true,
},
query: {
baseName: "query",
type: "string",
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
},
};
//# sourceMappingURL=AutomationRuleScope.js.map