nodes
Creates, updates, deletes, gets or lists a nodes
resource.
Overview
Name | nodes |
Type | Resource |
Id | azure.data_box_edge.nodes |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The object name. |
properties | object | This class represents the nodes in a highly available cluster |
type | string | The hierarchical type of the object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_data_box_edge_device | SELECT | deviceName, resourceGroupName, subscriptionId | Gets all the nodes currently configured under this Data Box Edge device |
SELECT
examples
Gets all the nodes currently configured under this Data Box Edge device
SELECT
id,
name,
properties,
type
FROM azure.data_box_edge.nodes
WHERE deviceName = '{{ deviceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';