nodes
Creates, updates, deletes, gets or lists a nodes
resource.
Overview
Name | nodes |
Type | Resource |
Id | google.vmwareengine.nodes |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. The resource name of this node. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-central1-a/privateClouds/my-cloud/clusters/my-cluster/nodes/my-node |
customCoreCount | string | Output only. Customized number of cores |
fqdn | string | Output only. Fully qualified domain name of the node. |
internalIp | string | Output only. Internal IP address of the node. |
nodeTypeId | string | Output only. The canonical identifier of the node type (corresponds to the NodeType ). For example: standard-72. |
state | string | Output only. The state of the appliance. |
version | string | Output only. The version number of the VMware ESXi management component in this cluster. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | clustersId, locationsId, nodesId, privateCloudsId, projectsId | Gets details of a single node. |
list | SELECT | clustersId, locationsId, privateCloudsId, projectsId | Lists nodes in a given cluster. |
SELECT
examples
Lists nodes in a given cluster.
SELECT
name,
customCoreCount,
fqdn,
internalIp,
nodeTypeId,
state,
version
FROM google.vmwareengine.nodes
WHERE clustersId = '{{ clustersId }}'
AND locationsId = '{{ locationsId }}'
AND privateCloudsId = '{{ privateCloudsId }}'
AND projectsId = '{{ projectsId }}';