Skip to content

Commit f81a34c

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Adds noScreenshot to SyntheticsStep (#895)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 7f89bad commit f81a34c

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"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"
99
},
1010
"v2": {
1111
"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"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12744,6 +12744,9 @@ components:
1274412744
name:
1274512745
description: The name of the step.
1274612746
type: string
12747+
noScreenshot:
12748+
description: A boolean set to not take a screenshot for the step.
12749+
type: boolean
1274712750
params:
1274812751
description: The parameters of the step.
1274912752
type: object

packages/datadog-api-client-v1/models/SyntheticsStep.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ export class SyntheticsStep {
2323
* The name of the step.
2424
*/
2525
"name"?: string;
26+
/**
27+
* A boolean set to not take a screenshot for the step.
28+
*/
29+
"noScreenshot"?: boolean;
2630
/**
2731
* The parameters of the step.
2832
*/
@@ -57,6 +61,10 @@ export class SyntheticsStep {
5761
baseName: "name",
5862
type: "string",
5963
},
64+
noScreenshot: {
65+
baseName: "noScreenshot",
66+
type: "boolean",
67+
},
6068
params: {
6169
baseName: "params",
6270
type: "any",

0 commit comments

Comments
 (0)