extended_ue_information
Creates, updates, deletes, gets or lists an extended_ue_information
resource.
Overview
Name | extended_ue_information |
Type | Resource |
Id | azure.mobile_network.extended_ue_information |
Fields
The following fields are returned by SELECT
queries:
- get
Request successful. The operation returns the complete information of a UE in a packet core.
Name | Datatype | Description |
---|---|---|
properties | object | Extended UE Information Properties. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , packetCoreControlPlaneName , ueId | Gets 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.
Name | Datatype | Description |
---|---|---|
packetCoreControlPlaneName | string | The name of the packet core control plane. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
ueId | string | IMSI of a UE. |
SELECT
examples
- get
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
;