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:
94219421 append:
94229422 description: Whether the value should be appended to the field
94239423 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
94249430 field:
94259431 description: The field of the set action
94269432 type: string
9433+ inherited:
9434+ description: Whether the value should be inherited
9435+ type: boolean
94279436 name:
94289437 description: The name of the set action
94299438 type: string
@@ -9543,6 +9552,9 @@ components:
95439552 properties:
95449553 actions:
95459554 $ref: '#/components/schemas/CloudWorkloadSecurityAgentRuleActions'
9555+ agent_version:
9556+ description: Constrain the rule to specific versions of the Datadog Agent
9557+ type: string
95469558 blocking:
95479559 description: The blocking policies that the rule belongs to
95489560 items:
Original file line number Diff line number Diff line change @@ -8,10 +8,22 @@ export class CloudWorkloadSecurityAgentRuleActionSet {
88 * Whether the value should be appended to the field
99 */
1010 "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 ;
1119 /**
1220 * The field of the set action
1321 */
1422 "field" ?: string ;
23+ /**
24+ * Whether the value should be inherited
25+ */
26+ "inherited" ?: boolean ;
1527 /**
1628 * The name of the set action
1729 */
@@ -51,10 +63,22 @@ export class CloudWorkloadSecurityAgentRuleActionSet {
5163 baseName : "append" ,
5264 type : "boolean" ,
5365 } ,
66+ defaultValue : {
67+ baseName : "default_value" ,
68+ type : "string" ,
69+ } ,
70+ expression : {
71+ baseName : "expression" ,
72+ type : "string" ,
73+ } ,
5474 field : {
5575 baseName : "field" ,
5676 type : "string" ,
5777 } ,
78+ inherited : {
79+ baseName : "inherited" ,
80+ type : "boolean" ,
81+ } ,
5882 name : {
5983 baseName : "name" ,
6084 type : "string" ,
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ export class CloudWorkloadSecurityAgentRuleCreateAttributes {
1010 * The array of actions the rule can perform if triggered
1111 */
1212 "actions" ?: Array < CloudWorkloadSecurityAgentRuleAction > ;
13+ /**
14+ * Constrain the rule to specific versions of the Datadog Agent
15+ */
16+ "agentVersion" ?: string ;
1317 /**
1418 * The blocking policies that the rule belongs to
1519 */
@@ -69,6 +73,10 @@ export class CloudWorkloadSecurityAgentRuleCreateAttributes {
6973 baseName : "actions" ,
7074 type : "Array<CloudWorkloadSecurityAgentRuleAction>" ,
7175 } ,
76+ agentVersion : {
77+ baseName : "agent_version" ,
78+ type : "string" ,
79+ } ,
7280 blocking : {
7381 baseName : "blocking" ,
7482 type : "Array<string>" ,
You can’t perform that action at this time.
0 commit comments