Skip to content

Commit df907e6

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Security Monitoring - Update Signal Archive Reasons v2 (#2945)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 0e66678 commit df907e6

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43852,13 +43852,17 @@ components:
4385243852
- false_positive
4385343853
- testing_or_maintenance
4385443854
- investigated_case_opened
43855+
- true_positive_benign
43856+
- true_positive_malicious
4385543857
- other
4385643858
type: string
4385743859
x-enum-varnames:
4385843860
- NONE
4385943861
- FALSE_POSITIVE
4386043862
- TESTING_OR_MAINTENANCE
4386143863
- INVESTIGATED_CASE_OPENED
43864+
- TRUE_POSITIVE_BENIGN
43865+
- TRUE_POSITIVE_MALICIOUS
4386243866
- OTHER
4386343867
SecurityMonitoringSignalAssigneeUpdateAttributes:
4386443868
description: Attributes describing the new assignee of a security signal.

services/security_monitoring/src/v2/models/SecurityMonitoringSignalArchiveReason.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ export type SecurityMonitoringSignalArchiveReason =
88
| typeof FALSE_POSITIVE
99
| typeof TESTING_OR_MAINTENANCE
1010
| typeof INVESTIGATED_CASE_OPENED
11+
| typeof TRUE_POSITIVE_BENIGN
12+
| typeof TRUE_POSITIVE_MALICIOUS
1113
| typeof OTHER
1214
| UnparsedObject;
1315
export const NONE = "none";
1416
export const FALSE_POSITIVE = "false_positive";
1517
export const TESTING_OR_MAINTENANCE = "testing_or_maintenance";
1618
export const INVESTIGATED_CASE_OPENED = "investigated_case_opened";
19+
export const TRUE_POSITIVE_BENIGN = "true_positive_benign";
20+
export const TRUE_POSITIVE_MALICIOUS = "true_positive_malicious";
1721
export const OTHER = "other";

services/security_monitoring/src/v2/models/TypingInfo.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,8 @@ export const TypingInfo: ModelTypingInfo = {
369369
"false_positive",
370370
"testing_or_maintenance",
371371
"investigated_case_opened",
372+
"true_positive_benign",
373+
"true_positive_malicious",
372374
"other",
373375
],
374376
SecurityMonitoringSignalMetadataType: ["signal_metadata"],

0 commit comments

Comments
 (0)