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