Skip to content
Merged
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
12 changes: 12 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions packages/datadog-api-client-v2/models/LayerAttributes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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; }",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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; }",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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; }",
Expand Down