vw_logical_subnets
Creates, updates, deletes, gets or lists a vw_logical_subnets
resource.
Overview
Name | vw_logical_subnets |
Type | View |
Id | azure_stack.fabric_admin.vw_logical_subnets |
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, '$.ipPools') as "ip_pools",
JSON_EXTRACT(properties, '$.isPublic') as "is_public",
JSON_EXTRACT(properties, '$.metadata') as "metadata",
subscriptionId,
resourceGroupName,
location,
logicalNetwork,
logicalSubnet
FROM azure_stack.fabric_admin.logical_subnets
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND location = 'replace-me' AND logicalNetwork = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.ipPools') as "ip_pools",
json_extract_path_text(properties, '$.isPublic') as "is_public",
json_extract_path_text(properties, '$.metadata') as "metadata",
subscriptionId,
resourceGroupName,
location,
logicalNetwork,
logicalSubnet
FROM azure_stack.fabric_admin.logical_subnets
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND location = 'replace-me' AND logicalNetwork = 'replace-me';