Skip to main content

device_capacity_info_device_capacity_info

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

Overview

Namedevice_capacity_info_device_capacity_info
TypeResource
Idazure.data_box_edge.device_capacity_info_device_capacity_info

Fields

The following fields are returned by SELECT queries:

The device capacity info result.

NameDatatypeDescription
idstringThe path ID that uniquely identifies the object.
namestringThe object name.
propertiesobjectThe device capacity properties.
systemDataobjectMetadata pertaining to device capacity info.
typestringThe hierarchical type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, deviceNameGets the properties of the specified device capacity info.

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
deviceNamestringThe device name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription ID.

SELECT examples

Gets the properties of the specified device capacity info.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_box_edge.device_capacity_info_device_capacity_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND deviceName = '{{ deviceName }}' -- required
;