Skip to main content

packet_core_control_plane_versions

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

Overview

Namepacket_core_control_plane_versions
TypeResource
Idazure.mobile_network.packet_core_control_plane_versions

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns the resulting packet core control plane version resource.

NameDatatypeDescription
propertiesobjectPacket core control plane version properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_subscriptionselectversionName, subscriptionIdGets information about the specified packet core control plane version.
getselectversionNameGets information about the specified packet core control plane version.
list_by_subscriptionselectsubscriptionIdLists all supported packet core control planes versions.
listselectLists 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.

NameDatatypeDescription
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
versionNamestringThe name of the packet core control plane version.

SELECT examples

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
;