ue_information
Creates, updates, deletes, gets or lists a ue_information resource.
Overview
| Name | ue_information |
| Type | Resource |
| Id | azure.mobile_network.ue_information |
Fields
The following fields are returned by SELECT queries:
- list
Request Successful. This operation return list of UEs and their state in a packet core.
| Name | Datatype | Description |
|---|---|---|
properties | object | Basic UE Information Properties. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, packetCoreControlPlaneName | List all UEs and their state in a 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. |
SELECT examples
- list
List all UEs and their state in a packet core.
SELECT
properties
FROM azure.mobile_network.ue_information
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND packetCoreControlPlaneName = '{{ packetCoreControlPlaneName }}' -- required
;