vw_device_capacity_info_device_capacity_info
Creates, updates, deletes, gets or lists a vw_device_capacity_info_device_capacity_info
resource.
Overview
Name | vw_device_capacity_info_device_capacity_info |
Type | View |
Id | azure.data_box_edge.vw_device_capacity_info_device_capacity_info |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.timeStamp') as "time_stamp",
JSON_EXTRACT(properties, '$.clusterStorageCapacityInfo') as "cluster_storage_capacity_info",
JSON_EXTRACT(properties, '$.clusterComputeCapacityInfo') as "cluster_compute_capacity_info",
JSON_EXTRACT(properties, '$.nodeCapacityInfos') as "node_capacity_infos",
subscriptionId,
resourceGroupName,
deviceName
FROM azure.data_box_edge.device_capacity_info_device_capacity_info
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND deviceName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.timeStamp') as "time_stamp",
json_extract_path_text(properties, '$.clusterStorageCapacityInfo') as "cluster_storage_capacity_info",
json_extract_path_text(properties, '$.clusterComputeCapacityInfo') as "cluster_compute_capacity_info",
json_extract_path_text(properties, '$.nodeCapacityInfos') as "node_capacity_infos",
subscriptionId,
resourceGroupName,
deviceName
FROM azure.data_box_edge.device_capacity_info_device_capacity_info
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND deviceName = 'replace-me';