File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
services/security_monitoring/src/v2/models Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -55909,6 +55909,7 @@ components:
5590955909 - -start_date
5591055910 - -expiration_date
5591155911 - -update_date
55912+ - -creation_date
5591255913 - -enabled
5591355914 type: string
5591455915 x-enum-varnames:
@@ -55921,6 +55922,7 @@ components:
5592155922 - START_DATE_DESCENDING
5592255923 - EXPIRATION_DATE_DESCENDING
5592355924 - UPDATE_DATE_DESCENDING
55925+ - CREATION_DATE_DESCENDING
5592455926 - ENABLED_DESCENDING
5592555927 SecurityMonitoringSuppressionType:
5592655928 default: suppressions
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ export type SecurityMonitoringSuppressionSort =
1313 | typeof START_DATE_DESCENDING
1414 | typeof EXPIRATION_DATE_DESCENDING
1515 | typeof UPDATE_DATE_DESCENDING
16+ | typeof CREATION_DATE_DESCENDING
1617 | typeof ENABLED_DESCENDING
1718 | UnparsedObject ;
1819export const NAME = "name" ;
@@ -24,4 +25,5 @@ export const NAME_DESCENDING = "-name";
2425export const START_DATE_DESCENDING = "-start_date" ;
2526export const EXPIRATION_DATE_DESCENDING = "-expiration_date" ;
2627export const UPDATE_DATE_DESCENDING = "-update_date" ;
28+ export const CREATION_DATE_DESCENDING = "-creation_date" ;
2729export const ENABLED_DESCENDING = "-enabled" ;
Original file line number Diff line number Diff line change @@ -556,6 +556,7 @@ export const TypingInfo: ModelTypingInfo = {
556556 "-start_date" ,
557557 "-expiration_date" ,
558558 "-update_date" ,
559+ "-creation_date" ,
559560 "-enabled" ,
560561 ] ,
561562 SecurityMonitoringSuppressionType : [ "suppressions" ] ,
You can’t perform that action at this time.
0 commit comments