From 477086a8303ed368736d7dd6aa87baaab94f27d9 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Tue, 18 Nov 2025 16:06:34 +0000 Subject: [PATCH] Regenerate client from commit 3caef01 of spec repo --- .generator/schemas/v2/openapi.yaml | 12 ++++++++++++ services/on_call/src/v2/models/LayerAttributes.ts | 8 ++++++++ ...ScheduleCreateRequestDataAttributesLayersItems.ts | 8 ++++++++ ...ScheduleUpdateRequestDataAttributesLayersItems.ts | 8 ++++++++ 4 files changed, 36 insertions(+) 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/services/on_call/src/v2/models/LayerAttributes.ts b/services/on_call/src/v2/models/LayerAttributes.ts index 60bb8722cb89..adafd62c17df 100644 --- a/services/on_call/src/v2/models/LayerAttributes.ts +++ b/services/on_call/src/v2/models/LayerAttributes.ts @@ -31,6 +31,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. * This is a holder for any undeclared properties as specified with @@ -73,6 +77,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/services/on_call/src/v2/models/ScheduleCreateRequestDataAttributesLayersItems.ts b/services/on_call/src/v2/models/ScheduleCreateRequestDataAttributesLayersItems.ts index a4de73b25bbf..6f2aa012d27c 100644 --- a/services/on_call/src/v2/models/ScheduleCreateRequestDataAttributesLayersItems.ts +++ b/services/on_call/src/v2/models/ScheduleCreateRequestDataAttributesLayersItems.ts @@ -36,6 +36,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. * This is a holder for any undeclared properties as specified with @@ -87,6 +91,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/services/on_call/src/v2/models/ScheduleUpdateRequestDataAttributesLayersItems.ts b/services/on_call/src/v2/models/ScheduleUpdateRequestDataAttributesLayersItems.ts index c2a34f24a2d6..c03b0b55e324 100644 --- a/services/on_call/src/v2/models/ScheduleUpdateRequestDataAttributesLayersItems.ts +++ b/services/on_call/src/v2/models/ScheduleUpdateRequestDataAttributesLayersItems.ts @@ -41,6 +41,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. * This is a holder for any undeclared properties as specified with @@ -96,6 +100,10 @@ export class ScheduleUpdateRequestDataAttributesLayersItems { required: true, format: "date-time", }, + timeZone: { + baseName: "time_zone", + type: "string", + }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }",