extended_ue_information
Creates, updates, deletes, gets or lists a extended_ue_information
resource.
Overview
Name | extended_ue_information |
Type | Resource |
Id | azure.mobile_network.extended_ue_information |
Fields
- vw_extended_ue_information
- extended_ue_information
Name | Datatype | Description |
---|---|---|
last_read_at | text | field from the properties object |
packetCoreControlPlaneName | text | field from the properties object |
rat_type | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
ueId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Extended UE Information Properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | packetCoreControlPlaneName, resourceGroupName, subscriptionId, ueId | Gets extended information about the specified UE from the packet core. |
SELECT
examples
Gets extended information about the specified UE from the packet core.
- vw_extended_ue_information
- extended_ue_information
SELECT
last_read_at,
packetCoreControlPlaneName,
rat_type,
resourceGroupName,
subscriptionId,
ueId
FROM azure.mobile_network.vw_extended_ue_information
WHERE packetCoreControlPlaneName = '{{ packetCoreControlPlaneName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND ueId = '{{ ueId }}';
SELECT
properties
FROM azure.mobile_network.extended_ue_information
WHERE packetCoreControlPlaneName = '{{ packetCoreControlPlaneName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND ueId = '{{ ueId }}';