File tree Expand file tree Collapse file tree
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 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 @@ -4784,6 +4784,7 @@ const enumsMap: { [key: string]: any[] } = {
47844784 "-start_date",
47854785 "-expiration_date",
47864786 "-update_date",
4787+ "-creation_date",
47874788 "-enabled",
47884789 ],
47894790 SecurityMonitoringSuppressionType: ["suppressions"],
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export type SecurityMonitoringSuppressionSort =
2020 | typeof START_DATE_DESCENDING
2121 | typeof EXPIRATION_DATE_DESCENDING
2222 | typeof UPDATE_DATE_DESCENDING
23+ | typeof CREATION_DATE_DESCENDING
2324 | typeof ENABLED_DESCENDING
2425 | UnparsedObject ;
2526export const NAME = "name" ;
@@ -31,4 +32,5 @@ export const NAME_DESCENDING = "-name";
3132export const START_DATE_DESCENDING = "-start_date" ;
3233export const EXPIRATION_DATE_DESCENDING = "-expiration_date" ;
3334export const UPDATE_DATE_DESCENDING = "-update_date" ;
35+ export const CREATION_DATE_DESCENDING = "-creation_date" ;
3436export const ENABLED_DESCENDING = "-enabled" ;
You can’t perform that action at this time.
0 commit comments