Skip to main content

nodes

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

Overview

Namenodes
TypeResource
Idazure.data_box_edge.nodes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe path ID that uniquely identifies the object.
namestringThe object name.
nodeChassisSerialNumberstringSerial number of the Chassis.
nodeDisplayNamestringDisplay Name of the individual node.
nodeFriendlySoftwareVersionstringFriendly software version name that is currently installed on the node.
nodeHcsVersionstringHCS version that is currently installed on the node.
nodeInstanceIdstringGuid instance id of the node.
nodeSerialNumberstringSerial number of the individual node.
nodeStatusstringThe current status of the individual node. Known values are: "Unknown", "Up", "Down", "Rebooting", and "ShuttingDown". (Unknown, Up, Down, Rebooting, ShuttingDown)
typestringThe hierarchical type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_data_box_edge_deviceselectdevice_name, resource_group_name, subscription_idGets all the nodes currently configured under this Data Box Edge device.

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
device_namestringThe device name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Gets all the nodes currently configured under this Data Box Edge device.

SELECT
id,
name,
nodeChassisSerialNumber,
nodeDisplayName,
nodeFriendlySoftwareVersion,
nodeHcsVersion,
nodeInstanceId,
nodeSerialNumber,
nodeStatus,
type
FROM azure.data_box_edge.nodes
WHERE device_name = '{{ device_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;