Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2372

Merged
merged 1 commit into from
Jan 24, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
229 changes: 219 additions & 10 deletions androidmanagement/v1/androidmanagement-api.json

Large diffs are not rendered by default.

709 changes: 701 additions & 8 deletions androidmanagement/v1/androidmanagement-gen.go

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion blockchainnodeengine/v1/blockchainnodeengine-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
}
}
},
"revision": "20240103",
"revision": "20240117",
"rootUrl": "https://blockchainnodeengine.googleapis.com/",
"schemas": {
"BlockchainNode": {
Expand Down Expand Up @@ -533,6 +533,10 @@
"readOnly": true,
"type": "string"
},
"privateServiceConnectEnabled": {
"description": "Optional. When true, the node is only accessible via Private Service Connect; no public endpoints are exposed. Otherwise, the node is only accessible via public endpoints. Warning: Private Service Connect enabled nodes may require a manual migration effort to remain compatible with future versions of the product. If this feature is enabled, you will be notified of these changes along with any required action to avoid disruption. See https://cloud.google.com/vpc/docs/private-service-connect.",
"type": "boolean"
},
"state": {
"description": "Output only. A status representing the state of the node.",
"enum": [
Expand Down
10 changes: 10 additions & 0 deletions blockchainnodeengine/v1/blockchainnodeengine-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions discoveryengine/v1alpha/discoveryengine-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
],
"parameters": {
"location": {
"description": "Required. Full resource name of the Location, such as `projects/{project}/locations/{location}`.",
"description": "Required. Full resource name of the location, such as `projects/{project}/locations/{location}`.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+$",
"required": true,
Expand Down Expand Up @@ -636,7 +636,7 @@
"type": "string"
},
"updateMask": {
"description": "Indicates which fields in the provided DocumentProcessingConfig to update. The following are the only supported fields: * DocumentProcessingConfig.orc_config If not set, all supported fields are updated.",
"description": "Indicates which fields in the provided DocumentProcessingConfig to update. The following are the only supported fields: * DocumentProcessingConfig.ocr_config If not set, all supported fields are updated.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
Expand Down Expand Up @@ -3141,7 +3141,7 @@
"type": "string"
},
"updateMask": {
"description": "Indicates which fields in the provided DocumentProcessingConfig to update. The following are the only supported fields: * DocumentProcessingConfig.orc_config If not set, all supported fields are updated.",
"description": "Indicates which fields in the provided DocumentProcessingConfig to update. The following are the only supported fields: * DocumentProcessingConfig.ocr_config If not set, all supported fields are updated.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
Expand Down Expand Up @@ -4596,7 +4596,7 @@
}
}
},
"revision": "20240118",
"revision": "20240123",
"rootUrl": "https://discoveryengine.googleapis.com/",
"schemas": {
"GoogleApiHttpBody": {
Expand Down Expand Up @@ -7973,7 +7973,7 @@
},
"embeddingSpec": {
"$ref": "GoogleCloudDiscoveryengineV1alphaSearchRequestEmbeddingSpec",
"description": "Uses the provided embedding to do additional semantic document retrieval. The retrieval is based on the dot product of SearchRequest.EmbeddingSpec.EmbeddingVector.vector and the document embedding that is provided in SearchRequest.EmbeddingSpec.EmbeddingVector.field_path. If SearchRequest.EmbeddingSpec.EmbeddingVector.field_path is not provided, it will use ServingConfig.EmbeddingConfig.field_paths."
"description": "Uses the provided embedding to do additional semantic document retrieval. The retrieval is based on the dot product of SearchRequest.EmbeddingSpec.EmbeddingVector.vector and the document embedding that is provided in SearchRequest.EmbeddingSpec.EmbeddingVector.field_path. If SearchRequest.EmbeddingSpec.EmbeddingVector.field_path is not provided, it will use ServingConfig.EmbeddingConfig.field_path."
},
"facetSpecs": {
"description": "Facet specifications for faceted search. If empty, no facets are returned. A maximum of 100 values are allowed. Otherwise, an `INVALID_ARGUMENT` error is returned.",
Expand Down
14 changes: 7 additions & 7 deletions discoveryengine/v1alpha/discoveryengine-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions discoveryengine/v1beta/discoveryengine-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4164,7 +4164,7 @@
}
}
},
"revision": "20240118",
"revision": "20240123",
"rootUrl": "https://discoveryengine.googleapis.com/",
"schemas": {
"GoogleApiHttpBody": {
Expand Down Expand Up @@ -8323,7 +8323,7 @@
},
"embeddingSpec": {
"$ref": "GoogleCloudDiscoveryengineV1betaSearchRequestEmbeddingSpec",
"description": "Uses the provided embedding to do additional semantic document retrieval. The retrieval is based on the dot product of SearchRequest.EmbeddingSpec.EmbeddingVector.vector and the document embedding that is provided in SearchRequest.EmbeddingSpec.EmbeddingVector.field_path. If SearchRequest.EmbeddingSpec.EmbeddingVector.field_path is not provided, it will use ServingConfig.EmbeddingConfig.field_paths."
"description": "Uses the provided embedding to do additional semantic document retrieval. The retrieval is based on the dot product of SearchRequest.EmbeddingSpec.EmbeddingVector.vector and the document embedding that is provided in SearchRequest.EmbeddingSpec.EmbeddingVector.field_path. If SearchRequest.EmbeddingSpec.EmbeddingVector.field_path is not provided, it will use ServingConfig.EmbeddingConfig.field_path."
},
"facetSpecs": {
"description": "Facet specifications for faceted search. If empty, no facets are returned. A maximum of 100 values are allowed. Otherwise, an `INVALID_ARGUMENT` error is returned.",
Expand Down
2 changes: 1 addition & 1 deletion discoveryengine/v1beta/discoveryengine-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion firebaseappcheck/v1beta/firebaseappcheck-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1748,6 +1748,11 @@
"parent"
],
"parameters": {
"filter": {
"description": "Optional. Filters the results by the specified rule. For the exact syntax of this field, please consult the [AIP-160](https://google.aip.dev/160) standard. Currently, since the only fields in the ResourcePolicy resource are the scalar fields `enforcement_mode` and `target_resource`, this method does not support the traversal operator (`.`) or the has operator (`:`). Here are some examples of valid filters: * `enforcement_mode = ENFORCED` * `target_resource = \"//oauth2.googleapis.com/projects/12345/oauthClients/\"` * `enforcement_mode = ENFORCED AND target_resource = \"//oauth2.googleapis.com/projects/12345/oauthClients/\"`",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "The maximum number of ResourcePolicys to return in the response. Only explicitly configured policies are returned. The server may return fewer than this at its own discretion. If no value is specified (or too large a value is specified), the server will impose its own limit.",
"format": "int32",
Expand Down Expand Up @@ -1818,7 +1823,7 @@
}
}
},
"revision": "20231204",
"revision": "20240122",
"rootUrl": "https://firebaseappcheck.googleapis.com/",
"schemas": {
"GoogleFirebaseAppcheckV1betaAppAttestConfig": {
Expand Down
21 changes: 21 additions & 0 deletions firebaseappcheck/v1beta/firebaseappcheck-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.