Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add compressedJsonDescriptor to Synthetics gRPC tests #1084

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.4",
"regenerated": "2023-04-07 14:30:15.290290",
"spec_repo_commit": "642e33ec"
"regenerated": "2023-04-07 17:48:36.767147",
"spec_repo_commit": "e6f88173"
},
"v2": {
"apigentools_version": "1.6.4",
"regenerated": "2023-04-07 14:30:15.302924",
"spec_repo_commit": "642e33ec"
"regenerated": "2023-04-07 17:48:36.780742",
"spec_repo_commit": "e6f88173"
}
}
}
4 changes: 4 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13932,6 +13932,10 @@ components:
example: ''
type: string
type: array
compressedJsonDescriptor:
description: A protobuf JSON descriptor that needs to be gzipped first then
base64 encoded.
type: string
dnsServer:
description: DNS server to use for DNS tests.
type: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ export class SyntheticsTestRequest {
* By default, the client certificate is applied on the domain of the starting URL for browser tests. If you want your client certificate to be applied on other domains instead, add them in `certificateDomains`.
*/
"certificateDomains"?: Array<string>;
/**
* A protobuf JSON descriptor that needs to be gzipped first then base64 encoded.
*/
"compressedJsonDescriptor"?: string;
/**
* DNS server to use for DNS tests.
*/
Expand Down Expand Up @@ -155,6 +159,10 @@ export class SyntheticsTestRequest {
baseName: "certificateDomains",
type: "Array<string>",
},
compressedJsonDescriptor: {
baseName: "compressedJsonDescriptor",
type: "string",
},
dnsServer: {
baseName: "dnsServer",
type: "string",
Expand Down