Skip to content

Commit b43ee44

Browse files
feat(blockchainnodeengine): update the API
#### blockchainnodeengine:v1 The following keys were added: - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.description - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.location - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.repeated - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.type - schemas.BlockchainNode.properties.privateServiceConnectEnabled.deprecated - schemas.ValidatorConfig.properties.managedValidatorClient.deprecated The following keys were changed: - schemas.BlockchainNode.properties.privateServiceConnectEnabled.description
1 parent fd795f2 commit b43ee44

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

‎discovery/blockchainnodeengine-v1.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@
143143
"name"
144144
],
145145
"parameters": {
146+
"extraLocationTypes": {
147+
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
148+
"location": "query",
149+
"repeated": true,
150+
"type": "string"
151+
},
146152
"filter": {
147153
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like `\"displayName=tokyo\"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
148154
"location": "query",
@@ -487,7 +493,7 @@
487493
}
488494
}
489495
},
490-
"revision": "20241204",
496+
"revision": "20250416",
491497
"rootUrl": "https://blockchainnodeengine.googleapis.com/",
492498
"schemas": {
493499
"BlockchainNode": {
@@ -534,7 +540,8 @@
534540
"type": "string"
535541
},
536542
"privateServiceConnectEnabled": {
537-
"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.",
543+
"deprecated": true,
544+
"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: These nodes are deprecated, please use public endpoints instead.",
538545
"type": "boolean"
539546
},
540547
"state": {
@@ -974,6 +981,7 @@
974981
"type": "string"
975982
},
976983
"managedValidatorClient": {
984+
"deprecated": true,
977985
"description": "Immutable. When true, deploys a GCP-managed validator client alongside the beacon client.",
978986
"type": "boolean"
979987
},

‎src/apis/blockchainnodeengine/v1.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export namespace blockchainnodeengine_v1 {
153153
*/
154154
name?: string | null;
155155
/**
156-
* 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.
156+
* 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: These nodes are deprecated, please use public endpoints instead.
157157
*/
158158
privateServiceConnectEnabled?: boolean | null;
159159
/**
@@ -640,6 +640,10 @@ export namespace blockchainnodeengine_v1 {
640640
}
641641
export interface Params$Resource$Projects$Locations$List
642642
extends StandardParameters {
643+
/**
644+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
645+
*/
646+
extraLocationTypes?: string[];
643647
/**
644648
* A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
645649
*/

0 commit comments

Comments
 (0)