File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -14413,6 +14413,11 @@ components:
1441314413 extractedValuesFromScript:
1441414414 description: Generate variables using JavaScript.
1441514415 type: string
14416+ id:
14417+ description: ID of the step.
14418+ example: abc-def-123
14419+ readOnly: true
14420+ type: string
1441614421 isCritical:
1441714422 description: 'Determines whether or not to consider the entire test as failed
1441814423 if this step fails.
@@ -14469,6 +14474,11 @@ components:
1446914474 SyntheticsAPIWaitStep:
1447014475 description: The Wait step used in a Synthetic multi-step API test.
1447114476 properties:
14477+ id:
14478+ description: ID of the step.
14479+ example: abc-def-123
14480+ readOnly: true
14481+ type: string
1447214482 name:
1447314483 description: The name of the step.
1447414484 example: Example step name
Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ export class SyntheticsAPITestStep {
3535 * Generate variables using JavaScript.
3636 */
3737 "extractedValuesFromScript" ?: string ;
38+ /**
39+ * ID of the step.
40+ */
41+ "id" ?: string ;
3842 /**
3943 * Determines whether or not to consider the entire test as failed if this step fails.
4044 * Can be used only if `allowFailure` is `true`.
@@ -94,6 +98,10 @@ export class SyntheticsAPITestStep {
9498 baseName : "extractedValuesFromScript" ,
9599 type : "string" ,
96100 } ,
101+ id : {
102+ baseName : "id" ,
103+ type : "string" ,
104+ } ,
97105 isCritical : {
98106 baseName : "isCritical" ,
99107 type : "boolean" ,
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1111 * The Wait step used in a Synthetic multi-step API test.
1212 */
1313export class SyntheticsAPIWaitStep {
14+ /**
15+ * ID of the step.
16+ */
17+ "id" ?: string ;
1418 /**
1519 * The name of the step.
1620 */
@@ -40,6 +44,10 @@ export class SyntheticsAPIWaitStep {
4044 * @ignore
4145 */
4246 static readonly attributeTypeMap : AttributeTypeMap = {
47+ id : {
48+ baseName : "id" ,
49+ type : "string" ,
50+ } ,
4351 name : {
4452 baseName : "name" ,
4553 type : "string" ,
You can’t perform that action at this time.
0 commit comments