vw_asc_operations
Creates, updates, deletes, gets or lists a vw_asc_operations
resource.
Overview
Name | vw_asc_operations |
Type | View |
Id | azure.storage_cache.vw_asc_operations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
startTime as start_time,
endTime as end_time,
status as status,
error as error,
JSON_EXTRACT(properties, '$.output') as "output",
subscriptionId,
location,
operationId
FROM azure.storage_cache.asc_operations
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND operationId = 'replace-me';
SELECT
id as id,
name as name,
startTime as start_time,
endTime as end_time,
status as status,
error as error,
json_extract_path_text(properties, '$.output') as "output",
subscriptionId,
location,
operationId
FROM azure.storage_cache.asc_operations
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND operationId = 'replace-me';