From ef98f53b551d74e409c44a99b7ab9c15b2fdac6e Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Thu, 4 Sep 2025 12:19:06 +0000 Subject: [PATCH] Regenerate client from commit f3573aa of spec repo --- .generator/schemas/v1/openapi.yaml | 10 ++++++++++ .../models/SyntheticsAPITestStep.ts | 8 ++++++++ .../models/SyntheticsAPIWaitStep.ts | 8 ++++++++ 3 files changed, 26 insertions(+) diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 650231401261..f5051733337c 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -14413,6 +14413,11 @@ components: extractedValuesFromScript: description: Generate variables using JavaScript. type: string + id: + description: ID of the step. + example: abc-def-123 + readOnly: true + type: string isCritical: description: 'Determines whether or not to consider the entire test as failed if this step fails. @@ -14469,6 +14474,11 @@ components: SyntheticsAPIWaitStep: description: The Wait step used in a Synthetic multi-step API test. properties: + id: + description: ID of the step. + example: abc-def-123 + readOnly: true + type: string name: description: The name of the step. example: Example step name diff --git a/packages/datadog-api-client-v1/models/SyntheticsAPITestStep.ts b/packages/datadog-api-client-v1/models/SyntheticsAPITestStep.ts index 90eb4ba48212..e8246c9da7a9 100644 --- a/packages/datadog-api-client-v1/models/SyntheticsAPITestStep.ts +++ b/packages/datadog-api-client-v1/models/SyntheticsAPITestStep.ts @@ -35,6 +35,10 @@ export class SyntheticsAPITestStep { * Generate variables using JavaScript. */ "extractedValuesFromScript"?: string; + /** + * ID of the step. + */ + "id"?: string; /** * Determines whether or not to consider the entire test as failed if this step fails. * Can be used only if `allowFailure` is `true`. @@ -94,6 +98,10 @@ export class SyntheticsAPITestStep { baseName: "extractedValuesFromScript", type: "string", }, + id: { + baseName: "id", + type: "string", + }, isCritical: { baseName: "isCritical", type: "boolean", diff --git a/packages/datadog-api-client-v1/models/SyntheticsAPIWaitStep.ts b/packages/datadog-api-client-v1/models/SyntheticsAPIWaitStep.ts index 1543f2ad1df2..f01af8dc56f0 100644 --- a/packages/datadog-api-client-v1/models/SyntheticsAPIWaitStep.ts +++ b/packages/datadog-api-client-v1/models/SyntheticsAPIWaitStep.ts @@ -11,6 +11,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util"; * The Wait step used in a Synthetic multi-step API test. */ export class SyntheticsAPIWaitStep { + /** + * ID of the step. + */ + "id"?: string; /** * The name of the step. */ @@ -40,6 +44,10 @@ export class SyntheticsAPIWaitStep { * @ignore */ static readonly attributeTypeMap: AttributeTypeMap = { + id: { + baseName: "id", + type: "string", + }, name: { baseName: "name", type: "string",