File tree Expand file tree Collapse file tree 3 files changed +44
-0
lines changed
services/csm_threats/src/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 @@ -8,10 +8,22 @@ export class CloudWorkloadSecurityAgentRuleActionSet {
8
8
* Whether the value should be appended to the field
9
9
*/
10
10
"append" ?: boolean ;
11
+ /**
12
+ * The default value of the set action
13
+ */
14
+ "defaultValue" ?: string ;
15
+ /**
16
+ * The expression of the set action
17
+ */
18
+ "expression" ?: string ;
11
19
/**
12
20
* The field of the set action
13
21
*/
14
22
"field" ?: string ;
23
+ /**
24
+ * Whether the value should be inherited
25
+ */
26
+ "inherited" ?: boolean ;
15
27
/**
16
28
* The name of the set action
17
29
*/
@@ -51,10 +63,22 @@ export class CloudWorkloadSecurityAgentRuleActionSet {
51
63
baseName : "append" ,
52
64
type : "boolean" ,
53
65
} ,
66
+ defaultValue : {
67
+ baseName : "default_value" ,
68
+ type : "string" ,
69
+ } ,
70
+ expression : {
71
+ baseName : "expression" ,
72
+ type : "string" ,
73
+ } ,
54
74
field : {
55
75
baseName : "field" ,
56
76
type : "string" ,
57
77
} ,
78
+ inherited : {
79
+ baseName : "inherited" ,
80
+ type : "boolean" ,
81
+ } ,
58
82
name : {
59
83
baseName : "name" ,
60
84
type : "string" ,
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ export class CloudWorkloadSecurityAgentRuleCreateAttributes {
10
10
* The array of actions the rule can perform if triggered
11
11
*/
12
12
"actions" ?: Array < CloudWorkloadSecurityAgentRuleAction > ;
13
+ /**
14
+ * Constrain the rule to specific versions of the Datadog Agent
15
+ */
16
+ "agentVersion" ?: string ;
13
17
/**
14
18
* The blocking policies that the rule belongs to
15
19
*/
@@ -69,6 +73,10 @@ export class CloudWorkloadSecurityAgentRuleCreateAttributes {
69
73
baseName : "actions" ,
70
74
type : "Array<CloudWorkloadSecurityAgentRuleAction>" ,
71
75
} ,
76
+ agentVersion : {
77
+ baseName : "agent_version" ,
78
+ type : "string" ,
79
+ } ,
72
80
blocking : {
73
81
baseName : "blocking" ,
74
82
type : "Array<string>" ,
You can’t perform that action at this time.
0 commit comments