vw_file_containers
Creates, updates, deletes, gets or lists a vw_file_containers
resource.
Overview
Name | vw_file_containers |
Type | View |
Id | azure_stack.deployment_admin.vw_file_containers |
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,
JSON_EXTRACT(properties, '$.fileContainerId') as "file_container_id",
JSON_EXTRACT(properties, '$.sourceUri') as "source_uri",
JSON_EXTRACT(properties, '$.uri') as "uri",
JSON_EXTRACT(properties, '$.postCopyAction') as "post_copy_action",
JSON_EXTRACT(properties, '$.error') as "error",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
fileContainerId
FROM azure_stack.deployment_admin.file_containers
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
json_extract_path_text(properties, '$.fileContainerId') as "file_container_id",
json_extract_path_text(properties, '$.sourceUri') as "source_uri",
json_extract_path_text(properties, '$.uri') as "uri",
json_extract_path_text(properties, '$.postCopyAction') as "post_copy_action",
json_extract_path_text(properties, '$.error') as "error",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
fileContainerId
FROM azure_stack.deployment_admin.file_containers
WHERE subscriptionId = 'replace-me';