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
10 changes: 10 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -94,6 +98,10 @@ export class SyntheticsAPITestStep {
baseName: "extractedValuesFromScript",
type: "string",
},
id: {
baseName: "id",
type: "string",
},
isCritical: {
baseName: "isCritical",
type: "boolean",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -40,6 +44,10 @@ export class SyntheticsAPIWaitStep {
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap = {
id: {
baseName: "id",
type: "string",
},
name: {
baseName: "name",
type: "string",
Expand Down