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.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jan 26, 2024
1 parent 75da3ae commit 42cd3fc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ <h3>Method Details</h3>
&quot;a_key&quot;: &quot;A String&quot;,
},
&quot;name&quot;: &quot;A String&quot;, # Output only. The fully qualified name of the blockchain node. e.g. `projects/my-project/locations/us-central1/blockchainNodes/my-node`.
&quot;privateServiceConnectEnabled&quot;: True or False, # 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.
&quot;state&quot;: &quot;A String&quot;, # Output only. A status representing the state of the node.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp at which the blockchain node was last updated.
}
Expand Down Expand Up @@ -265,6 +266,7 @@ <h3>Method Details</h3>
&quot;a_key&quot;: &quot;A String&quot;,
},
&quot;name&quot;: &quot;A String&quot;, # Output only. The fully qualified name of the blockchain node. e.g. `projects/my-project/locations/us-central1/blockchainNodes/my-node`.
&quot;privateServiceConnectEnabled&quot;: True or False, # 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.
&quot;state&quot;: &quot;A String&quot;, # Output only. A status representing the state of the node.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp at which the blockchain node was last updated.
}</pre>
Expand Down Expand Up @@ -325,6 +327,7 @@ <h3>Method Details</h3>
&quot;a_key&quot;: &quot;A String&quot;,
},
&quot;name&quot;: &quot;A String&quot;, # Output only. The fully qualified name of the blockchain node. e.g. `projects/my-project/locations/us-central1/blockchainNodes/my-node`.
&quot;privateServiceConnectEnabled&quot;: True or False, # 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.
&quot;state&quot;: &quot;A String&quot;, # Output only. A status representing the state of the node.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp at which the blockchain node was last updated.
},
Expand Down Expand Up @@ -394,6 +397,7 @@ <h3>Method Details</h3>
&quot;a_key&quot;: &quot;A String&quot;,
},
&quot;name&quot;: &quot;A String&quot;, # Output only. The fully qualified name of the blockchain node. e.g. `projects/my-project/locations/us-central1/blockchainNodes/my-node`.
&quot;privateServiceConnectEnabled&quot;: True or False, # 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.
&quot;state&quot;: &quot;A String&quot;, # Output only. A status representing the state of the node.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The timestamp at which the blockchain node was last updated.
}
Expand Down
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

0 comments on commit 42cd3fc

Please sign in to comment.