Skip to content

Commit

Permalink
feat(blockchainnodeengine): update the API
Browse files Browse the repository at this point in the history
#### blockchainnodeengine:v1

The following keys were added:
- schemas.BlockchainNode.properties.privateServiceConnectEnabled.description
- schemas.BlockchainNode.properties.privateServiceConnectEnabled.type

The following keys were changed:
- schemas.EthereumDetails.properties.network.enum
- schemas.EthereumDetails.properties.network.enumDescriptions
  • Loading branch information
yoshi-automation authored and sofisl committed Nov 27, 2023
1 parent a83496f commit 58c2f27
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 9 additions & 3 deletions discovery/blockchainnodeengine-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
}
}
},
"revision": "20231011",
"revision": "20231108",
"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. 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 Expand Up @@ -671,13 +675,15 @@
"NETWORK_UNSPECIFIED",
"MAINNET",
"TESTNET_GOERLI_PRATER",
"TESTNET_SEPOLIA"
"TESTNET_SEPOLIA",
"TESTNET_HOLESKY"
],
"enumDescriptions": [
"The network has not been specified, but should be.",
"The Ethereum Mainnet.",
"The Ethereum Testnet based on Goerli protocol.",
"The Ethereum Testnet based on Sepolia/Bepolia protocol. See https://github.com/eth-clients/sepolia."
"The Ethereum Testnet based on Sepolia/Bepolia protocol. See https://github.com/eth-clients/sepolia.",
"The Ethereum Testnet based on Holesky specification. See https://github.com/eth-clients/holesky."
],
"type": "string"
},
Expand Down
4 changes: 4 additions & 0 deletions src/apis/blockchainnodeengine/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ export namespace blockchainnodeengine_v1 {
* Output only. The fully qualified name of the blockchain node. e.g. `projects/my-project/locations/us-central1/blockchainNodes/my-node`.
*/
name?: string | null;
/**
* 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. See https://cloud.google.com/vpc/docs/private-service-connect.
*/
privateServiceConnectEnabled?: boolean | null;
/**
* Output only. A status representing the state of the node.
*/
Expand Down

0 comments on commit 58c2f27

Please sign in to comment.