We recommend using Azure Native.
azure.mobile.NetworkPacketCoreDataPlane
Explore with Pulumi AI
Manages a Mobile Network Packet Core Data Plane.
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: ${example.location}
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
tags:
key: value
Create NetworkPacketCoreDataPlane Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkPacketCoreDataPlane(name: string, args: NetworkPacketCoreDataPlaneArgs, opts?: CustomResourceOptions);
@overload
def NetworkPacketCoreDataPlane(resource_name: str,
args: NetworkPacketCoreDataPlaneArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkPacketCoreDataPlane(resource_name: str,
opts: Optional[ResourceOptions] = None,
mobile_network_packet_core_control_plane_id: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, 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 NewNetworkPacketCoreDataPlane(ctx *Context, name string, args NetworkPacketCoreDataPlaneArgs, opts ...ResourceOption) (*NetworkPacketCoreDataPlane, error)
public NetworkPacketCoreDataPlane(string name, NetworkPacketCoreDataPlaneArgs args, CustomResourceOptions? opts = null)
public NetworkPacketCoreDataPlane(String name, NetworkPacketCoreDataPlaneArgs args)
public NetworkPacketCoreDataPlane(String name, NetworkPacketCoreDataPlaneArgs args, CustomResourceOptions options)
type: azure:mobile:NetworkPacketCoreDataPlane
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 NetworkPacketCoreDataPlaneArgs
- 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 NetworkPacketCoreDataPlaneArgs
- 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 NetworkPacketCoreDataPlaneArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkPacketCoreDataPlaneArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkPacketCoreDataPlaneArgs
- 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 networkPacketCoreDataPlaneResource = new Azure.Mobile.NetworkPacketCoreDataPlane("networkPacketCoreDataPlaneResource", new()
{
MobileNetworkPacketCoreControlPlaneId = "string",
Location = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
UserPlaneAccessIpv4Address = "string",
UserPlaneAccessIpv4Gateway = "string",
UserPlaneAccessIpv4Subnet = "string",
UserPlaneAccessName = "string",
});
example, err := mobile.NewNetworkPacketCoreDataPlane(ctx, "networkPacketCoreDataPlaneResource", &mobile.NetworkPacketCoreDataPlaneArgs{
MobileNetworkPacketCoreControlPlaneId: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
UserPlaneAccessIpv4Address: pulumi.String("string"),
UserPlaneAccessIpv4Gateway: pulumi.String("string"),
UserPlaneAccessIpv4Subnet: pulumi.String("string"),
UserPlaneAccessName: pulumi.String("string"),
})
var networkPacketCoreDataPlaneResource = new NetworkPacketCoreDataPlane("networkPacketCoreDataPlaneResource", NetworkPacketCoreDataPlaneArgs.builder()
.mobileNetworkPacketCoreControlPlaneId("string")
.location("string")
.name("string")
.tags(Map.of("string", "string"))
.userPlaneAccessIpv4Address("string")
.userPlaneAccessIpv4Gateway("string")
.userPlaneAccessIpv4Subnet("string")
.userPlaneAccessName("string")
.build());
network_packet_core_data_plane_resource = azure.mobile.NetworkPacketCoreDataPlane("networkPacketCoreDataPlaneResource",
mobile_network_packet_core_control_plane_id="string",
location="string",
name="string",
tags={
"string": "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 networkPacketCoreDataPlaneResource = new azure.mobile.NetworkPacketCoreDataPlane("networkPacketCoreDataPlaneResource", {
mobileNetworkPacketCoreControlPlaneId: "string",
location: "string",
name: "string",
tags: {
string: "string",
},
userPlaneAccessIpv4Address: "string",
userPlaneAccessIpv4Gateway: "string",
userPlaneAccessIpv4Subnet: "string",
userPlaneAccessName: "string",
});
type: azure:mobile:NetworkPacketCoreDataPlane
properties:
location: string
mobileNetworkPacketCoreControlPlaneId: string
name: string
tags:
string: string
userPlaneAccessIpv4Address: string
userPlaneAccessIpv4Gateway: string
userPlaneAccessIpv4Subnet: string
userPlaneAccessName: string
NetworkPacketCoreDataPlane Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The NetworkPacketCoreDataPlane resource accepts the following input properties:
- Mobile
Network stringPacket Core Control Plane Id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Location string
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Name string
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- User
Plane stringAccess Ipv4Address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- Mobile
Network stringPacket Core Control Plane Id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Location string
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Name string
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- map[string]string
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- User
Plane stringAccess Ipv4Address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- mobile
Network StringPacket Core Control Plane Id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- location String
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- name String
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- user
Plane StringAccess Ipv4Address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- mobile
Network stringPacket Core Control Plane Id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- location string
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- name string
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- user
Plane stringAccess Ipv4Address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- mobile_
network_ strpacket_ core_ control_ plane_ id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- location str
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- name str
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- user_
plane_ straccess_ ipv4_ address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- mobile
Network StringPacket Core Control Plane Id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- location String
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- name String
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Map<String>
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- user
Plane StringAccess Ipv4Address - The IPv4 address for the user 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 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 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 thie user 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 NetworkPacketCoreDataPlane 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 NetworkPacketCoreDataPlane Resource
Get an existing NetworkPacketCoreDataPlane 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?: NetworkPacketCoreDataPlaneState, opts?: CustomResourceOptions): NetworkPacketCoreDataPlane
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
location: Optional[str] = None,
mobile_network_packet_core_control_plane_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, 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) -> NetworkPacketCoreDataPlane
func GetNetworkPacketCoreDataPlane(ctx *Context, name string, id IDInput, state *NetworkPacketCoreDataPlaneState, opts ...ResourceOption) (*NetworkPacketCoreDataPlane, error)
public static NetworkPacketCoreDataPlane Get(string name, Input<string> id, NetworkPacketCoreDataPlaneState? state, CustomResourceOptions? opts = null)
public static NetworkPacketCoreDataPlane get(String name, Output<String> id, NetworkPacketCoreDataPlaneState 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.
- Location string
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Mobile
Network stringPacket Core Control Plane Id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Name string
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- User
Plane stringAccess Ipv4Address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- Location string
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Mobile
Network stringPacket Core Control Plane Id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Name string
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- map[string]string
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- User
Plane stringAccess Ipv4Address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- location String
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- mobile
Network StringPacket Core Control Plane Id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- name String
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- user
Plane StringAccess Ipv4Address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- location string
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- mobile
Network stringPacket Core Control Plane Id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- name string
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- user
Plane stringAccess Ipv4Address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- location str
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- mobile_
network_ strpacket_ core_ control_ plane_ id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- name str
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- user_
plane_ straccess_ ipv4_ address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
- location String
- Specifies the Azure Region where the Mobile Network Packet Core Data Plane should exist. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- mobile
Network StringPacket Core Control Plane Id - Specifies the ID of the Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- name String
- Specifies the name which should be used for this Mobile Network Packet Core Data Plane. Changing this forces a new Mobile Network Packet Core Data Plane to be created.
- Map<String>
- A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
- user
Plane StringAccess Ipv4Address - The IPv4 address for the user 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 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 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 thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
Import
Mobile Network Packet Core Data Plane can be imported using the resource id
, e.g.
$ pulumi import azure:mobile/networkPacketCoreDataPlane:NetworkPacketCoreDataPlane example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/packetCoreControlPlane1/packetCoreDataPlanes/packetCoreDataPlane1
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.