File tree 3 files changed +17
-4
lines changed
packages/datadog-api-client-v2/models
3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2023-11-17 18:13:28.852661 ",
8
- "spec_repo_commit": "46090fc1 "
7
+ "regenerated": "2023-11-17 18:38:51.853907 ",
8
+ "spec_repo_commit": "ea610108 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2023-11-17 18:13:28.867274 ",
13
- "spec_repo_commit": "46090fc1 "
12
+ "regenerated": "2023-11-17 18:38:51.868596 ",
13
+ "spec_repo_commit": "ea610108 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -3042,6 +3042,11 @@ components:
3042
3042
description: The SECL expression of the Agent rule.
3043
3043
example: exec.file.name == \"sh\"
3044
3044
type: string
3045
+ filters:
3046
+ description: The platforms the Agent rule is supported on.
3047
+ items:
3048
+ type: string
3049
+ type: array
3045
3050
name:
3046
3051
description: The name of the Agent rule.
3047
3052
example: my_agent_rule
Original file line number Diff line number Diff line change @@ -48,6 +48,10 @@ export class CloudWorkloadSecurityAgentRuleAttributes {
48
48
* The SECL expression of the Agent rule.
49
49
*/
50
50
"expression" ?: string ;
51
+ /**
52
+ * The platforms the Agent rule is supported on.
53
+ */
54
+ "filters" ?: Array < string > ;
51
55
/**
52
56
* The name of the Agent rule.
53
57
*/
@@ -119,6 +123,10 @@ export class CloudWorkloadSecurityAgentRuleAttributes {
119
123
baseName : "expression" ,
120
124
type : "string" ,
121
125
} ,
126
+ filters : {
127
+ baseName : "filters" ,
128
+ type : "Array<string>" ,
129
+ } ,
122
130
name : {
123
131
baseName : "name" ,
124
132
type : "string" ,
You can’t perform that action at this time.
0 commit comments