Skip to main content

ue_information

Creates, updates, deletes, gets or lists a ue_information resource.

Overview

Nameue_information
TypeResource
Idazure.mobile_network.ue_information

Fields

The following fields are returned by SELECT queries:

Request Successful. This operation return list of UEs and their state in a packet core.

NameDatatypeDescription
propertiesobjectBasic UE Information Properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, packetCoreControlPlaneNameList 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.

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.

SELECT examples

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
;