We recommend using Azure Native.
azure.mobile.NetworkAttachedDataNetwork
Explore with Pulumi AI
Manages a Mobile Network Attached Data Network.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleDevice:
    type: azure:databoxedge:Device
    name: example
    properties:
      name: example-device
      resourceGroupName: ${example.name}
      location: ${example.location}
      skuName: EdgeP_Base-Standard
  exampleNetwork:
    type: azure:mobile:Network
    name: example
    properties:
      name: example-mn
      resourceGroupName: ${example.name}
      location: ${example.location}
      mobileCountryCode: '001'
      mobileNetworkCode: '01'
  exampleNetworkPacketCoreControlPlane:
    type: azure:mobile:NetworkPacketCoreControlPlane
    name: example
    properties:
      name: example-mnpccp
      resourceGroupName: ${example.name}
      location: West Europe
      sku: G0
      mobileNetworkId: ${exampleNetwork.id}
      controlPlaneAccessName: default-interface
      controlPlaneAccessIpv4Address: 192.168.1.199
      controlPlaneAccessIpv4Gateway: 192.168.1.1
      controlPlaneAccessIpv4Subnet: 192.168.1.0/25
      platform:
        type: AKS-HCI
        edgeDeviceId: ${exampleDevice.id}
  exampleNetworkPacketCoreDataPlane:
    type: azure:mobile:NetworkPacketCoreDataPlane
    name: example
    properties:
      name: example-mnpcdp
      mobileNetworkPacketCoreControlPlaneId: ${exampleNetworkPacketCoreControlPlane.id}
      location: ${example.location}
      userPlaneAccessName: default-interface
      userPlaneAccessIpv4Address: 192.168.1.199
      userPlaneAccessIpv4Gateway: 192.168.1.1
      userPlaneAccessIpv4Subnet: 192.168.1.0/25
  exampleNetworkDataNetwork:
    type: azure:mobile:NetworkDataNetwork
    name: example
    properties:
      name: example-data-network
      mobileNetworkId: ${exampleNetwork.id}
      location: ${example.location}
  exampleNetworkAttachedDataNetwork:
    type: azure:mobile:NetworkAttachedDataNetwork
    name: example
    properties:
      mobileNetworkDataNetworkName: ${exampleNetworkDataNetwork.name}
      mobileNetworkPacketCoreDataPlaneId: ${exampleNetworkPacketCoreDataPlane.id}
      location: ${example.location}
      dnsAddresses:
        - 1.1.1.1
      userEquipmentAddressPoolPrefixes:
        - 2.4.1.0/24
      userEquipmentStaticAddressPoolPrefixes:
        - 2.4.2.0/24
      userPlaneAccessName: test
      userPlaneAccessIpv4Address: 10.204.141.4
      userPlaneAccessIpv4Gateway: 10.204.141.1
      userPlaneAccessIpv4Subnet: 10.204.141.0/24
      networkAddressPortTranslation:
        pinholeMaximumNumber: 65536
        icmpPinholeTimeoutInSeconds: 30
        tcpPinholeTimeoutInSeconds: 100
        udpPinholeTimeoutInSeconds: 39
        portRange:
          maximum: 49999
          minimum: 1024
        tcpPortReuseMinimumHoldTimeInSeconds: 120
        udpTcpPortReuseMinimumHoldTimeInSeconds: 60
      tags:
        key: value
Create NetworkAttachedDataNetwork Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkAttachedDataNetwork(name: string, args: NetworkAttachedDataNetworkArgs, opts?: CustomResourceOptions);@overload
def NetworkAttachedDataNetwork(resource_name: str,
                               args: NetworkAttachedDataNetworkArgs,
                               opts: Optional[ResourceOptions] = None)
@overload
def NetworkAttachedDataNetwork(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               dns_addresses: Optional[Sequence[str]] = None,
                               mobile_network_data_network_name: Optional[str] = None,
                               mobile_network_packet_core_data_plane_id: Optional[str] = None,
                               location: Optional[str] = None,
                               network_address_port_translation: Optional[NetworkAttachedDataNetworkNetworkAddressPortTranslationArgs] = None,
                               tags: Optional[Mapping[str, str]] = None,
                               user_equipment_address_pool_prefixes: Optional[Sequence[str]] = None,
                               user_equipment_static_address_pool_prefixes: Optional[Sequence[str]] = None,
                               user_plane_access_ipv4_address: Optional[str] = None,
                               user_plane_access_ipv4_gateway: Optional[str] = None,
                               user_plane_access_ipv4_subnet: Optional[str] = None,
                               user_plane_access_name: Optional[str] = None)func NewNetworkAttachedDataNetwork(ctx *Context, name string, args NetworkAttachedDataNetworkArgs, opts ...ResourceOption) (*NetworkAttachedDataNetwork, error)public NetworkAttachedDataNetwork(string name, NetworkAttachedDataNetworkArgs args, CustomResourceOptions? opts = null)
public NetworkAttachedDataNetwork(String name, NetworkAttachedDataNetworkArgs args)
public NetworkAttachedDataNetwork(String name, NetworkAttachedDataNetworkArgs args, CustomResourceOptions options)
type: azure:mobile:NetworkAttachedDataNetwork
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NetworkAttachedDataNetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NetworkAttachedDataNetworkArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NetworkAttachedDataNetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkAttachedDataNetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkAttachedDataNetworkArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var networkAttachedDataNetworkResource = new Azure.Mobile.NetworkAttachedDataNetwork("networkAttachedDataNetworkResource", new()
{
    DnsAddresses = new[]
    {
        "string",
    },
    MobileNetworkDataNetworkName = "string",
    MobileNetworkPacketCoreDataPlaneId = "string",
    Location = "string",
    NetworkAddressPortTranslation = new Azure.Mobile.Inputs.NetworkAttachedDataNetworkNetworkAddressPortTranslationArgs
    {
        IcmpPinholeTimeoutInSeconds = 0,
        PinholeMaximumNumber = 0,
        PortRange = new Azure.Mobile.Inputs.NetworkAttachedDataNetworkNetworkAddressPortTranslationPortRangeArgs
        {
            Maximum = 0,
            Minimum = 0,
        },
        TcpPinholeTimeoutInSeconds = 0,
        TcpPortReuseMinimumHoldTimeInSeconds = 0,
        UdpPinholeTimeoutInSeconds = 0,
        UdpPortReuseMinimumHoldTimeInSeconds = 0,
    },
    Tags = 
    {
        { "string", "string" },
    },
    UserEquipmentAddressPoolPrefixes = new[]
    {
        "string",
    },
    UserEquipmentStaticAddressPoolPrefixes = new[]
    {
        "string",
    },
    UserPlaneAccessIpv4Address = "string",
    UserPlaneAccessIpv4Gateway = "string",
    UserPlaneAccessIpv4Subnet = "string",
    UserPlaneAccessName = "string",
});
example, err := mobile.NewNetworkAttachedDataNetwork(ctx, "networkAttachedDataNetworkResource", &mobile.NetworkAttachedDataNetworkArgs{
	DnsAddresses: pulumi.StringArray{
		pulumi.String("string"),
	},
	MobileNetworkDataNetworkName:       pulumi.String("string"),
	MobileNetworkPacketCoreDataPlaneId: pulumi.String("string"),
	Location:                           pulumi.String("string"),
	NetworkAddressPortTranslation: &mobile.NetworkAttachedDataNetworkNetworkAddressPortTranslationArgs{
		IcmpPinholeTimeoutInSeconds: pulumi.Int(0),
		PinholeMaximumNumber:        pulumi.Int(0),
		PortRange: &mobile.NetworkAttachedDataNetworkNetworkAddressPortTranslationPortRangeArgs{
			Maximum: pulumi.Int(0),
			Minimum: pulumi.Int(0),
		},
		TcpPinholeTimeoutInSeconds:           pulumi.Int(0),
		TcpPortReuseMinimumHoldTimeInSeconds: pulumi.Int(0),
		UdpPinholeTimeoutInSeconds:           pulumi.Int(0),
		UdpPortReuseMinimumHoldTimeInSeconds: pulumi.Int(0),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	UserEquipmentAddressPoolPrefixes: pulumi.StringArray{
		pulumi.String("string"),
	},
	UserEquipmentStaticAddressPoolPrefixes: pulumi.StringArray{
		pulumi.String("string"),
	},
	UserPlaneAccessIpv4Address: pulumi.String("string"),
	UserPlaneAccessIpv4Gateway: pulumi.String("string"),
	UserPlaneAccessIpv4Subnet:  pulumi.String("string"),
	UserPlaneAccessName:        pulumi.String("string"),
})
var networkAttachedDataNetworkResource = new NetworkAttachedDataNetwork("networkAttachedDataNetworkResource", NetworkAttachedDataNetworkArgs.builder()
    .dnsAddresses("string")
    .mobileNetworkDataNetworkName("string")
    .mobileNetworkPacketCoreDataPlaneId("string")
    .location("string")
    .networkAddressPortTranslation(NetworkAttachedDataNetworkNetworkAddressPortTranslationArgs.builder()
        .icmpPinholeTimeoutInSeconds(0)
        .pinholeMaximumNumber(0)
        .portRange(NetworkAttachedDataNetworkNetworkAddressPortTranslationPortRangeArgs.builder()
            .maximum(0)
            .minimum(0)
            .build())
        .tcpPinholeTimeoutInSeconds(0)
        .tcpPortReuseMinimumHoldTimeInSeconds(0)
        .udpPinholeTimeoutInSeconds(0)
        .udpPortReuseMinimumHoldTimeInSeconds(0)
        .build())
    .tags(Map.of("string", "string"))
    .userEquipmentAddressPoolPrefixes("string")
    .userEquipmentStaticAddressPoolPrefixes("string")
    .userPlaneAccessIpv4Address("string")
    .userPlaneAccessIpv4Gateway("string")
    .userPlaneAccessIpv4Subnet("string")
    .userPlaneAccessName("string")
    .build());
network_attached_data_network_resource = azure.mobile.NetworkAttachedDataNetwork("networkAttachedDataNetworkResource",
    dns_addresses=["string"],
    mobile_network_data_network_name="string",
    mobile_network_packet_core_data_plane_id="string",
    location="string",
    network_address_port_translation={
        "icmp_pinhole_timeout_in_seconds": 0,
        "pinhole_maximum_number": 0,
        "port_range": {
            "maximum": 0,
            "minimum": 0,
        },
        "tcp_pinhole_timeout_in_seconds": 0,
        "tcp_port_reuse_minimum_hold_time_in_seconds": 0,
        "udp_pinhole_timeout_in_seconds": 0,
        "udp_port_reuse_minimum_hold_time_in_seconds": 0,
    },
    tags={
        "string": "string",
    },
    user_equipment_address_pool_prefixes=["string"],
    user_equipment_static_address_pool_prefixes=["string"],
    user_plane_access_ipv4_address="string",
    user_plane_access_ipv4_gateway="string",
    user_plane_access_ipv4_subnet="string",
    user_plane_access_name="string")
const networkAttachedDataNetworkResource = new azure.mobile.NetworkAttachedDataNetwork("networkAttachedDataNetworkResource", {
    dnsAddresses: ["string"],
    mobileNetworkDataNetworkName: "string",
    mobileNetworkPacketCoreDataPlaneId: "string",
    location: "string",
    networkAddressPortTranslation: {
        icmpPinholeTimeoutInSeconds: 0,
        pinholeMaximumNumber: 0,
        portRange: {
            maximum: 0,
            minimum: 0,
        },
        tcpPinholeTimeoutInSeconds: 0,
        tcpPortReuseMinimumHoldTimeInSeconds: 0,
        udpPinholeTimeoutInSeconds: 0,
        udpPortReuseMinimumHoldTimeInSeconds: 0,
    },
    tags: {
        string: "string",
    },
    userEquipmentAddressPoolPrefixes: ["string"],
    userEquipmentStaticAddressPoolPrefixes: ["string"],
    userPlaneAccessIpv4Address: "string",
    userPlaneAccessIpv4Gateway: "string",
    userPlaneAccessIpv4Subnet: "string",
    userPlaneAccessName: "string",
});
type: azure:mobile:NetworkAttachedDataNetwork
properties:
    dnsAddresses:
        - string
    location: string
    mobileNetworkDataNetworkName: string
    mobileNetworkPacketCoreDataPlaneId: string
    networkAddressPortTranslation:
        icmpPinholeTimeoutInSeconds: 0
        pinholeMaximumNumber: 0
        portRange:
            maximum: 0
            minimum: 0
        tcpPinholeTimeoutInSeconds: 0
        tcpPortReuseMinimumHoldTimeInSeconds: 0
        udpPinholeTimeoutInSeconds: 0
        udpPortReuseMinimumHoldTimeInSeconds: 0
    tags:
        string: string
    userEquipmentAddressPoolPrefixes:
        - string
    userEquipmentStaticAddressPoolPrefixes:
        - string
    userPlaneAccessIpv4Address: string
    userPlaneAccessIpv4Gateway: string
    userPlaneAccessIpv4Subnet: string
    userPlaneAccessName: string
NetworkAttachedDataNetwork Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The NetworkAttachedDataNetwork resource accepts the following input properties:
- DnsAddresses List<string>
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- MobileNetwork stringData Network Name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- MobileNetwork stringPacket Core Data Plane Id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- Location string
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- NetworkAddress NetworkPort Translation Attached Data Network Network Address Port Translation 
- A network_address_port_translationblock as defined below.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- UserEquipment List<string>Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- UserEquipment List<string>Static Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- UserPlane stringAccess Ipv4Address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Ipv4Gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Ipv4Subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- DnsAddresses []string
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- MobileNetwork stringData Network Name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- MobileNetwork stringPacket Core Data Plane Id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- Location string
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- NetworkAddress NetworkPort Translation Attached Data Network Network Address Port Translation Args 
- A network_address_port_translationblock as defined below.
- map[string]string
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- UserEquipment []stringAddress Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- UserEquipment []stringStatic Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- UserPlane stringAccess Ipv4Address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Ipv4Gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Ipv4Subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- dnsAddresses List<String>
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- mobileNetwork StringData Network Name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- mobileNetwork StringPacket Core Data Plane Id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- location String
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- networkAddress NetworkPort Translation Attached Data Network Network Address Port Translation 
- A network_address_port_translationblock as defined below.
- Map<String,String>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- userEquipment List<String>Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- userEquipment List<String>Static Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- userPlane StringAccess Ipv4Address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Ipv4Gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Ipv4Subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- dnsAddresses string[]
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- mobileNetwork stringData Network Name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- mobileNetwork stringPacket Core Data Plane Id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- location string
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- networkAddress NetworkPort Translation Attached Data Network Network Address Port Translation 
- A network_address_port_translationblock as defined below.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- userEquipment string[]Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- userEquipment string[]Static Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- userPlane stringAccess Ipv4Address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane stringAccess Ipv4Gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane stringAccess Ipv4Subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane stringAccess Name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- dns_addresses Sequence[str]
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- mobile_network_ strdata_ network_ name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- mobile_network_ strpacket_ core_ data_ plane_ id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- location str
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- network_address_ Networkport_ translation Attached Data Network Network Address Port Translation Args 
- A network_address_port_translationblock as defined below.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- user_equipment_ Sequence[str]address_ pool_ prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- user_equipment_ Sequence[str]static_ address_ pool_ prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- user_plane_ straccess_ ipv4_ address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- user_plane_ straccess_ ipv4_ gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- user_plane_ straccess_ ipv4_ subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- user_plane_ straccess_ name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- dnsAddresses List<String>
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- mobileNetwork StringData Network Name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- mobileNetwork StringPacket Core Data Plane Id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- location String
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- networkAddress Property MapPort Translation 
- A network_address_port_translationblock as defined below.
- Map<String>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- userEquipment List<String>Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- userEquipment List<String>Static Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- userPlane StringAccess Ipv4Address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Ipv4Gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Ipv4Subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkAttachedDataNetwork resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing NetworkAttachedDataNetwork Resource
Get an existing NetworkAttachedDataNetwork resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NetworkAttachedDataNetworkState, opts?: CustomResourceOptions): NetworkAttachedDataNetwork@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        dns_addresses: Optional[Sequence[str]] = None,
        location: Optional[str] = None,
        mobile_network_data_network_name: Optional[str] = None,
        mobile_network_packet_core_data_plane_id: Optional[str] = None,
        network_address_port_translation: Optional[NetworkAttachedDataNetworkNetworkAddressPortTranslationArgs] = None,
        tags: Optional[Mapping[str, str]] = None,
        user_equipment_address_pool_prefixes: Optional[Sequence[str]] = None,
        user_equipment_static_address_pool_prefixes: Optional[Sequence[str]] = None,
        user_plane_access_ipv4_address: Optional[str] = None,
        user_plane_access_ipv4_gateway: Optional[str] = None,
        user_plane_access_ipv4_subnet: Optional[str] = None,
        user_plane_access_name: Optional[str] = None) -> NetworkAttachedDataNetworkfunc GetNetworkAttachedDataNetwork(ctx *Context, name string, id IDInput, state *NetworkAttachedDataNetworkState, opts ...ResourceOption) (*NetworkAttachedDataNetwork, error)public static NetworkAttachedDataNetwork Get(string name, Input<string> id, NetworkAttachedDataNetworkState? state, CustomResourceOptions? opts = null)public static NetworkAttachedDataNetwork get(String name, Output<String> id, NetworkAttachedDataNetworkState state, CustomResourceOptions options)resources:  _:    type: azure:mobile:NetworkAttachedDataNetwork    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- DnsAddresses List<string>
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- Location string
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- MobileNetwork stringData Network Name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- MobileNetwork stringPacket Core Data Plane Id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- NetworkAddress NetworkPort Translation Attached Data Network Network Address Port Translation 
- A network_address_port_translationblock as defined below.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- UserEquipment List<string>Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- UserEquipment List<string>Static Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- UserPlane stringAccess Ipv4Address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Ipv4Gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Ipv4Subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- DnsAddresses []string
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- Location string
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- MobileNetwork stringData Network Name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- MobileNetwork stringPacket Core Data Plane Id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- NetworkAddress NetworkPort Translation Attached Data Network Network Address Port Translation Args 
- A network_address_port_translationblock as defined below.
- map[string]string
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- UserEquipment []stringAddress Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- UserEquipment []stringStatic Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- UserPlane stringAccess Ipv4Address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Ipv4Gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Ipv4Subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- UserPlane stringAccess Name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- dnsAddresses List<String>
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- location String
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- mobileNetwork StringData Network Name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- mobileNetwork StringPacket Core Data Plane Id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- networkAddress NetworkPort Translation Attached Data Network Network Address Port Translation 
- A network_address_port_translationblock as defined below.
- Map<String,String>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- userEquipment List<String>Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- userEquipment List<String>Static Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- userPlane StringAccess Ipv4Address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Ipv4Gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Ipv4Subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- dnsAddresses string[]
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- location string
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- mobileNetwork stringData Network Name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- mobileNetwork stringPacket Core Data Plane Id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- networkAddress NetworkPort Translation Attached Data Network Network Address Port Translation 
- A network_address_port_translationblock as defined below.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- userEquipment string[]Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- userEquipment string[]Static Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- userPlane stringAccess Ipv4Address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane stringAccess Ipv4Gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane stringAccess Ipv4Subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane stringAccess Name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- dns_addresses Sequence[str]
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- location str
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- mobile_network_ strdata_ network_ name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- mobile_network_ strpacket_ core_ data_ plane_ id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- network_address_ Networkport_ translation Attached Data Network Network Address Port Translation Args 
- A network_address_port_translationblock as defined below.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- user_equipment_ Sequence[str]address_ pool_ prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- user_equipment_ Sequence[str]static_ address_ pool_ prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- user_plane_ straccess_ ipv4_ address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- user_plane_ straccess_ ipv4_ gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- user_plane_ straccess_ ipv4_ subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- user_plane_ straccess_ name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- dnsAddresses List<String>
- Specifies the DNS servers to signal to UEs to use for this attached data network.
- location String
- Specifies the Azure Region where the Mobile Network Attached Data Network should exist. Changing this forces a new Mobile Network Attached Data Network to be created.
- mobileNetwork StringData Network Name 
- Specifies the name of the azure.mobile.NetworkDataNetworkwhich the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created.
- mobileNetwork StringPacket Core Data Plane Id 
- Specifies the ID of the azure.mobile.NetworkPacketCoreDataPlanewhich the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created.
- networkAddress Property MapPort Translation 
- A network_address_port_translationblock as defined below.
- Map<String>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- userEquipment List<String>Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will dynamically assign IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. At least one of user_equipment_address_pool_prefixesanduser_equipment_static_address_pool_prefix. If you define both, they must be of the same size.
- userEquipment List<String>Static Address Pool Prefixes 
- Specifies the user equipment (UE) address pool prefixes for the attached data network from which the packet core instance will assign static IP addresses to UEs. The packet core instance assigns an IP address to a UE when the UE sets up a PDU session. The static IP address for a specific UE is set in StaticIPConfiguration on the corresponding SIM resource. At least one of - user_equipment_address_pool_prefixand- user_equipment_static_address_pool_prefixes. If you define both, they must be of the same size.- Note: At least one of - user_equipment_address_pool_prefixesand- user_equipment_static_address_pool_prefixesmust be specified.
- userPlane StringAccess Ipv4Address 
- The IPv4 address for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Ipv4Gateway 
- The default IPv4 gateway for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Ipv4Subnet 
- The IPv4 subnet for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- userPlane StringAccess Name 
- Specifies the logical name for the user data plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
Supporting Types
NetworkAttachedDataNetworkNetworkAddressPortTranslation, NetworkAttachedDataNetworkNetworkAddressPortTranslationArgs                
- IcmpPinhole intTimeout In Seconds 
- Pinhole timeout for ICMP pinholes in seconds. Must between 1to180, Default to180.
- PinholeMaximum intNumber 
- Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface. Must be between 1 and 65536.
- PortRange NetworkAttached Data Network Network Address Port Translation Port Range 
- A port_rangeblock as defined below.
- TcpPinhole intTimeout In Seconds 
- Pinhole timeout for TCP pinholes in seconds. Must between 1to180, Default to180.
- TcpPort intReuse Minimum Hold Time In Seconds 
- Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Defaults to 120.
- UdpPinhole intTimeout In Seconds 
- Pinhole timeout for UDP pinholes in seconds. Must between 1to180, Default to180.
- UdpPort intReuse Minimum Hold Time In Seconds 
- Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Defaults to 60.
- IcmpPinhole intTimeout In Seconds 
- Pinhole timeout for ICMP pinholes in seconds. Must between 1to180, Default to180.
- PinholeMaximum intNumber 
- Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface. Must be between 1 and 65536.
- PortRange NetworkAttached Data Network Network Address Port Translation Port Range 
- A port_rangeblock as defined below.
- TcpPinhole intTimeout In Seconds 
- Pinhole timeout for TCP pinholes in seconds. Must between 1to180, Default to180.
- TcpPort intReuse Minimum Hold Time In Seconds 
- Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Defaults to 120.
- UdpPinhole intTimeout In Seconds 
- Pinhole timeout for UDP pinholes in seconds. Must between 1to180, Default to180.
- UdpPort intReuse Minimum Hold Time In Seconds 
- Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Defaults to 60.
- icmpPinhole IntegerTimeout In Seconds 
- Pinhole timeout for ICMP pinholes in seconds. Must between 1to180, Default to180.
- pinholeMaximum IntegerNumber 
- Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface. Must be between 1 and 65536.
- portRange NetworkAttached Data Network Network Address Port Translation Port Range 
- A port_rangeblock as defined below.
- tcpPinhole IntegerTimeout In Seconds 
- Pinhole timeout for TCP pinholes in seconds. Must between 1to180, Default to180.
- tcpPort IntegerReuse Minimum Hold Time In Seconds 
- Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Defaults to 120.
- udpPinhole IntegerTimeout In Seconds 
- Pinhole timeout for UDP pinholes in seconds. Must between 1to180, Default to180.
- udpPort IntegerReuse Minimum Hold Time In Seconds 
- Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Defaults to 60.
- icmpPinhole numberTimeout In Seconds 
- Pinhole timeout for ICMP pinholes in seconds. Must between 1to180, Default to180.
- pinholeMaximum numberNumber 
- Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface. Must be between 1 and 65536.
- portRange NetworkAttached Data Network Network Address Port Translation Port Range 
- A port_rangeblock as defined below.
- tcpPinhole numberTimeout In Seconds 
- Pinhole timeout for TCP pinholes in seconds. Must between 1to180, Default to180.
- tcpPort numberReuse Minimum Hold Time In Seconds 
- Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Defaults to 120.
- udpPinhole numberTimeout In Seconds 
- Pinhole timeout for UDP pinholes in seconds. Must between 1to180, Default to180.
- udpPort numberReuse Minimum Hold Time In Seconds 
- Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Defaults to 60.
- icmp_pinhole_ inttimeout_ in_ seconds 
- Pinhole timeout for ICMP pinholes in seconds. Must between 1to180, Default to180.
- pinhole_maximum_ intnumber 
- Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface. Must be between 1 and 65536.
- port_range NetworkAttached Data Network Network Address Port Translation Port Range 
- A port_rangeblock as defined below.
- tcp_pinhole_ inttimeout_ in_ seconds 
- Pinhole timeout for TCP pinholes in seconds. Must between 1to180, Default to180.
- tcp_port_ intreuse_ minimum_ hold_ time_ in_ seconds 
- Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Defaults to 120.
- udp_pinhole_ inttimeout_ in_ seconds 
- Pinhole timeout for UDP pinholes in seconds. Must between 1to180, Default to180.
- udp_port_ intreuse_ minimum_ hold_ time_ in_ seconds 
- Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Defaults to 60.
- icmpPinhole NumberTimeout In Seconds 
- Pinhole timeout for ICMP pinholes in seconds. Must between 1to180, Default to180.
- pinholeMaximum NumberNumber 
- Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface. Must be between 1 and 65536.
- portRange Property Map
- A port_rangeblock as defined below.
- tcpPinhole NumberTimeout In Seconds 
- Pinhole timeout for TCP pinholes in seconds. Must between 1to180, Default to180.
- tcpPort NumberReuse Minimum Hold Time In Seconds 
- Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Defaults to 120.
- udpPinhole NumberTimeout In Seconds 
- Pinhole timeout for UDP pinholes in seconds. Must between 1to180, Default to180.
- udpPort NumberReuse Minimum Hold Time In Seconds 
- Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Defaults to 60.
NetworkAttachedDataNetworkNetworkAddressPortTranslationPortRange, NetworkAttachedDataNetworkNetworkAddressPortTranslationPortRangeArgs                    
Import
Mobile Network Attached Data Network can be imported using the resource id, e.g.
$ pulumi import azure:mobile/networkAttachedDataNetwork:NetworkAttachedDataNetwork example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/packetCoreControlPlane1/packetCoreDataPlanes/packetCoreDataPlane1/attachedDataNetworks/attachedDataNetwork1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.