vw_nas_clusters
Creates, updates, deletes, gets or lists a vw_nas_clusters
resource.
Overview
Name | vw_nas_clusters |
Type | View |
Id | azure_stack.fabric_admin.vw_nas_clusters |
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, '$.clusterName') as "cluster_name",
JSON_EXTRACT(properties, '$.portalUri') as "portal_uri",
JSON_EXTRACT(properties, '$.size') as "size",
JSON_EXTRACT(properties, '$.sizeRemaining') as "size_remaining",
subscriptionId,
resourceGroupName,
location,
nasCluster
FROM azure_stack.fabric_admin.nas_clusters
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, '$.clusterName') as "cluster_name",
json_extract_path_text(properties, '$.portalUri') as "portal_uri",
json_extract_path_text(properties, '$.size') as "size",
json_extract_path_text(properties, '$.sizeRemaining') as "size_remaining",
subscriptionId,
resourceGroupName,
location,
nasCluster
FROM azure_stack.fabric_admin.nas_clusters
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND location = 'replace-me';