File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
services/security_monitoring/src/v2/models Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -39011,6 +39011,9 @@ components:
39011
39011
SecurityMonitoringRuleConvertResponse:
39012
39012
description: Result of the convert rule request containing Terraform content.
39013
39013
properties:
39014
+ ruleId:
39015
+ description: the ID of the rule.
39016
+ type: string
39014
39017
terraformContent:
39015
39018
description: Terraform string as a result of converting the rule from JSON.
39016
39019
type: string
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ import { AttributeTypeMap } from "@datadog/datadog-api-client";
4
4
* Result of the convert rule request containing Terraform content.
5
5
*/
6
6
export class SecurityMonitoringRuleConvertResponse {
7
+ /**
8
+ * the ID of the rule.
9
+ */
10
+ "ruleId" ?: string ;
7
11
/**
8
12
* Terraform string as a result of converting the rule from JSON.
9
13
*/
@@ -23,6 +27,10 @@ export class SecurityMonitoringRuleConvertResponse {
23
27
* @ignore
24
28
*/
25
29
static readonly attributeTypeMap : AttributeTypeMap = {
30
+ ruleId : {
31
+ baseName : "ruleId" ,
32
+ type : "string" ,
33
+ } ,
26
34
terraformContent : {
27
35
baseName : "terraformContent" ,
28
36
type : "string" ,
You can’t perform that action at this time.
0 commit comments