Skip to content

Commit 69ea97c

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add version parameter to synthetic test trigger ci endpoint (#2684)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 1ab75b2 commit 69ea97c

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "335aa67",
3-
"generated": "2025-08-27 07:15:36.021"
2+
"spec_repo_commit": "98e3371",
3+
"generated": "2025-08-27 08:47:10.789"
44
}

.generator/schemas/v1/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15696,6 +15696,10 @@ components:
1569615696
type: string
1569715697
description: Variables to replace in the test.
1569815698
type: object
15699+
version:
15700+
description: The version number of the Synthetic test version to trigger.
15701+
format: int64
15702+
type: integer
1569915703
required:
1570015704
- public_id
1570115705
type: object

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ export class SyntheticsCITest {
6969
* Variables to replace in the test.
7070
*/
7171
"variables"?: { [key: string]: string };
72+
/**
73+
* The version number of the Synthetic test version to trigger.
74+
*/
75+
"version"?: number;
7276

7377
/**
7478
* A container for additional, undeclared properties.
@@ -143,6 +147,11 @@ export class SyntheticsCITest {
143147
baseName: "variables",
144148
type: "{ [key: string]: string; }",
145149
},
150+
version: {
151+
baseName: "version",
152+
type: "number",
153+
format: "int64",
154+
},
146155
additionalProperties: {
147156
baseName: "additionalProperties",
148157
type: "{ [key: string]: any; }",

0 commit comments

Comments
 (0)