Skip to main content

customer_node

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

Overview

Namecustomer_node
TypeResource
Idgoogle.prod_tt_sasportal.customer_node

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringOutput only. Resource name.
displayNamestringThe node's display name.
sasUserIdsarrayUser ids used by the devices belonging to this node.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
customers_nodes_getselectcustomersId, nodesIdReturns a requested 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
customersIdstring
nodesIdstring

SELECT examples

Returns a requested node.

SELECT
name,
displayName,
sasUserIds
FROM google.prod_tt_sasportal.customer_node
WHERE customersId = '{{ customersId }}' -- required
AND nodesId = '{{ nodesId }}' -- required;