Skip to main content

nodes_guest_attributes

Creates, updates, deletes, gets or lists a nodes_guest_attributes resource.

Overview

Namenodes_guest_attributes
TypeResource
Idgoogle.tpu.nodes_guest_attributes

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
guestAttributesarrayThe guest attributes for the TPU workers.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_guest_attributesselectprojectsId, locationsId, nodesIdRetrieves 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.

NameDatatypeDescription
locationsIdstring
nodesIdstring
projectsIdstring

SELECT examples

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;