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/SecurityMonitoringRuleOptions.ts
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,12 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
17
17
* Options on rules.
18
18
*/
19
19
exportclassSecurityMonitoringRuleOptions{
20
+
/**
21
+
* If true, signals in non-production environments have a lower severity than what is defined by the rule case, which can reduce signal noise.
22
+
* The severity is decreased by one level: `CRITICAL` in production becomes `HIGH` in non-production, `HIGH` becomes `MEDIUM` and so on. `INFO` remains `INFO`.
23
+
* The decrement is applied when the environment tag of the signal starts with `staging`, `test` or `dev`.
24
+
*/
25
+
"decreaseCriticalityBasedOnEnv"?: boolean;
20
26
/**
21
27
* The detection method.
22
28
*/
@@ -58,6 +64,10 @@ export class SecurityMonitoringRuleOptions {
0 commit comments