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": "d58cb84 ",
3
- "generated": "2025-08-22 18:44:56.345 "
2
+ "spec_repo_commit": "dfe221d ",
3
+ "generated": "2025-08-25 08:42:46.543 "
4
4
}
Original file line number Diff line number Diff line change @@ -15690,6 +15690,10 @@ components:
15690
15690
type: string
15691
15691
description: Variables to replace in the test.
15692
15692
type: object
15693
+ version:
15694
+ description: The version number of the Synthetic test version to trigger.
15695
+ format: int64
15696
+ type: integer
15693
15697
required:
15694
15698
- public_id
15695
15699
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