Skip to main content

routing_info

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

Overview

Namerouting_info
TypeResource
Idazure.mobile_network.routing_info

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns a list of the routing information for the packet core.

NameDatatypeDescription
propertiesobjectRouting information properties

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, packetCoreControlPlaneName, subscriptionIdList all of the routing information for the packet core.
getselectresourceGroupName, packetCoreControlPlaneName, subscriptionIdGet the routing information for 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.

SELECT examples

List all of the routing information for the packet core.

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