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 11{
2- "spec_repo_commit": "335aa67 ",
3- "generated": "2025-08-27 07:13:27.792 "
2+ "spec_repo_commit": "98e3371 ",
3+ "generated": "2025-08-27 08:45:07.811 "
44}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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; }" ,
You can’t perform that action at this time.
0 commit comments