nodes_guest_attributes
Creates, updates, deletes, gets or lists a nodes_guest_attributes resource.
Overview
| Name | nodes_guest_attributes |
| Type | Resource |
| Id | google.tpu.nodes_guest_attributes |
Fields
The following fields are returned by SELECT queries:
- get_guest_attributes
| Name | Datatype | Description |
|---|---|---|
guestAttributes | array | The guest attributes for the TPU workers. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_guest_attributes | select | projectsId, locationsId, nodesId | Retrieves the guest attributes for the node. |
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 | |
nodesId | string | |
projectsId | string |
SELECT examples
- get_guest_attributes
Retrieves the guest attributes for the node.
SELECT
guestAttributes
FROM google.tpu.nodes_guest_attributes
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND nodesId = '{{ nodesId }}' -- required
;