device_capacity_info
Creates, updates, deletes, gets or lists a device_capacity_info resource.
Overview
| Name | device_capacity_info |
| Type | Resource |
| Id | azure.data_box_edge.device_capacity_info |
Fields
The following fields are returned by SELECT queries:
- get_device_capacity_info
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
clusterComputeCapacityInfo | object | Cluster capacity data for compute resources (Memory and GPU). |
clusterStorageCapacityInfo | object | Cluster capacity data for storage resources (CSV). |
nodeCapacityInfos | object | The dictionary of individual node names and node capacities in the cluster. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
timeStamp | string (date-time) | Timestamp of request in UTC. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_device_capacity_info | select | resource_group_name, device_name, subscription_id | 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 |
|---|---|---|
device_name | string | The device name. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get_device_capacity_info
Gets the properties of the specified device capacity info.
SELECT
id,
name,
clusterComputeCapacityInfo,
clusterStorageCapacityInfo,
nodeCapacityInfos,
systemData,
timeStamp,
type
FROM azure.data_box_edge.device_capacity_info
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND device_name = '{{ device_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;