diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 1907f9ce4060..71b4528bc8db 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -28204,6 +28204,10 @@ components: description: The date/time when the rotation starts (ISO 8601). format: date-time type: string + time_zone: + description: The time zone for this layer. + example: America/New_York + type: string type: object LayerAttributesInterval: description: Defines how often the rotation repeats, using a combination of @@ -44308,6 +44312,10 @@ components: example: '2025-01-01T00:00:00Z' format: date-time type: string + time_zone: + description: The time zone for this layer. + example: America/New_York + type: string required: - name - interval @@ -44658,6 +44666,10 @@ components: example: '2025-02-01T00:00:00Z' format: date-time type: string + time_zone: + description: The time zone for this layer. + example: America/New_York + type: string required: - effective_date - interval diff --git a/packages/datadog-api-client-v2/models/LayerAttributes.ts b/packages/datadog-api-client-v2/models/LayerAttributes.ts index f1cad551ee54..8212fdcaf8a1 100644 --- a/packages/datadog-api-client-v2/models/LayerAttributes.ts +++ b/packages/datadog-api-client-v2/models/LayerAttributes.ts @@ -36,6 +36,10 @@ export class LayerAttributes { * The date/time when the rotation starts (ISO 8601). */ "rotationStart"?: Date; + /** + * The time zone for this layer. + */ + "timeZone"?: string; /** * A container for additional, undeclared properties. @@ -80,6 +84,10 @@ export class LayerAttributes { type: "Date", format: "date-time", }, + timeZone: { + baseName: "time_zone", + type: "string", + }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }", diff --git a/packages/datadog-api-client-v2/models/ScheduleCreateRequestDataAttributesLayersItems.ts b/packages/datadog-api-client-v2/models/ScheduleCreateRequestDataAttributesLayersItems.ts index fdb8521669ca..f621d4cbc346 100644 --- a/packages/datadog-api-client-v2/models/ScheduleCreateRequestDataAttributesLayersItems.ts +++ b/packages/datadog-api-client-v2/models/ScheduleCreateRequestDataAttributesLayersItems.ts @@ -41,6 +41,10 @@ export class ScheduleCreateRequestDataAttributesLayersItems { * The date/time when the rotation for this layer starts (in ISO 8601). */ "rotationStart": Date; + /** + * The time zone for this layer. + */ + "timeZone"?: string; /** * A container for additional, undeclared properties. @@ -94,6 +98,10 @@ export class ScheduleCreateRequestDataAttributesLayersItems { required: true, format: "date-time", }, + timeZone: { + baseName: "time_zone", + type: "string", + }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }", diff --git a/packages/datadog-api-client-v2/models/ScheduleUpdateRequestDataAttributesLayersItems.ts b/packages/datadog-api-client-v2/models/ScheduleUpdateRequestDataAttributesLayersItems.ts index 6fddbe8eaf2b..7326a2744796 100644 --- a/packages/datadog-api-client-v2/models/ScheduleUpdateRequestDataAttributesLayersItems.ts +++ b/packages/datadog-api-client-v2/models/ScheduleUpdateRequestDataAttributesLayersItems.ts @@ -46,6 +46,10 @@ export class ScheduleUpdateRequestDataAttributesLayersItems { * The date/time at which the rotation begins (ISO 8601 format). */ "rotationStart": Date; + /** + * The time zone for this layer. + */ + "timeZone"?: string; /** * A container for additional, undeclared properties. @@ -103,6 +107,10 @@ export class ScheduleUpdateRequestDataAttributesLayersItems { required: true, format: "date-time", }, + timeZone: { + baseName: "time_zone", + type: "string", + }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }",