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 11{
2- "spec_repo_commit": "335aa67 ",
3- "generated": "2025-08-27 07:15:36.021 "
2+ "spec_repo_commit": "98e3371 ",
3+ "generated": "2025-08-27 08:47:10.789 "
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 @@ -69,6 +69,10 @@ export class SyntheticsCITest {
6969 * Variables to replace in the test.
7070 */
7171 "variables" ?: { [ key : string ] : string } ;
72+ /**
73+ * The version number of the Synthetic test version to trigger.
74+ */
75+ "version" ?: number ;
7276
7377 /**
7478 * A container for additional, undeclared properties.
@@ -143,6 +147,11 @@ export class SyntheticsCITest {
143147 baseName : "variables" ,
144148 type : "{ [key: string]: string; }" ,
145149 } ,
150+ version : {
151+ baseName : "version" ,
152+ type : "number" ,
153+ format : "int64" ,
154+ } ,
146155 additionalProperties : {
147156 baseName : "additionalProperties" ,
148157 type : "{ [key: string]: any; }" ,
You can’t perform that action at this time.
0 commit comments