Microsoft.MobileNetwork mobileNetworks 2022-04-01-preview
Bicep resource definition
The mobileNetworks resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.MobileNetwork/mobileNetworks resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.MobileNetwork/mobileNetworks@2022-04-01-preview' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
properties: {
publicLandMobileNetworkIdentifier: {
mcc: 'string'
mnc: 'string'
}
}
}
Property values
mobileNetworks
Name | Description | Value |
---|---|---|
name | The resource name | string (required) Character limit: 1-64 Valid characters: Alphanumerics and hyphens. Start with alphanumeric. |
location | The geo-location where the resource lives | string (required) |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
properties | Mobile network properties. | MobileNetworkPropertiesFormat (required) |
MobileNetworkPropertiesFormat
Name | Description | Value |
---|---|---|
publicLandMobileNetworkIdentifier | The unique public land mobile network identifier for the network. This is made up of the mobile country code and mobile network code, as defined in https://www.itu.int/rec/T-REC-E.212 . The values 001-01 and 001-001 can be used for testing and the values 999-99 and 999-999 can be used on internal private networks. |
PlmnId (required) |
PlmnId
Name | Description | Value |
---|---|---|
mcc | Mobile country code (MCC). | string (required) Constraints: Pattern = ^\d{3}$ |
mnc | Mobile network code (MNC). | string (required) Constraints: Pattern = ^\d{2,3}$ |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Create a full 5G Core deployment |
This template creates all resources required to deploy a Private 5G Core, including provisioning sims and creating sample QoS policy. It can optionally be deployed to a Kubernetes cluster running on an Azure Stack Edge device. |
Create a private mobile network |
This template creates a mobile network resource with an associated slice and data network. You can then use other templates in this repository to create sites for running the Private 5G Core software and provision sims and sim policies.. |
Update a packet core control plane |
This template allows you to update the version of an existing packet core. |
ARM template resource definition
The mobileNetworks resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.MobileNetwork/mobileNetworks resource, add the following JSON to your template.
{
"type": "Microsoft.MobileNetwork/mobileNetworks",
"apiVersion": "2022-04-01-preview",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"properties": {
"publicLandMobileNetworkIdentifier": {
"mcc": "string",
"mnc": "string"
}
}
}
Property values
mobileNetworks
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.MobileNetwork/mobileNetworks' |
apiVersion | The resource api version | '2022-04-01-preview' |
name | The resource name | string (required) Character limit: 1-64 Valid characters: Alphanumerics and hyphens. Start with alphanumeric. |
location | The geo-location where the resource lives | string (required) |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
properties | Mobile network properties. | MobileNetworkPropertiesFormat (required) |
MobileNetworkPropertiesFormat
Name | Description | Value |
---|---|---|
publicLandMobileNetworkIdentifier | The unique public land mobile network identifier for the network. This is made up of the mobile country code and mobile network code, as defined in https://www.itu.int/rec/T-REC-E.212 . The values 001-01 and 001-001 can be used for testing and the values 999-99 and 999-999 can be used on internal private networks. |
PlmnId (required) |
PlmnId
Name | Description | Value |
---|---|---|
mcc | Mobile country code (MCC). | string (required) Constraints: Pattern = ^\d{3}$ |
mnc | Mobile network code (MNC). | string (required) Constraints: Pattern = ^\d{2,3}$ |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Create a full 5G Core deployment |
This template creates all resources required to deploy a Private 5G Core, including provisioning sims and creating sample QoS policy. It can optionally be deployed to a Kubernetes cluster running on an Azure Stack Edge device. |
Create a private mobile network |
This template creates a mobile network resource with an associated slice and data network. You can then use other templates in this repository to create sites for running the Private 5G Core software and provision sims and sim policies.. |
Update a packet core control plane |
This template allows you to update the version of an existing packet core. |
Terraform (AzAPI provider) resource definition
The mobileNetworks resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.MobileNetwork/mobileNetworks resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.MobileNetwork/mobileNetworks@2022-04-01-preview"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
publicLandMobileNetworkIdentifier = {
mcc = "string"
mnc = "string"
}
}
})
}
Property values
mobileNetworks
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.MobileNetwork/mobileNetworks@2022-04-01-preview" |
name | The resource name | string (required) Character limit: 1-64 Valid characters: Alphanumerics and hyphens. Start with alphanumeric. |
location | The geo-location where the resource lives | string (required) |
parent_id | To deploy to a resource group, use the ID of that resource group. | string (required) |
tags | Resource tags. | Dictionary of tag names and values. |
properties | Mobile network properties. | MobileNetworkPropertiesFormat (required) |
MobileNetworkPropertiesFormat
Name | Description | Value |
---|---|---|
publicLandMobileNetworkIdentifier | The unique public land mobile network identifier for the network. This is made up of the mobile country code and mobile network code, as defined in https://www.itu.int/rec/T-REC-E.212 . The values 001-01 and 001-001 can be used for testing and the values 999-99 and 999-999 can be used on internal private networks. |
PlmnId (required) |
PlmnId
Name | Description | Value |
---|---|---|
mcc | Mobile country code (MCC). | string (required) Constraints: Pattern = ^\d{3}$ |
mnc | Mobile network code (MNC). | string (required) Constraints: Pattern = ^\d{2,3}$ |