Skip to main content

vw_operations_status

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

Overview

Namevw_operations_status
TypeView
Idazure.data_box_edge.vw_operations_status

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

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';