Skip to content

Commit 4a4cae7

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit ae08083 of spec repo
1 parent 44c2ca8 commit 4a4cae7

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": "c3b2b7d",
3-
"generated": "2025-08-25 10:17:47.852"
2+
"spec_repo_commit": "ae08083",
3+
"generated": "2025-08-25 12:33:40.980"
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

services/synthetics/src/v1/models/SyntheticsCITest.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ export class SyntheticsCITest {
6464
* Variables to replace in the test.
6565
*/
6666
"variables"?: { [key: string]: string };
67+
/**
68+
* The version number of the Synthetic test version to trigger.
69+
*/
70+
"version"?: number;
6771
/**
6872
* A container for additional, undeclared properties.
6973
* This is a holder for any undeclared properties as specified with
@@ -136,6 +140,11 @@ export class SyntheticsCITest {
136140
baseName: "variables",
137141
type: "{ [key: string]: string; }",
138142
},
143+
version: {
144+
baseName: "version",
145+
type: "number",
146+
format: "int64",
147+
},
139148
additionalProperties: {
140149
baseName: "additionalProperties",
141150
type: "{ [key: string]: any; }",

0 commit comments

Comments
 (0)