You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/datadog-api-client-v2/models/SecurityMonitoringSuppressionAttributes.ts
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,10 @@ export class SecurityMonitoringSuppressionAttributes {
55
55
* The suppression query of the suppression rule. If a signal matches this query, it is suppressed and not triggered. Same syntax as the queries to search signals in the signal explorer.
56
56
*/
57
57
"suppressionQuery"?: string;
58
+
/**
59
+
* List of tags associated with the suppression rule.
60
+
*/
61
+
"tags"?: Array<string>;
58
62
/**
59
63
* A Unix millisecond timestamp given the update date of the suppression rule.
60
64
*/
@@ -131,6 +135,10 @@ export class SecurityMonitoringSuppressionAttributes {
Copy file name to clipboardExpand all lines: packages/datadog-api-client-v2/models/SecurityMonitoringSuppressionCreateAttributes.ts
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,10 @@ export class SecurityMonitoringSuppressionCreateAttributes {
42
42
* The suppression query of the suppression rule. If a signal matches this query, it is suppressed and is not triggered. It uses the same syntax as the queries to search signals in the Signals Explorer.
43
43
*/
44
44
"suppressionQuery"?: string;
45
+
/**
46
+
* List of tags associated with the suppression rule.
47
+
*/
48
+
"tags"?: Array<string>;
45
49
46
50
/**
47
51
* A container for additional, undeclared properties.
@@ -96,6 +100,10 @@ export class SecurityMonitoringSuppressionCreateAttributes {
Copy file name to clipboardExpand all lines: packages/datadog-api-client-v2/models/SecurityMonitoringSuppressionUpdateAttributes.ts
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,10 @@ export class SecurityMonitoringSuppressionUpdateAttributes {
42
42
* The suppression query of the suppression rule. If a signal matches this query, it is suppressed and not triggered. Same syntax as the queries to search signals in the signal explorer.
43
43
*/
44
44
"suppressionQuery"?: string;
45
+
/**
46
+
* List of tags associated with the suppression rule.
47
+
*/
48
+
"tags"?: Array<string>;
45
49
/**
46
50
* The current version of the suppression. This is optional, but it can help prevent concurrent modifications.
47
51
*/
@@ -97,6 +101,10 @@ export class SecurityMonitoringSuppressionUpdateAttributes {
0 commit comments