customer_node
Creates, updates, deletes, gets or lists a customer_node
resource.
Overview
Name | customer_node |
Type | Resource |
Id | google.prod_tt_sasportal.customer_node |
Fields
The following fields are returned by SELECT
queries:
- customers_nodes_get
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Output only. Resource name. |
displayName | string | The node's display name. |
sasUserIds | array | User ids used by the devices belonging to this node. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
customers_nodes_get | select | customersId , nodesId | Returns 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.
Name | Datatype | Description |
---|---|---|
customersId | string | |
nodesId | string |
SELECT
examples
- customers_nodes_get
Returns a requested node.
SELECT
name,
displayName,
sasUserIds
FROM google.prod_tt_sasportal.customer_node
WHERE customersId = '{{ customersId }}' -- required
AND nodesId = '{{ nodesId }}' -- required;