node_types
Creates, updates, deletes, gets or lists a node_types
resource.
Overview
Name | node_types |
Type | Resource |
Id | google.vmwareengine.node_types |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Successful response
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 (int32) | 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 (int32) | 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 (int32) | Output only. The total number of CPU cores in a single node. |
virtualCpuCount | integer (int32) | Output only. The total number of virtual CPUs in a single node. |
Successful response
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 (int32) | 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 (int32) | 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 (int32) | Output only. The total number of CPU cores in a single node. |
virtualCpuCount | integer (int32) | Output only. The total number of virtual CPUs in a single node. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | projectsId , locationsId , nodeTypesId | Gets details of a single NodeType . | |
list | select | projectsId , locationsId | pageSize , pageToken , filter | Lists node types |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
locationsId | string | |
nodeTypesId | string | |
projectsId | string | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- get
- list
Gets details of a single NodeType
.
SELECT
name,
availableCustomCoreCounts,
capabilities,
diskSizeGb,
displayName,
families,
kind,
memoryGb,
nodeTypeId,
totalCoreCount,
virtualCpuCount
FROM google.vmwareengine.node_types
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND nodeTypesId = '{{ nodeTypesId }}' -- required;
Lists node types
SELECT
name,
availableCustomCoreCounts,
capabilities,
diskSizeGb,
displayName,
families,
kind,
memoryGb,
nodeTypeId,
totalCoreCount,
virtualCpuCount
FROM google.vmwareengine.node_types
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}';