Skip to content

Commit e0a7785

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit dfe221d of spec repo
1 parent c0eeae6 commit e0a7785

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
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"
44
}

.generator/schemas/v1/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15690,6 +15690,10 @@ components:
1569015690
type: string
1569115691
description: Variables to replace in the test.
1569215692
type: object
15693+
version:
15694+
description: The version number of the Synthetic test version to trigger.
15695+
format: int64
15696+
type: integer
1569315697
required:
1569415698
- public_id
1569515699
type: object

services/synthetics/src/v1/models/SyntheticsCITest.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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; }",

0 commit comments

Comments
 (0)