File tree Expand file tree Collapse file tree 3 files changed +29
-6
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 3 files changed +29
-6
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2024-11-05 15:05:56.262037 ",
8
- "spec_repo_commit": "8d63eae4 "
7
+ "regenerated": "2024-11-05 20:16:44.203879 ",
8
+ "spec_repo_commit": "1a56bfda "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-11-05 15:05:56.280323 ",
13
- "spec_repo_commit": "8d63eae4 "
12
+ "regenerated": "2024-11-05 20:16:44.222969 ",
13
+ "spec_repo_commit": "1a56bfda "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -16227,6 +16227,13 @@ components:
16227
16227
allowFailure:
16228
16228
description: A boolean set to allow this step to fail.
16229
16229
type: boolean
16230
+ alwaysExecute:
16231
+ description: A boolean set to always execute this step even if the previous
16232
+ step failed or was skipped.
16233
+ type: boolean
16234
+ exitIfSucceed:
16235
+ description: A boolean set to exit the test if the step succeeds.
16236
+ type: boolean
16230
16237
isCritical:
16231
16238
description: A boolean to use in addition to `allowFailure` to determine
16232
16239
if the test should be marked as failed when the step fails.
@@ -16235,7 +16242,7 @@ components:
16235
16242
description: The name of the step.
16236
16243
type: string
16237
16244
noScreenshot:
16238
- description: A boolean set to not take a screenshot for the step.
16245
+ description: A boolean set to skip taking a screenshot for the step.
16239
16246
type: boolean
16240
16247
params:
16241
16248
description: The parameters of the step.
Original file line number Diff line number Diff line change @@ -15,6 +15,14 @@ export class SyntheticsStep {
15
15
* A boolean set to allow this step to fail.
16
16
*/
17
17
"allowFailure" ?: boolean ;
18
+ /**
19
+ * A boolean set to always execute this step even if the previous step failed or was skipped.
20
+ */
21
+ "alwaysExecute" ?: boolean ;
22
+ /**
23
+ * A boolean set to exit the test if the step succeeds.
24
+ */
25
+ "exitIfSucceed" ?: boolean ;
18
26
/**
19
27
* A boolean to use in addition to `allowFailure` to determine if the test should be marked as failed when the step fails.
20
28
*/
@@ -24,7 +32,7 @@ export class SyntheticsStep {
24
32
*/
25
33
"name" ?: string ;
26
34
/**
27
- * A boolean set to not take a screenshot for the step.
35
+ * A boolean set to skip taking a screenshot for the step.
28
36
*/
29
37
"noScreenshot" ?: boolean ;
30
38
/**
@@ -60,6 +68,14 @@ export class SyntheticsStep {
60
68
baseName : "allowFailure" ,
61
69
type : "boolean" ,
62
70
} ,
71
+ alwaysExecute : {
72
+ baseName : "alwaysExecute" ,
73
+ type : "boolean" ,
74
+ } ,
75
+ exitIfSucceed : {
76
+ baseName : "exitIfSucceed" ,
77
+ type : "boolean" ,
78
+ } ,
63
79
isCritical : {
64
80
baseName : "isCritical" ,
65
81
type : "boolean" ,
You can’t perform that action at this time.
0 commit comments