vw_logical_networks
Creates, updates, deletes, gets or lists a vw_logical_networks
resource.
Overview
Name | vw_logical_networks |
Type | View |
Id | azure_stack.fabric_admin.vw_logical_networks |
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, '$.metadata') as "metadata",
JSON_EXTRACT(properties, '$.networkVirtualizationEnabled') as "network_virtualization_enabled",
JSON_EXTRACT(properties, '$.subnets') as "subnets",
subscriptionId,
resourceGroupName,
location,
logicalNetwork
FROM azure_stack.fabric_admin.logical_networks
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, '$.metadata') as "metadata",
json_extract_path_text(properties, '$.networkVirtualizationEnabled') as "network_virtualization_enabled",
json_extract_path_text(properties, '$.subnets') as "subnets",
subscriptionId,
resourceGroupName,
location,
logicalNetwork
FROM azure_stack.fabric_admin.logical_networks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND location = 'replace-me';