Skip to content

Commit 3c56ae3

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add suppression sort by create date (#3313)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent fc4dd56 commit 3c56ae3

3 files changed

Lines changed: 5 additions & 0 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

packages/datadog-api-client-v2/models/ObjectSerializer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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"],

packages/datadog-api-client-v2/models/SecurityMonitoringSuppressionSort.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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;
2526
export const NAME = "name";
@@ -31,4 +32,5 @@ export const NAME_DESCENDING = "-name";
3132
export const START_DATE_DESCENDING = "-start_date";
3233
export const EXPIRATION_DATE_DESCENDING = "-expiration_date";
3334
export const UPDATE_DATE_DESCENDING = "-update_date";
35+
export const CREATION_DATE_DESCENDING = "-creation_date";
3436
export const ENABLED_DESCENDING = "-enabled";

0 commit comments

Comments
 (0)