vw_update_runs_top_levels
Creates, updates, deletes, gets or lists a vw_update_runs_top_levels
resource.
Overview
Name | vw_update_runs_top_levels |
Type | View |
Id | azure_stack.update_admin.vw_update_runs_top_levels |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.progress') as "progress",
JSON_EXTRACT(properties, '$.timeStarted') as "time_started",
JSON_EXTRACT(properties, '$.duration') as "duration",
JSON_EXTRACT(properties, '$.state') as "state",
subscriptionId,
resourceGroupName,
updateLocation,
runName
FROM azure_stack.update_admin.update_runs_top_levels
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND updateLocation = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.progress') as "progress",
json_extract_path_text(properties, '$.timeStarted') as "time_started",
json_extract_path_text(properties, '$.duration') as "duration",
json_extract_path_text(properties, '$.state') as "state",
subscriptionId,
resourceGroupName,
updateLocation,
runName
FROM azure_stack.update_admin.update_runs_top_levels
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND updateLocation = 'replace-me';