Skip to content

Commit dcff7d5

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 9757e1ea of spec repo (#2320)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 6b6a761 commit dcff7d5

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-06-13 12:53:03.575328",
8-
"spec_repo_commit": "a4fc362f"
7+
"regenerated": "2025-06-13 13:39:04.008694",
8+
"spec_repo_commit": "9757e1ea"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-06-13 12:53:03.591924",
13-
"spec_repo_commit": "a4fc362f"
12+
"regenerated": "2025-06-13 13:39:04.025215",
13+
"spec_repo_commit": "9757e1ea"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17207,13 +17207,21 @@ components:
1720717207
description: DNS server port to use for DNS tests.
1720817208
type: string
1720917209
files:
17210-
description: Files to be used as part of the request in the test.
17210+
description: Files to be used as part of the request in the test. Only valid
17211+
if `bodyType` is `multipart/form-data`.
1721117212
items:
1721217213
$ref: '#/components/schemas/SyntheticsTestRequestBodyFile'
1721317214
type: array
1721417215
follow_redirects:
1721517216
description: Specifies whether or not the request follows redirects.
1721617217
type: boolean
17218+
form:
17219+
additionalProperties:
17220+
description: A single form entry.
17221+
type: string
17222+
description: Form to be used as part of the request in the test. Only valid
17223+
if `bodyType` is `multipart/form-data`.
17224+
type: object
1721717225
headers:
1721817226
$ref: '#/components/schemas/SyntheticsTestHeaders'
1721917227
host:

packages/datadog-api-client-v1/models/SyntheticsTestRequest.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,17 @@ export class SyntheticsTestRequest {
6767
*/
6868
"dnsServerPort"?: string;
6969
/**
70-
* Files to be used as part of the request in the test.
70+
* Files to be used as part of the request in the test. Only valid if `bodyType` is `multipart/form-data`.
7171
*/
7272
"files"?: Array<SyntheticsTestRequestBodyFile>;
7373
/**
7474
* Specifies whether or not the request follows redirects.
7575
*/
7676
"followRedirects"?: boolean;
77+
/**
78+
* Form to be used as part of the request in the test. Only valid if `bodyType` is `multipart/form-data`.
79+
*/
80+
"form"?: { [key: string]: string };
7781
/**
7882
* Headers to include when performing the test.
7983
*/
@@ -221,6 +225,10 @@ export class SyntheticsTestRequest {
221225
baseName: "follow_redirects",
222226
type: "boolean",
223227
},
228+
form: {
229+
baseName: "form",
230+
type: "{ [key: string]: string; }",
231+
},
224232
headers: {
225233
baseName: "headers",
226234
type: "{ [key: string]: string; }",

0 commit comments

Comments
 (0)