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

NameDatatypeDescription
identityobjectManaged service identity (User assigned identity)
locationstringThe geo-location where the resource lives
propertiesobjectSIM group properties.
tagsobjectResource tags.

Methods

NameAccessible byRequired ParamsDescription
listSELECTmobileNetworkName, resourceGroupName, subscriptionIdGets all the SIM groups assigned to a mobile network.

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 mobileNetworkName = '{{ mobileNetworkName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';