File tree Expand file tree Collapse file tree 3 files changed +44
-0
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Original file line number Diff line number Diff line change @@ -9421,9 +9421,18 @@ components:
9421
9421
append:
9422
9422
description: Whether the value should be appended to the field
9423
9423
type: boolean
9424
+ default_value:
9425
+ description: The default value of the set action
9426
+ type: string
9427
+ expression:
9428
+ description: The expression of the set action
9429
+ type: string
9424
9430
field:
9425
9431
description: The field of the set action
9426
9432
type: string
9433
+ inherited:
9434
+ description: Whether the value should be inherited
9435
+ type: boolean
9427
9436
name:
9428
9437
description: The name of the set action
9429
9438
type: string
@@ -9543,6 +9552,9 @@ components:
9543
9552
properties:
9544
9553
actions:
9545
9554
$ref: '#/components/schemas/CloudWorkloadSecurityAgentRuleActions'
9555
+ agent_version:
9556
+ description: Constrain the rule to specific versions of the Datadog Agent
9557
+ type: string
9546
9558
blocking:
9547
9559
description: The blocking policies that the rule belongs to
9548
9560
items:
Original file line number Diff line number Diff line change @@ -14,10 +14,22 @@ export class CloudWorkloadSecurityAgentRuleActionSet {
14
14
* Whether the value should be appended to the field
15
15
*/
16
16
"append" ?: boolean ;
17
+ /**
18
+ * The default value of the set action
19
+ */
20
+ "defaultValue" ?: string ;
21
+ /**
22
+ * The expression of the set action
23
+ */
24
+ "expression" ?: string ;
17
25
/**
18
26
* The field of the set action
19
27
*/
20
28
"field" ?: string ;
29
+ /**
30
+ * Whether the value should be inherited
31
+ */
32
+ "inherited" ?: boolean ;
21
33
/**
22
34
* The name of the set action
23
35
*/
@@ -59,10 +71,22 @@ export class CloudWorkloadSecurityAgentRuleActionSet {
59
71
baseName : "append" ,
60
72
type : "boolean" ,
61
73
} ,
74
+ defaultValue : {
75
+ baseName : "default_value" ,
76
+ type : "string" ,
77
+ } ,
78
+ expression : {
79
+ baseName : "expression" ,
80
+ type : "string" ,
81
+ } ,
62
82
field : {
63
83
baseName : "field" ,
64
84
type : "string" ,
65
85
} ,
86
+ inherited : {
87
+ baseName : "inherited" ,
88
+ type : "boolean" ,
89
+ } ,
66
90
name : {
67
91
baseName : "name" ,
68
92
type : "string" ,
Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ export class CloudWorkloadSecurityAgentRuleCreateAttributes {
15
15
* The array of actions the rule can perform if triggered
16
16
*/
17
17
"actions" ?: Array < CloudWorkloadSecurityAgentRuleAction > ;
18
+ /**
19
+ * Constrain the rule to specific versions of the Datadog Agent
20
+ */
21
+ "agentVersion" ?: string ;
18
22
/**
19
23
* The blocking policies that the rule belongs to
20
24
*/
@@ -76,6 +80,10 @@ export class CloudWorkloadSecurityAgentRuleCreateAttributes {
76
80
baseName : "actions" ,
77
81
type : "Array<CloudWorkloadSecurityAgentRuleAction>" ,
78
82
} ,
83
+ agentVersion : {
84
+ baseName : "agent_version" ,
85
+ type : "string" ,
86
+ } ,
79
87
blocking : {
80
88
baseName : "blocking" ,
81
89
type : "Array<string>" ,
You can’t perform that action at this time.
0 commit comments