vw_file_shares
Creates, updates, deletes, gets or lists a vw_file_shares
resource.
Overview
Name | vw_file_shares |
Type | View |
Id | azure_stack.fabric_admin.vw_file_shares |
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, '$.associatedVolume') as "associated_volume",
JSON_EXTRACT(properties, '$.uncPath') as "unc_path",
subscriptionId,
resourceGroupName,
location,
fileShare
FROM azure_stack.fabric_admin.file_shares
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, '$.associatedVolume') as "associated_volume",
json_extract_path_text(properties, '$.uncPath') as "unc_path",
subscriptionId,
resourceGroupName,
location,
fileShare
FROM azure_stack.fabric_admin.file_shares
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND location = 'replace-me';