File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
services/security_monitoring/src/v2/models Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change @@ -8,10 +8,14 @@ export type SecurityMonitoringSignalArchiveReason =
88 | typeof FALSE_POSITIVE
99 | typeof TESTING_OR_MAINTENANCE
1010 | typeof INVESTIGATED_CASE_OPENED
11+ | typeof TRUE_POSITIVE_BENIGN
12+ | typeof TRUE_POSITIVE_MALICIOUS
1113 | typeof OTHER
1214 | UnparsedObject ;
1315export const NONE = "none" ;
1416export const FALSE_POSITIVE = "false_positive" ;
1517export const TESTING_OR_MAINTENANCE = "testing_or_maintenance" ;
1618export const INVESTIGATED_CASE_OPENED = "investigated_case_opened" ;
19+ export const TRUE_POSITIVE_BENIGN = "true_positive_benign" ;
20+ export const TRUE_POSITIVE_MALICIOUS = "true_positive_malicious" ;
1721export const OTHER = "other" ;
Original file line number Diff line number Diff line change @@ -369,6 +369,8 @@ export const TypingInfo: ModelTypingInfo = {
369369 "false_positive" ,
370370 "testing_or_maintenance" ,
371371 "investigated_case_opened" ,
372+ "true_positive_benign" ,
373+ "true_positive_malicious" ,
372374 "other" ,
373375 ] ,
374376 SecurityMonitoringSignalMetadataType : [ "signal_metadata" ] ,
You can’t perform that action at this time.
0 commit comments