vw_attached_data_networks
Creates, updates, deletes, gets or lists a vw_attached_data_networks
resource.
Overview
Name | vw_attached_data_networks |
Type | View |
Id | azure.mobile_network.vw_attached_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, '$.userPlaneDataInterface') as "user_plane_data_interface",
JSON_EXTRACT(properties, '$.dnsAddresses') as "dns_addresses",
JSON_EXTRACT(properties, '$.naptConfiguration') as "napt_configuration",
JSON_EXTRACT(properties, '$.userEquipmentAddressPoolPrefix') as "user_equipment_address_pool_prefix",
JSON_EXTRACT(properties, '$.userEquipmentStaticAddressPoolPrefix') as "user_equipment_static_address_pool_prefix",
subscriptionId,
resourceGroupName,
packetCoreControlPlaneName,
packetCoreDataPlaneName,
attachedDataNetworkName
FROM azure.mobile_network.attached_data_networks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND packetCoreControlPlaneName = 'replace-me' AND packetCoreDataPlaneName = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.userPlaneDataInterface') as "user_plane_data_interface",
json_extract_path_text(properties, '$.dnsAddresses') as "dns_addresses",
json_extract_path_text(properties, '$.naptConfiguration') as "napt_configuration",
json_extract_path_text(properties, '$.userEquipmentAddressPoolPrefix') as "user_equipment_address_pool_prefix",
json_extract_path_text(properties, '$.userEquipmentStaticAddressPoolPrefix') as "user_equipment_static_address_pool_prefix",
subscriptionId,
resourceGroupName,
packetCoreControlPlaneName,
packetCoreDataPlaneName,
attachedDataNetworkName
FROM azure.mobile_network.attached_data_networks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND packetCoreControlPlaneName = 'replace-me' AND packetCoreDataPlaneName = 'replace-me';