File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
packages/datadog-api-client-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 @@ -3792,6 +3792,8 @@ const enumsMap: { [key: string]: any[] } = {
37923792 "false_positive" ,
37933793 "testing_or_maintenance" ,
37943794 "investigated_case_opened" ,
3795+ "true_positive_benign" ,
3796+ "true_positive_malicious" ,
37953797 "other" ,
37963798 ] ,
37973799 SecurityMonitoringSignalMetadataType : [ "signal_metadata" ] ,
Original file line number Diff line number Diff line change @@ -15,10 +15,14 @@ export type SecurityMonitoringSignalArchiveReason =
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 ;
2022export const NONE = "none" ;
2123export const FALSE_POSITIVE = "false_positive" ;
2224export const TESTING_OR_MAINTENANCE = "testing_or_maintenance" ;
2325export 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" ;
2428export const OTHER = "other" ;
You can’t perform that action at this time.
0 commit comments