Skip to main content

extended_ue_information

Creates, updates, deletes, gets or lists an extended_ue_information resource.

Overview

Nameextended_ue_information
TypeResource
Idazure.mobile_network.extended_ue_information

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns the complete information of a UE in a packet core.

NameDatatypeDescription
propertiesobjectExtended UE Information Properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, packetCoreControlPlaneName, ueIdGets extended information about the specified UE from the packet core.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
packetCoreControlPlaneNamestringThe name of the packet core control plane.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
ueIdstringIMSI of a UE.

SELECT examples

Gets extended information about the specified UE from the packet core.

SELECT
properties
FROM azure.mobile_network.extended_ue_information
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND packetCoreControlPlaneName = '{{ packetCoreControlPlaneName }}' -- required
AND ueId = '{{ ueId }}' -- required
;