Skip to main content

nodes

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

Overview

Namenodes
TypeResource
Idazure.data_box_edge.nodes

Fields

NameDatatypeDescription
idstringThe path ID that uniquely identifies the object.
namestringThe object name.
propertiesobjectThis class represents the nodes in a highly available cluster
typestringThe hierarchical type of the object.

Methods

NameAccessible byRequired ParamsDescription
list_by_data_box_edge_deviceSELECTdeviceName, resourceGroupName, subscriptionIdGets 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 }}';