Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43960,13 +43960,17 @@ components:
- false_positive
- testing_or_maintenance
- investigated_case_opened
- true_positive_benign
- true_positive_malicious
- other
type: string
x-enum-varnames:
- NONE
- FALSE_POSITIVE
- TESTING_OR_MAINTENANCE
- INVESTIGATED_CASE_OPENED
- TRUE_POSITIVE_BENIGN
- TRUE_POSITIVE_MALICIOUS
- OTHER
SecurityMonitoringSignalAssigneeUpdateAttributes:
description: Attributes describing the new assignee of a security signal.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ class SecurityMonitoringSignalArchiveReason
FALSE_POSITIVE = "false_positive".freeze
TESTING_OR_MAINTENANCE = "testing_or_maintenance".freeze
INVESTIGATED_CASE_OPENED = "investigated_case_opened".freeze
TRUE_POSITIVE_BENIGN = "true_positive_benign".freeze
TRUE_POSITIVE_MALICIOUS = "true_positive_malicious".freeze
OTHER = "other".freeze
end
end
Loading