Skip to content

Commit 78d5103

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 7939b49a of spec repo
1 parent c8d3c8e commit 78d5103

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
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-09-18 14:45:15.242991",
8-
"spec_repo_commit": "bae57ce1"
7+
"regenerated": "2024-09-19 16:50:48.777587",
8+
"spec_repo_commit": "7939b49a"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-09-18 14:45:15.259945",
13-
"spec_repo_commit": "bae57ce1"
12+
"regenerated": "2024-09-19 16:50:48.791011",
13+
"spec_repo_commit": "7939b49a"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13107,13 +13107,17 @@ components:
1310713107
- false_positive
1310813108
- testing_or_maintenance
1310913109
- investigated_case_opened
13110+
- true_positive_benign
13111+
- true_positive_malicious
1311013112
- other
1311113113
type: string
1311213114
x-enum-varnames:
1311313115
- NONE
1311413116
- FALSE_POSITIVE
1311513117
- TESTING_OR_MAINTENANCE
1311613118
- INVESTIGATED_CASE_OPENED
13119+
- TRUE_POSITIVE_BENIGN
13120+
- TRUE_POSITIVE_MALICIOUS
1311713121
- OTHER
1311813122
SignalAssigneeUpdateRequest:
1311913123
description: Attributes describing an assignee update operation over a security

src/datadog_api_client/v1/model/signal_archive_reason.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class SignalArchiveReason(ModelSimple):
1616
"""
1717
Reason why a signal has been archived.
1818
19-
:param value: Must be one of ["none", "false_positive", "testing_or_maintenance", "investigated_case_opened", "other"].
19+
:param value: Must be one of ["none", "false_positive", "testing_or_maintenance", "investigated_case_opened", "true_positive_benign", "true_positive_malicious", "other"].
2020
:type value: str
2121
"""
2222

@@ -25,12 +25,16 @@ class SignalArchiveReason(ModelSimple):
2525
"false_positive",
2626
"testing_or_maintenance",
2727
"investigated_case_opened",
28+
"true_positive_benign",
29+
"true_positive_malicious",
2830
"other",
2931
}
3032
NONE: ClassVar["SignalArchiveReason"]
3133
FALSE_POSITIVE: ClassVar["SignalArchiveReason"]
3234
TESTING_OR_MAINTENANCE: ClassVar["SignalArchiveReason"]
3335
INVESTIGATED_CASE_OPENED: ClassVar["SignalArchiveReason"]
36+
TRUE_POSITIVE_BENIGN: ClassVar["SignalArchiveReason"]
37+
TRUE_POSITIVE_MALICIOUS: ClassVar["SignalArchiveReason"]
3438
OTHER: ClassVar["SignalArchiveReason"]
3539

3640
@cached_property
@@ -44,4 +48,6 @@ def openapi_types(_):
4448
SignalArchiveReason.FALSE_POSITIVE = SignalArchiveReason("false_positive")
4549
SignalArchiveReason.TESTING_OR_MAINTENANCE = SignalArchiveReason("testing_or_maintenance")
4650
SignalArchiveReason.INVESTIGATED_CASE_OPENED = SignalArchiveReason("investigated_case_opened")
51+
SignalArchiveReason.TRUE_POSITIVE_BENIGN = SignalArchiveReason("true_positive_benign")
52+
SignalArchiveReason.TRUE_POSITIVE_MALICIOUS = SignalArchiveReason("true_positive_malicious")
4753
SignalArchiveReason.OTHER = SignalArchiveReason("other")

0 commit comments

Comments
 (0)