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 @@ -8,10 +8,14 @@ export type SecurityMonitoringSignalArchiveReason =
| typeof FALSE_POSITIVE
| typeof TESTING_OR_MAINTENANCE
| typeof INVESTIGATED_CASE_OPENED
| typeof TRUE_POSITIVE_BENIGN
| typeof TRUE_POSITIVE_MALICIOUS
| typeof OTHER
| UnparsedObject;
export const NONE = "none";
export const FALSE_POSITIVE = "false_positive";
export const TESTING_OR_MAINTENANCE = "testing_or_maintenance";
export const INVESTIGATED_CASE_OPENED = "investigated_case_opened";
export const TRUE_POSITIVE_BENIGN = "true_positive_benign";
export const TRUE_POSITIVE_MALICIOUS = "true_positive_malicious";
export const OTHER = "other";
2 changes: 2 additions & 0 deletions services/security_monitoring/src/v2/models/TypingInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,8 @@ export const TypingInfo: ModelTypingInfo = {
"false_positive",
"testing_or_maintenance",
"investigated_case_opened",
"true_positive_benign",
"true_positive_malicious",
"other",
],
SecurityMonitoringSignalMetadataType: ["signal_metadata"],
Expand Down