packet_core_control_plane_versions
Creates, updates, deletes, gets or lists a packet_core_control_plane_versions
resource.
Overview
Name | packet_core_control_plane_versions |
Type | Resource |
Id | azure.mobile_network.packet_core_control_plane_versions |
Fields
The following fields are returned by SELECT
queries:
- get_by_subscription
- get
- list_by_subscription
- list
Request successful. The operation returns the resulting packet core control plane version resource.
Name | Datatype | Description |
---|---|---|
properties | object | Packet core control plane version properties. |
Request successful. The operation returns the resulting packet core control plane version resource.
Name | Datatype | Description |
---|---|---|
properties | object | Packet core control plane version properties. |
Get supported packet core control plane versions successful.
Name | Datatype | Description |
---|---|---|
properties | object | Packet core control plane version properties. |
Get supported packet core control plane versions successful.
Name | Datatype | Description |
---|---|---|
properties | object | Packet core control plane version properties. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_by_subscription | select | versionName , subscriptionId | Gets information about the specified packet core control plane version. | |
get | select | versionName | Gets information about the specified packet core control plane version. | |
list_by_subscription | select | subscriptionId | Lists all supported packet core control planes versions. | |
list | select | Lists all supported packet core control planes versions. |
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 |
---|---|---|
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
versionName | string | The name of the packet core control plane version. |
SELECT
examples
- get_by_subscription
- get
- list_by_subscription
- list
Gets information about the specified packet core control plane version.
SELECT
properties
FROM azure.mobile_network.packet_core_control_plane_versions
WHERE versionName = '{{ versionName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Gets information about the specified packet core control plane version.
SELECT
properties
FROM azure.mobile_network.packet_core_control_plane_versions
WHERE versionName = '{{ versionName }}' -- required
;
Lists all supported packet core control planes versions.
SELECT
properties
FROM azure.mobile_network.packet_core_control_plane_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
Lists all supported packet core control planes versions.
SELECT
properties
FROM azure.mobile_network.packet_core_control_plane_versions
;