File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "spec_repo_commit": "c3b2b7d ",
3
- "generated": "2025-08-25 10:19:14.177 "
2
+ "spec_repo_commit": "ae08083 ",
3
+ "generated": "2025-08-25 12:34:58.835 "
4
4
}
Original file line number Diff line number Diff line change @@ -15696,6 +15696,10 @@ components:
15696
15696
type: string
15697
15697
description: Variables to replace in the test.
15698
15698
type: object
15699
+ version:
15700
+ description: The version number of the Synthetic test version to trigger.
15701
+ format: int64
15702
+ type: integer
15699
15703
required:
15700
15704
- public_id
15701
15705
type: object
Original file line number Diff line number Diff line change @@ -69,6 +69,10 @@ export class SyntheticsCITest {
69
69
* Variables to replace in the test.
70
70
*/
71
71
"variables" ?: { [ key : string ] : string } ;
72
+ /**
73
+ * The version number of the Synthetic test version to trigger.
74
+ */
75
+ "version" ?: number ;
72
76
73
77
/**
74
78
* A container for additional, undeclared properties.
@@ -143,6 +147,11 @@ export class SyntheticsCITest {
143
147
baseName : "variables" ,
144
148
type : "{ [key: string]: string; }" ,
145
149
} ,
150
+ version : {
151
+ baseName : "version" ,
152
+ type : "number" ,
153
+ format : "int64" ,
154
+ } ,
146
155
additionalProperties : {
147
156
baseName : "additionalProperties" ,
148
157
type : "any" ,
You can’t perform that action at this time.
0 commit comments