vw_extended_ue_information
Creates, updates, deletes, gets or lists a vw_extended_ue_information
resource.
Overview
Name | vw_extended_ue_information |
Type | View |
Id | azure.mobile_network.vw_extended_ue_information |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.ratType') as "rat_type",
JSON_EXTRACT(properties, '$.lastReadAt') as "last_read_at",
subscriptionId,
resourceGroupName,
packetCoreControlPlaneName,
ueId
FROM azure.mobile_network.extended_ue_information
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND packetCoreControlPlaneName = 'replace-me' AND ueId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.ratType') as "rat_type",
json_extract_path_text(properties, '$.lastReadAt') as "last_read_at",
subscriptionId,
resourceGroupName,
packetCoreControlPlaneName,
ueId
FROM azure.mobile_network.extended_ue_information
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND packetCoreControlPlaneName = 'replace-me' AND ueId = 'replace-me';