File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 3 files changed +16
-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": "2024-08-21 16:52:41.809373 ",
8
- "spec_repo_commit": "ffed3856 "
7
+ "regenerated": "2024-08-21 17:41:02.666521 ",
8
+ "spec_repo_commit": "e8ef24a7 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-08-21 16:52:41.835691 ",
13
- "spec_repo_commit": "ffed3856 "
12
+ "regenerated": "2024-08-21 17:41:02.685109 ",
13
+ "spec_repo_commit": "e8ef24a7 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -19603,6 +19603,10 @@ components:
19603
19603
description: A description for the suppression rule.
19604
19604
example: This rule suppresses low-severity signals in staging environments.
19605
19605
type: string
19606
+ editable:
19607
+ description: Whether the suppression rule is editable.
19608
+ example: true
19609
+ type: boolean
19606
19610
enabled:
19607
19611
description: Whether the suppression rule is enabled.
19608
19612
example: true
Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ export class SecurityMonitoringSuppressionAttributes {
27
27
* A description for the suppression rule.
28
28
*/
29
29
"description" ?: string ;
30
+ /**
31
+ * Whether the suppression rule is editable.
32
+ */
33
+ "editable" ?: boolean ;
30
34
/**
31
35
* Whether the suppression rule is enabled.
32
36
*/
@@ -93,6 +97,10 @@ export class SecurityMonitoringSuppressionAttributes {
93
97
baseName : "description" ,
94
98
type : "string" ,
95
99
} ,
100
+ editable : {
101
+ baseName : "editable" ,
102
+ type : "boolean" ,
103
+ } ,
96
104
enabled : {
97
105
baseName : "enabled" ,
98
106
type : "boolean" ,
You can’t perform that action at this time.
0 commit comments