Skip to content

Commit 431e9aa

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 1a0e3ba of spec repo
1 parent f40b6db commit 431e9aa

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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:

services/csm_threats/src/v2/models/CloudWorkloadSecurityAgentRuleActionSet.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff 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",

services/csm_threats/src/v2/models/CloudWorkloadSecurityAgentRuleCreateAttributes.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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>",

0 commit comments

Comments
 (0)