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:
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 @@ -14,10 +14,22 @@ export class CloudWorkloadSecurityAgentRuleActionSet {
1414 * Whether the value should be appended to the field
1515 */
1616 "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 ;
1725 /**
1826 * The field of the set action
1927 */
2028 "field" ?: string ;
29+ /**
30+ * Whether the value should be inherited
31+ */
32+ "inherited" ?: boolean ;
2133 /**
2234 * The name of the set action
2335 */
@@ -59,10 +71,22 @@ export class CloudWorkloadSecurityAgentRuleActionSet {
5971 baseName : "append" ,
6072 type : "boolean" ,
6173 } ,
74+ defaultValue : {
75+ baseName : "default_value" ,
76+ type : "string" ,
77+ } ,
78+ expression : {
79+ baseName : "expression" ,
80+ type : "string" ,
81+ } ,
6282 field : {
6383 baseName : "field" ,
6484 type : "string" ,
6585 } ,
86+ inherited : {
87+ baseName : "inherited" ,
88+ type : "boolean" ,
89+ } ,
6690 name : {
6791 baseName : "name" ,
6892 type : "string" ,
Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ export class CloudWorkloadSecurityAgentRuleCreateAttributes {
1515 * The array of actions the rule can perform if triggered
1616 */
1717 "actions" ?: Array < CloudWorkloadSecurityAgentRuleAction > ;
18+ /**
19+ * Constrain the rule to specific versions of the Datadog Agent
20+ */
21+ "agentVersion" ?: string ;
1822 /**
1923 * The blocking policies that the rule belongs to
2024 */
@@ -76,6 +80,10 @@ export class CloudWorkloadSecurityAgentRuleCreateAttributes {
7680 baseName : "actions" ,
7781 type : "Array<CloudWorkloadSecurityAgentRuleAction>" ,
7882 } ,
83+ agentVersion : {
84+ baseName : "agent_version" ,
85+ type : "string" ,
86+ } ,
7987 blocking : {
8088 baseName : "blocking" ,
8189 type : "Array<string>" ,
You can’t perform that action at this time.
0 commit comments