File tree Expand file tree Collapse file tree 3 files changed +22
-6
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 3 files changed +22
-6
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"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 "
9
9
},
10
10
"v2": {
11
11
"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 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -17207,13 +17207,21 @@ components:
17207
17207
description: DNS server port to use for DNS tests.
17208
17208
type: string
17209
17209
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`.
17211
17212
items:
17212
17213
$ref: '#/components/schemas/SyntheticsTestRequestBodyFile'
17213
17214
type: array
17214
17215
follow_redirects:
17215
17216
description: Specifies whether or not the request follows redirects.
17216
17217
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
17217
17225
headers:
17218
17226
$ref: '#/components/schemas/SyntheticsTestHeaders'
17219
17227
host:
Original file line number Diff line number Diff line change @@ -67,13 +67,17 @@ export class SyntheticsTestRequest {
67
67
*/
68
68
"dnsServerPort" ?: string ;
69
69
/**
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`.
71
71
*/
72
72
"files" ?: Array < SyntheticsTestRequestBodyFile > ;
73
73
/**
74
74
* Specifies whether or not the request follows redirects.
75
75
*/
76
76
"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 } ;
77
81
/**
78
82
* Headers to include when performing the test.
79
83
*/
@@ -221,6 +225,10 @@ export class SyntheticsTestRequest {
221
225
baseName : "follow_redirects" ,
222
226
type : "boolean" ,
223
227
} ,
228
+ form : {
229
+ baseName : "form" ,
230
+ type : "{ [key: string]: string; }" ,
231
+ } ,
224
232
headers : {
225
233
baseName : "headers" ,
226
234
type : "{ [key: string]: string; }" ,
You can’t perform that action at this time.
0 commit comments