Skip to content

Commit 4b90d45

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Adds accepted reasons for archiving signal (#1817)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 8e496e2 commit 4b90d45

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2024-11-06 20:54:40.826367",
8-
"spec_repo_commit": "0f558cbc"
7+
"regenerated": "2024-11-07 20:43:57.068797",
8+
"spec_repo_commit": "efa118f1"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-11-06 20:54:40.845189",
13-
"spec_repo_commit": "0f558cbc"
12+
"regenerated": "2024-11-07 20:43:57.087234",
13+
"spec_repo_commit": "efa118f1"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -13093,13 +13093,17 @@ components:
1309313093
- false_positive
1309413094
- testing_or_maintenance
1309513095
- investigated_case_opened
13096+
- true_positive_benign
13097+
- true_positive_malicious
1309613098
- other
1309713099
type: string
1309813100
x-enum-varnames:
1309913101
- NONE
1310013102
- FALSE_POSITIVE
1310113103
- TESTING_OR_MAINTENANCE
1310213104
- INVESTIGATED_CASE_OPENED
13105+
- TRUE_POSITIVE_BENIGN
13106+
- TRUE_POSITIVE_MALICIOUS
1310313107
- OTHER
1310413108
SignalAssigneeUpdateRequest:
1310513109
description: Attributes describing an assignee update operation over a security

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

+2
Original file line numberDiff line numberDiff line change
@@ -1185,6 +1185,8 @@ const enumsMap: { [key: string]: any[] } = {
11851185
"false_positive",
11861186
"testing_or_maintenance",
11871187
"investigated_case_opened",
1188+
"true_positive_benign",
1189+
"true_positive_malicious",
11881190
"other",
11891191
],
11901192
SignalTriageState: ["open", "archived", "under_review"],

packages/datadog-api-client-v1/models/SignalArchiveReason.ts

+4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@ export type SignalArchiveReason =
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)