vw_storage_operation_results
Creates, updates, deletes, gets or lists a vw_storage_operation_results
resource.
Overview
Name | vw_storage_operation_results |
Type | View |
Id | azure_stack.fabric_admin.vw_storage_operation_results |
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,
JSON_EXTRACT(properties, '$.instances') as "instances",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
location,
operation
FROM azure_stack.fabric_admin.storage_operation_results
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND location = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.instances') as "instances",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
location,
operation
FROM azure_stack.fabric_admin.storage_operation_results
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND location = 'replace-me';