Skip to main content

mobile_networks_sim_groups

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

Overview

Namemobile_networks_sim_groups
TypeResource
Idazure.mobile_network.mobile_networks_sim_groups

Fields

The following fields are returned by SELECT queries:

Request successful. The operation returns a list of SIM group resources.

NameDatatypeDescription
identityobjectThe identity used to retrieve the encryption key from Azure key vault.
locationstringThe geo-location where the resource lives
propertiesobjectSIM group Properties.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, subscriptionId, mobileNetworkNameGets all the SIM groups assigned to a mobile network.

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
mobileNetworkNamestringThe name of the mobile network.
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

Gets all the SIM groups assigned to a mobile network.

SELECT
identity,
location,
properties,
tags
FROM azure.mobile_network.mobile_networks_sim_groups
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND mobileNetworkName = '{{ mobileNetworkName }}' -- required
;