node_types
Creates, updates, deletes, gets or lists a node_types
resource.
Overview
Name | node_types |
Type | Resource |
Id | google.vmwareengine.node_types |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. The resource name of this node type. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-proj/locations/us-central1-a/nodeTypes/standard-72 |
availableCustomCoreCounts | array | Output only. List of possible values of custom core count. |
capabilities | array | Output only. Capabilities of this node type. |
diskSizeGb | integer | Output only. The amount of storage available, defined in GB. |
displayName | string | Output only. The friendly name for this node type. For example: ve1-standard-72 |
families | array | Output only. Families of the node type. For node types to be in the same cluster they must share at least one element in the families . |
kind | string | Output only. The type of the resource. |
memoryGb | integer | Output only. The amount of physical memory available, defined in GB. |
nodeTypeId | string | Output only. The canonical identifier of the node type (corresponds to the NodeType ). For example: standard-72. |
totalCoreCount | integer | Output only. The total number of CPU cores in a single node. |
virtualCpuCount | integer | Output only. The total number of virtual CPUs in a single node. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | locationsId, nodeTypesId, projectsId | Gets details of a single NodeType . |
list | SELECT | locationsId, projectsId | Lists node types |
SELECT
examples
Lists node types
SELECT
name,
availableCustomCoreCounts,
capabilities,
diskSizeGb,
displayName,
families,
kind,
memoryGb,
nodeTypeId,
totalCoreCount,
virtualCpuCount
FROM google.vmwareengine.node_types
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';