Skip to content

Commit 31138a0

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add compressedProtoFile field to SyntheticsTestRequest (#1490)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 1526e52 commit 31138a0

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
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": "2024-01-19 16:05:42.010604",
8-
"spec_repo_commit": "20461e26"
7+
"regenerated": "2024-01-19 16:38:27.079385",
8+
"spec_repo_commit": "80f33fd7"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-01-19 16:05:42.026731",
13-
"spec_repo_commit": "20461e26"
12+
"regenerated": "2024-01-19 16:38:27.098056",
13+
"spec_repo_commit": "80f33fd7"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15691,6 +15691,10 @@ components:
1569115691
description: A protobuf JSON descriptor that needs to be gzipped first then
1569215692
base64 encoded.
1569315693
type: string
15694+
compressedProtoFile:
15695+
description: A protobuf file that needs to be gzipped first then base64
15696+
encoded.
15697+
type: string
1569415698
dnsServer:
1569515699
description: DNS server to use for DNS tests.
1569615700
type: string

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ export class SyntheticsTestRequest {
4747
* A protobuf JSON descriptor that needs to be gzipped first then base64 encoded.
4848
*/
4949
"compressedJsonDescriptor"?: string;
50+
/**
51+
* A protobuf file that needs to be gzipped first then base64 encoded.
52+
*/
53+
"compressedProtoFile"?: string;
5054
/**
5155
* DNS server to use for DNS tests.
5256
*/
@@ -167,6 +171,10 @@ export class SyntheticsTestRequest {
167171
baseName: "compressedJsonDescriptor",
168172
type: "string",
169173
},
174+
compressedProtoFile: {
175+
baseName: "compressedProtoFile",
176+
type: "string",
177+
},
170178
dnsServer: {
171179
baseName: "dnsServer",
172180
type: "string",

0 commit comments

Comments
 (0)