routing_info
Creates, updates, deletes, gets or lists a routing_info
resource.
Overview
Name | routing_info |
Type | Resource |
Id | azure.mobile_network.routing_info |
Fields
The following fields are returned by SELECT
queries:
- list
- get
Request successful. The operation returns a list of the routing information for the packet core.
Name | Datatype | Description |
---|---|---|
properties | object | Routing information properties |
Request successful. The operation returns the routing information for the packet core.
Name | Datatype | Description |
---|---|---|
properties | object | Routing information properties |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , packetCoreControlPlaneName , subscriptionId | List all of the routing information for the packet core. | |
get | select | resourceGroupName , packetCoreControlPlaneName , subscriptionId | Get 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.
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
- get
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
;
Get 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
;