File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
packages/datadog-api-client-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 @@ -10,6 +10,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
10
10
* Result of the convert rule request containing Terraform content.
11
11
*/
12
12
export class SecurityMonitoringRuleConvertResponse {
13
+ /**
14
+ * the ID of the rule.
15
+ */
16
+ "ruleId" ?: string ;
13
17
/**
14
18
* Terraform string as a result of converting the rule from JSON.
15
19
*/
@@ -31,6 +35,10 @@ export class SecurityMonitoringRuleConvertResponse {
31
35
* @ignore
32
36
*/
33
37
static readonly attributeTypeMap : AttributeTypeMap = {
38
+ ruleId : {
39
+ baseName : "ruleId" ,
40
+ type : "string" ,
41
+ } ,
34
42
terraformContent : {
35
43
baseName : "terraformContent" ,
36
44
type : "string" ,
You can’t perform that action at this time.
0 commit comments