File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
services/synthetics/src/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:17:47.852 "
2
+ "spec_repo_commit": "ae08083 ",
3
+ "generated": "2025-08-25 12:33:40.980 "
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 @@ -64,6 +64,10 @@ export class SyntheticsCITest {
64
64
* Variables to replace in the test.
65
65
*/
66
66
"variables" ?: { [ key : string ] : string } ;
67
+ /**
68
+ * The version number of the Synthetic test version to trigger.
69
+ */
70
+ "version" ?: number ;
67
71
/**
68
72
* A container for additional, undeclared properties.
69
73
* This is a holder for any undeclared properties as specified with
@@ -136,6 +140,11 @@ export class SyntheticsCITest {
136
140
baseName : "variables" ,
137
141
type : "{ [key: string]: string; }" ,
138
142
} ,
143
+ version : {
144
+ baseName : "version" ,
145
+ type : "number" ,
146
+ format : "int64" ,
147
+ } ,
139
148
additionalProperties : {
140
149
baseName : "additionalProperties" ,
141
150
type : "{ [key: string]: any; }" ,
You can’t perform that action at this time.
0 commit comments