vw_data_networks
Creates, updates, deletes, gets or lists a vw_data_networks
resource.
Overview
Name | vw_data_networks |
Type | View |
Id | azure.mobile_network.vw_data_networks |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
mobileNetworkName,
dataNetworkName
FROM azure.mobile_network.data_networks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND mobileNetworkName = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
mobileNetworkName,
dataNetworkName
FROM azure.mobile_network.data_networks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND mobileNetworkName = 'replace-me';