Skip to content

Commit 44e4b57

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

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

.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

services/security_monitoring/src/v2/models/SecurityMonitoringSuppressionSort.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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;
1819
export const NAME = "name";
@@ -24,4 +25,5 @@ export const NAME_DESCENDING = "-name";
2425
export const START_DATE_DESCENDING = "-start_date";
2526
export const EXPIRATION_DATE_DESCENDING = "-expiration_date";
2627
export const UPDATE_DATE_DESCENDING = "-update_date";
28+
export const CREATION_DATE_DESCENDING = "-creation_date";
2729
export const ENABLED_DESCENDING = "-enabled";

services/security_monitoring/src/v2/models/TypingInfo.ts

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

0 commit comments

Comments
 (0)