File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 3 files changed +15
-4
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.4",
7
- "regenerated": "2022-11-01 20:07:31.143811 ",
8
- "spec_repo_commit": "deeff34e "
7
+ "regenerated": "2022-11-02 20:10:44.572413 ",
8
+ "spec_repo_commit": "7c5579df "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.4",
12
- "regenerated": "2022-11-01 20:07:31.156526 ",
13
- "spec_repo_commit": "deeff34e "
12
+ "regenerated": "2022-11-02 20:10:44.593267 ",
13
+ "spec_repo_commit": "7c5579df "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -12744,6 +12744,9 @@ components:
12744
12744
name:
12745
12745
description: The name of the step.
12746
12746
type: string
12747
+ noScreenshot:
12748
+ description: A boolean set to not take a screenshot for the step.
12749
+ type: boolean
12747
12750
params:
12748
12751
description: The parameters of the step.
12749
12752
type: object
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ export class SyntheticsStep {
23
23
* The name of the step.
24
24
*/
25
25
"name" ?: string ;
26
+ /**
27
+ * A boolean set to not take a screenshot for the step.
28
+ */
29
+ "noScreenshot" ?: boolean ;
26
30
/**
27
31
* The parameters of the step.
28
32
*/
@@ -57,6 +61,10 @@ export class SyntheticsStep {
57
61
baseName : "name" ,
58
62
type : "string" ,
59
63
} ,
64
+ noScreenshot : {
65
+ baseName : "noScreenshot" ,
66
+ type : "boolean" ,
67
+ } ,
60
68
params : {
61
69
baseName : "params" ,
62
70
type : "any" ,
You can’t perform that action at this time.
0 commit comments