device_capacity_info_device_capacity_info
Creates, updates, deletes, gets or lists a device_capacity_info_device_capacity_info resource.
Overview
| Name | device_capacity_info_device_capacity_info |
| Type | Resource |
| Id | azure.data_box_edge.device_capacity_info_device_capacity_info |
Fields
The following fields are returned by SELECT queries:
- get
The device capacity info result.
| Name | Datatype | Description |
|---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The object name. |
properties | object | The device capacity properties. |
systemData | object | Metadata pertaining to device capacity info. |
type | string | The hierarchical type of the object. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, deviceName | Gets 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.
| Name | Datatype | Description |
|---|---|---|
deviceName | string | The device name. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription ID. |
SELECT examples
- get
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
;