mobile_networks_sim_groups
Creates, updates, deletes, gets or lists a mobile_networks_sim_groups
resource.
Overview
Name | mobile_networks_sim_groups |
Type | Resource |
Id | azure.mobile_network.mobile_networks_sim_groups |
Fields
The following fields are returned by SELECT
queries:
- list
Request successful. The operation returns a list of SIM group resources.
Name | Datatype | Description |
---|---|---|
identity | object | The identity used to retrieve the encryption key from Azure key vault. |
location | string | The geo-location where the resource lives |
properties | object | SIM group Properties. |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , subscriptionId , mobileNetworkName | Gets 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.
Name | Datatype | Description |
---|---|---|
mobileNetworkName | string | The name of the mobile network. |
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
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
;