Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51424,23 +51424,27 @@ components:
- start_date
- expiration_date
- update_date
- creation_date
- enabled
- -name
- -start_date
- -expiration_date
- -update_date
- -creation_date
- -enabled
type: string
x-enum-varnames:
- NAME
- START_DATE
- EXPIRATION_DATE
- UPDATE_DATE
- CREATION_DATE
- ENABLED
- NAME_DESCENDING
- START_DATE_DESCENDING
- EXPIRATION_DATE_DESCENDING
- UPDATE_DATE_DESCENDING
- CREATION_DATE_DESCENDING
- ENABLED_DESCENDING
SecurityMonitoringSuppressionType:
default: suppressions
Expand Down
2 changes: 2 additions & 0 deletions packages/datadog-api-client-v2/models/ObjectSerializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4297,11 +4297,13 @@ const enumsMap: { [key: string]: any[] } = {
"start_date",
"expiration_date",
"update_date",
"creation_date",
"enabled",
"-name",
"-start_date",
"-expiration_date",
"-update_date",
"-creation_date",
"-enabled",
],
SecurityMonitoringSuppressionType: ["suppressions"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,24 @@ export type SecurityMonitoringSuppressionSort =
| typeof START_DATE
| typeof EXPIRATION_DATE
| typeof UPDATE_DATE
| typeof CREATION_DATE
| typeof ENABLED
| typeof NAME_DESCENDING
| typeof START_DATE_DESCENDING
| typeof EXPIRATION_DATE_DESCENDING
| typeof UPDATE_DATE_DESCENDING
| typeof CREATION_DATE_DESCENDING
| typeof ENABLED_DESCENDING
| UnparsedObject;
export const NAME = "name";
export const START_DATE = "start_date";
export const EXPIRATION_DATE = "expiration_date";
export const UPDATE_DATE = "update_date";
export const CREATION_DATE = "creation_date";
export const ENABLED = "enabled";
export const NAME_DESCENDING = "-name";
export const START_DATE_DESCENDING = "-start_date";
export const EXPIRATION_DATE_DESCENDING = "-expiration_date";
export const UPDATE_DATE_DESCENDING = "-update_date";
export const CREATION_DATE_DESCENDING = "-creation_date";
export const ENABLED_DESCENDING = "-enabled";