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:
14413
14413
extractedValuesFromScript:
14414
14414
description: Generate variables using JavaScript.
14415
14415
type: string
14416
+ id:
14417
+ description: ID of the step.
14418
+ example: abc-def-123
14419
+ readOnly: true
14420
+ type: string
14416
14421
isCritical:
14417
14422
description: 'Determines whether or not to consider the entire test as failed
14418
14423
if this step fails.
@@ -14469,6 +14474,11 @@ components:
14469
14474
SyntheticsAPIWaitStep:
14470
14475
description: The Wait step used in a Synthetic multi-step API test.
14471
14476
properties:
14477
+ id:
14478
+ description: ID of the step.
14479
+ example: abc-def-123
14480
+ readOnly: true
14481
+ type: string
14472
14482
name:
14473
14483
description: The name of the step.
14474
14484
example: Example step name
Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ export class SyntheticsAPITestStep {
35
35
* Generate variables using JavaScript.
36
36
*/
37
37
"extractedValuesFromScript" ?: string ;
38
+ /**
39
+ * ID of the step.
40
+ */
41
+ "id" ?: string ;
38
42
/**
39
43
* Determines whether or not to consider the entire test as failed if this step fails.
40
44
* Can be used only if `allowFailure` is `true`.
@@ -94,6 +98,10 @@ export class SyntheticsAPITestStep {
94
98
baseName : "extractedValuesFromScript" ,
95
99
type : "string" ,
96
100
} ,
101
+ id : {
102
+ baseName : "id" ,
103
+ type : "string" ,
104
+ } ,
97
105
isCritical : {
98
106
baseName : "isCritical" ,
99
107
type : "boolean" ,
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
11
11
* The Wait step used in a Synthetic multi-step API test.
12
12
*/
13
13
export class SyntheticsAPIWaitStep {
14
+ /**
15
+ * ID of the step.
16
+ */
17
+ "id" ?: string ;
14
18
/**
15
19
* The name of the step.
16
20
*/
@@ -40,6 +44,10 @@ export class SyntheticsAPIWaitStep {
40
44
* @ignore
41
45
*/
42
46
static readonly attributeTypeMap : AttributeTypeMap = {
47
+ id : {
48
+ baseName : "id" ,
49
+ type : "string" ,
50
+ } ,
43
51
name : {
44
52
baseName : "name" ,
45
53
type : "string" ,
You can’t perform that action at this time.
0 commit comments