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:
- Dns
Addresses List<string> - Specifies the DNS servers to signal to UEs to use for this attached data network.
- Mobile
Network stringData Network Name - Specifies the name of the
azure.mobile.NetworkDataNetwork
which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created. - Mobile
Network stringPacket Core Data Plane Id - Specifies the ID of the
azure.mobile.NetworkPacketCoreDataPlane
which 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.
- Network
Address NetworkPort Translation Attached Data Network Network Address Port Translation - A
network_address_port_translation
block as defined below. - Dictionary<string, string>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- User
Equipment 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_prefixes
anduser_equipment_static_address_pool_prefix
. If you define both, they must be of the same size. - User
Equipment 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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must be specified.- User
Plane 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.
- User
Plane 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.
- User
Plane 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.
- User
Plane 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 []string - Specifies the DNS servers to signal to UEs to use for this attached data network.
- Mobile
Network stringData Network Name - Specifies the name of the
azure.mobile.NetworkDataNetwork
which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created. - Mobile
Network stringPacket Core Data Plane Id - Specifies the ID of the
azure.mobile.NetworkPacketCoreDataPlane
which 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.
- Network
Address NetworkPort Translation Attached Data Network Network Address Port Translation Args - A
network_address_port_translation
block as defined below. - map[string]string
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- User
Equipment []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_prefixes
anduser_equipment_static_address_pool_prefix
. If you define both, they must be of the same size. - User
Equipment []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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must be specified.- User
Plane 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.
- User
Plane 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.
- User
Plane 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.
- User
Plane 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 List<String> - Specifies the DNS servers to signal to UEs to use for this attached data network.
- mobile
Network StringData Network Name - Specifies the name of the
azure.mobile.NetworkDataNetwork
which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created. - mobile
Network StringPacket Core Data Plane Id - Specifies the ID of the
azure.mobile.NetworkPacketCoreDataPlane
which 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.
- network
Address NetworkPort Translation Attached Data Network Network Address Port Translation - A
network_address_port_translation
block as defined below. - Map<String,String>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- user
Equipment 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_prefixes
anduser_equipment_static_address_pool_prefix
. If you define both, they must be of the same size. - user
Equipment 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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must be specified.- user
Plane 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.
- user
Plane 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.
- user
Plane 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.
- user
Plane 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 string[] - Specifies the DNS servers to signal to UEs to use for this attached data network.
- mobile
Network stringData Network Name - Specifies the name of the
azure.mobile.NetworkDataNetwork
which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created. - mobile
Network stringPacket Core Data Plane Id - Specifies the ID of the
azure.mobile.NetworkPacketCoreDataPlane
which 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.
- network
Address NetworkPort Translation Attached Data Network Network Address Port Translation - A
network_address_port_translation
block as defined below. - {[key: string]: string}
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- user
Equipment 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_prefixes
anduser_equipment_static_address_pool_prefix
. If you define both, they must be of the same size. - user
Equipment 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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must be specified.- user
Plane 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.
- user
Plane 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.
- user
Plane 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.
- user
Plane 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.NetworkDataNetwork
which 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.NetworkPacketCoreDataPlane
which 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_translation
block 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_prefixes
anduser_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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must 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.
- dns
Addresses List<String> - Specifies the DNS servers to signal to UEs to use for this attached data network.
- mobile
Network StringData Network Name - Specifies the name of the
azure.mobile.NetworkDataNetwork
which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created. - mobile
Network StringPacket Core Data Plane Id - Specifies the ID of the
azure.mobile.NetworkPacketCoreDataPlane
which 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.
- network
Address Property MapPort Translation - A
network_address_port_translation
block as defined below. - Map<String>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- user
Equipment 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_prefixes
anduser_equipment_static_address_pool_prefix
. If you define both, they must be of the same size. - user
Equipment 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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must be specified.- user
Plane 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.
- user
Plane 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.
- user
Plane 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.
- user
Plane 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) -> NetworkAttachedDataNetwork
func 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)
Resource lookup is not supported in YAML
- 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.
- Dns
Addresses 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.
- Mobile
Network stringData Network Name - Specifies the name of the
azure.mobile.NetworkDataNetwork
which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created. - Mobile
Network stringPacket Core Data Plane Id - Specifies the ID of the
azure.mobile.NetworkPacketCoreDataPlane
which 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 - A
network_address_port_translation
block as defined below. - Dictionary<string, string>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- User
Equipment 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_prefixes
anduser_equipment_static_address_pool_prefix
. If you define both, they must be of the same size. - User
Equipment 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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must be specified.- User
Plane 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.
- User
Plane 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.
- User
Plane 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.
- User
Plane 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 []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.
- Mobile
Network stringData Network Name - Specifies the name of the
azure.mobile.NetworkDataNetwork
which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created. - Mobile
Network stringPacket Core Data Plane Id - Specifies the ID of the
azure.mobile.NetworkPacketCoreDataPlane
which 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_translation
block as defined below. - map[string]string
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- User
Equipment []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_prefixes
anduser_equipment_static_address_pool_prefix
. If you define both, they must be of the same size. - User
Equipment []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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must be specified.- User
Plane 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.
- User
Plane 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.
- User
Plane 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.
- User
Plane 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 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.
- mobile
Network StringData Network Name - Specifies the name of the
azure.mobile.NetworkDataNetwork
which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created. - mobile
Network StringPacket Core Data Plane Id - Specifies the ID of the
azure.mobile.NetworkPacketCoreDataPlane
which 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 - A
network_address_port_translation
block as defined below. - Map<String,String>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- user
Equipment 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_prefixes
anduser_equipment_static_address_pool_prefix
. If you define both, they must be of the same size. - user
Equipment 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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must be specified.- user
Plane 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.
- user
Plane 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.
- user
Plane 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.
- user
Plane 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 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.
- mobile
Network stringData Network Name - Specifies the name of the
azure.mobile.NetworkDataNetwork
which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created. - mobile
Network stringPacket Core Data Plane Id - Specifies the ID of the
azure.mobile.NetworkPacketCoreDataPlane
which 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 - A
network_address_port_translation
block as defined below. - {[key: string]: string}
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- user
Equipment 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_prefixes
anduser_equipment_static_address_pool_prefix
. If you define both, they must be of the same size. - user
Equipment 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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must be specified.- user
Plane 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.
- user
Plane 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.
- user
Plane 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.
- user
Plane 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.NetworkDataNetwork
which 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.NetworkPacketCoreDataPlane
which 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_translation
block 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_prefixes
anduser_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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must 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.
- dns
Addresses 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.
- mobile
Network StringData Network Name - Specifies the name of the
azure.mobile.NetworkDataNetwork
which the Attached Data Network belongs to, Changing this forces a new Mobile Network Attached Data Network to be created. - mobile
Network StringPacket Core Data Plane Id - Specifies the ID of the
azure.mobile.NetworkPacketCoreDataPlane
which the Mobile Network Attached Data Network belongs to. Changing this forces a new Mobile Network Attached Data Network to be created. - network
Address Property MapPort Translation - A
network_address_port_translation
block as defined below. - Map<String>
- A mapping of tags which should be assigned to the Mobile Network Attached Data Network.
- user
Equipment 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_prefixes
anduser_equipment_static_address_pool_prefix
. If you define both, they must be of the same size. - user
Equipment 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_prefix
anduser_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_prefixes
anduser_equipment_static_address_pool_prefixes
must be specified.- user
Plane 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.
- user
Plane 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.
- user
Plane 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.
- user
Plane 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
- Icmp
Pinhole intTimeout In Seconds - Pinhole timeout for ICMP pinholes in seconds. Must between
1
to180
, 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_range
block as defined below. - Tcp
Pinhole intTimeout In Seconds - Pinhole timeout for TCP pinholes in seconds. Must between
1
to180
, 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
1
to180
, 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
.
- Icmp
Pinhole intTimeout In Seconds - Pinhole timeout for ICMP pinholes in seconds. Must between
1
to180
, 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_range
block as defined below. - Tcp
Pinhole intTimeout In Seconds - Pinhole timeout for TCP pinholes in seconds. Must between
1
to180
, 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
1
to180
, 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
.
- icmp
Pinhole IntegerTimeout In Seconds - Pinhole timeout for ICMP pinholes in seconds. Must between
1
to180
, Default to180
. - pinhole
Maximum 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.
- port
Range NetworkAttached Data Network Network Address Port Translation Port Range - A
port_range
block as defined below. - tcp
Pinhole IntegerTimeout In Seconds - Pinhole timeout for TCP pinholes in seconds. Must between
1
to180
, Default to180
. - tcp
Port 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
. - udp
Pinhole IntegerTimeout In Seconds - Pinhole timeout for UDP pinholes in seconds. Must between
1
to180
, Default to180
. - udp
Port 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
.
- icmp
Pinhole numberTimeout In Seconds - Pinhole timeout for ICMP pinholes in seconds. Must between
1
to180
, Default to180
. - pinhole
Maximum 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.
- port
Range NetworkAttached Data Network Network Address Port Translation Port Range - A
port_range
block as defined below. - tcp
Pinhole numberTimeout In Seconds - Pinhole timeout for TCP pinholes in seconds. Must between
1
to180
, Default to180
. - tcp
Port 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
. - udp
Pinhole numberTimeout In Seconds - Pinhole timeout for UDP pinholes in seconds. Must between
1
to180
, Default to180
. - udp
Port 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
1
to180
, 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_range
block as defined below. - tcp_
pinhole_ inttimeout_ in_ seconds - Pinhole timeout for TCP pinholes in seconds. Must between
1
to180
, 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
1
to180
, 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
.
- icmp
Pinhole NumberTimeout In Seconds - Pinhole timeout for ICMP pinholes in seconds. Must between
1
to180
, Default to180
. - pinhole
Maximum 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.
- port
Range Property Map - A
port_range
block as defined below. - tcp
Pinhole NumberTimeout In Seconds - Pinhole timeout for TCP pinholes in seconds. Must between
1
to180
, Default to180
. - tcp
Port 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
. - udp
Pinhole NumberTimeout In Seconds - Pinhole timeout for UDP pinholes in seconds. Must between
1
to180
, Default to180
. - udp
Port 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
azurerm
Terraform Provider.