Skip to content

Commit 79e5ca9

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

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.

packages/datadog-api-client-v2/models/ObjectSerializer.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3792,6 +3792,8 @@ const enumsMap: { [key: string]: any[] } = {
37923792
"false_positive",
37933793
"testing_or_maintenance",
37943794
"investigated_case_opened",
3795+
"true_positive_benign",
3796+
"true_positive_malicious",
37953797
"other",
37963798
],
37973799
SecurityMonitoringSignalMetadataType: ["signal_metadata"],

packages/datadog-api-client-v2/models/SecurityMonitoringSignalArchiveReason.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@ export type SecurityMonitoringSignalArchiveReason =
1515
| typeof FALSE_POSITIVE
1616
| typeof TESTING_OR_MAINTENANCE
1717
| typeof INVESTIGATED_CASE_OPENED
18+
| typeof TRUE_POSITIVE_BENIGN
19+
| typeof TRUE_POSITIVE_MALICIOUS
1820
| typeof OTHER
1921
| UnparsedObject;
2022
export const NONE = "none";
2123
export const FALSE_POSITIVE = "false_positive";
2224
export const TESTING_OR_MAINTENANCE = "testing_or_maintenance";
2325
export const INVESTIGATED_CASE_OPENED = "investigated_case_opened";
26+
export const TRUE_POSITIVE_BENIGN = "true_positive_benign";
27+
export const TRUE_POSITIVE_MALICIOUS = "true_positive_malicious";
2428
export const OTHER = "other";

0 commit comments

Comments
 (0)