vw_operations_status
Creates, updates, deletes, gets or lists a vw_operations_status
resource.
Overview
Name | vw_operations_status |
Type | View |
Id | azure.data_box_edge.vw_operations_status |
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,
status as status,
startTime as start_time,
endTime as end_time,
percentComplete as percent_complete,
error as error,
JSON_EXTRACT(properties, '$.jobType') as "job_type",
JSON_EXTRACT(properties, '$.currentStage') as "current_stage",
JSON_EXTRACT(properties, '$.downloadProgress') as "download_progress",
JSON_EXTRACT(properties, '$.installProgress') as "install_progress",
JSON_EXTRACT(properties, '$.totalRefreshErrors') as "total_refresh_errors",
JSON_EXTRACT(properties, '$.errorManifestFile') as "error_manifest_file",
JSON_EXTRACT(properties, '$.refreshedEntityId') as "refreshed_entity_id",
JSON_EXTRACT(properties, '$.folder') as "folder",
subscriptionId,
resourceGroupName,
deviceName,
name
FROM azure.data_box_edge.operations_status
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND deviceName = 'replace-me' AND name = 'replace-me';
SELECT
id as id,
name as name,
type as type,
status as status,
startTime as start_time,
endTime as end_time,
percentComplete as percent_complete,
error as error,
json_extract_path_text(properties, '$.jobType') as "job_type",
json_extract_path_text(properties, '$.currentStage') as "current_stage",
json_extract_path_text(properties, '$.downloadProgress') as "download_progress",
json_extract_path_text(properties, '$.installProgress') as "install_progress",
json_extract_path_text(properties, '$.totalRefreshErrors') as "total_refresh_errors",
json_extract_path_text(properties, '$.errorManifestFile') as "error_manifest_file",
json_extract_path_text(properties, '$.refreshedEntityId') as "refreshed_entity_id",
json_extract_path_text(properties, '$.folder') as "folder",
subscriptionId,
resourceGroupName,
deviceName,
name
FROM azure.data_box_edge.operations_status
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND deviceName = 'replace-me' AND name = 'replace-me';