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": "4413e63 ",
3
- "generated": "2025-08-19 20:29:47.677 "
2
+ "spec_repo_commit": "cded6ca ",
3
+ "generated": "2025-08-22 12:12:10.039 "
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 @@ -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