Microsoft.MobileNetwork mobileNetworks 2023-06-01
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@2023-06-01' = {
location: 'string'
name: 'string'
properties: {
publicLandMobileNetworkIdentifier: {
mcc: 'string'
mnc: 'string'
}
}
tags: {
{customized property}: 'string'
}
}
Property values
Microsoft.MobileNetwork/mobileNetworks
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Max length = Pattern = ^[a-zA-Z0-9][a-zA-Z0-9_-]*$ (required) |
properties | Mobile network properties. | MobileNetworkPropertiesFormat (required) |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
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 Constraints: Pattern = ^\d{3}$ (required) |
mnc | Mobile network code (MNC). | string Constraints: Pattern = ^\d{2,3}$ (required) |
TrackedResourceTags
Name | Description | Value |
---|
Quickstart samples
The following quickstart samples deploy this resource type.
Bicep File | 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": "2023-06-01",
"name": "string",
"location": "string",
"properties": {
"publicLandMobileNetworkIdentifier": {
"mcc": "string",
"mnc": "string"
}
},
"tags": {
"{customized property}": "string"
}
}
Property values
Microsoft.MobileNetwork/mobileNetworks
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2023-06-01' |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Max length = Pattern = ^[a-zA-Z0-9][a-zA-Z0-9_-]*$ (required) |
properties | Mobile network properties. | MobileNetworkPropertiesFormat (required) |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.MobileNetwork/mobileNetworks' |
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 Constraints: Pattern = ^\d{3}$ (required) |
mnc | Mobile network code (MNC). | string Constraints: Pattern = ^\d{2,3}$ (required) |
TrackedResourceTags
Name | Description | Value |
---|
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@2023-06-01"
name = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
publicLandMobileNetworkIdentifier = {
mcc = "string"
mnc = "string"
}
}
})
}
Property values
Microsoft.MobileNetwork/mobileNetworks
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string Constraints: Max length = Pattern = ^[a-zA-Z0-9][a-zA-Z0-9_-]*$ (required) |
properties | Mobile network properties. | MobileNetworkPropertiesFormat (required) |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.MobileNetwork/mobileNetworks@2023-06-01" |
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 Constraints: Pattern = ^\d{3}$ (required) |
mnc | Mobile network code (MNC). | string Constraints: Pattern = ^\d{2,3}$ (required) |
TrackedResourceTags
Name | Description | Value |
---|