1. Packages
  2. Azure Classic
  3. API Docs
  4. mobile
  5. NetworkPacketCoreDataPlane

We recommend using Azure Native.

Azure Classic v5.74.0 published on Monday, Apr 29, 2024 by Pulumi

azure.mobile.NetworkPacketCoreDataPlane

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.74.0 published on Monday, Apr 29, 2024 by Pulumi

    Manages a Mobile Network Packet Core Data Plane.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.databoxedge.Device;
    import com.pulumi.azure.databoxedge.DeviceArgs;
    import com.pulumi.azure.mobile.Network;
    import com.pulumi.azure.mobile.NetworkArgs;
    import com.pulumi.azure.mobile.NetworkPacketCoreControlPlane;
    import com.pulumi.azure.mobile.NetworkPacketCoreControlPlaneArgs;
    import com.pulumi.azure.mobile.inputs.NetworkPacketCoreControlPlanePlatformArgs;
    import com.pulumi.azure.mobile.NetworkPacketCoreDataPlane;
    import com.pulumi.azure.mobile.NetworkPacketCoreDataPlaneArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleDevice = new Device("exampleDevice", DeviceArgs.builder()        
                .name("example-device")
                .resourceGroupName(example.name())
                .location(example.location())
                .skuName("EdgeP_Base-Standard")
                .build());
    
            var exampleNetwork = new Network("exampleNetwork", NetworkArgs.builder()        
                .name("example-mn")
                .resourceGroupName(example.name())
                .location(example.location())
                .mobileCountryCode("001")
                .mobileNetworkCode("01")
                .build());
    
            var exampleNetworkPacketCoreControlPlane = new NetworkPacketCoreControlPlane("exampleNetworkPacketCoreControlPlane", NetworkPacketCoreControlPlaneArgs.builder()        
                .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(NetworkPacketCoreControlPlanePlatformArgs.builder()
                    .type("AKS-HCI")
                    .edgeDeviceId(exampleDevice.id())
                    .build())
                .build());
    
            var exampleNetworkPacketCoreDataPlane = new NetworkPacketCoreDataPlane("exampleNetworkPacketCoreDataPlane", NetworkPacketCoreDataPlaneArgs.builder()        
                .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(Map.of("key", "value"))
                .build());
    
        }
    }
    
    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.

    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:

    MobileNetworkPacketCoreControlPlaneId string
    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.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    UserPlaneAccessIpv4Address string
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessIpv4Gateway string
    The default IPv4 gateway for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessIpv4Subnet string
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessName string
    Specifies the logical name for thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    MobileNetworkPacketCoreControlPlaneId string
    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.
    Tags map[string]string
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    UserPlaneAccessIpv4Address string
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessIpv4Gateway string
    The default IPv4 gateway for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessIpv4Subnet string
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessName string
    Specifies the logical name for thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    mobileNetworkPacketCoreControlPlaneId String
    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.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    userPlaneAccessIpv4Address String
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Gateway String
    The default IPv4 gateway for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Subnet String
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessName String
    Specifies the logical name for thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    mobileNetworkPacketCoreControlPlaneId string
    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.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    userPlaneAccessIpv4Address string
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Gateway string
    The default IPv4 gateway for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Subnet string
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessName string
    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_packet_core_control_plane_id str
    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.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    user_plane_access_ipv4_address str
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    user_plane_access_ipv4_gateway str
    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_access_ipv4_subnet str
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    user_plane_access_name str
    Specifies the logical name for thie user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    mobileNetworkPacketCoreControlPlaneId String
    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.
    tags Map<String>
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    userPlaneAccessIpv4Address String
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Gateway String
    The default IPv4 gateway for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Subnet String
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessName String
    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.
    The following state arguments are supported:
    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.
    MobileNetworkPacketCoreControlPlaneId string
    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.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    UserPlaneAccessIpv4Address string
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessIpv4Gateway string
    The default IPv4 gateway for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessIpv4Subnet string
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessName string
    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.
    MobileNetworkPacketCoreControlPlaneId string
    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.
    Tags map[string]string
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    UserPlaneAccessIpv4Address string
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessIpv4Gateway string
    The default IPv4 gateway for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessIpv4Subnet string
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    UserPlaneAccessName string
    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.
    mobileNetworkPacketCoreControlPlaneId String
    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.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    userPlaneAccessIpv4Address String
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Gateway String
    The default IPv4 gateway for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Subnet String
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessName String
    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.
    mobileNetworkPacketCoreControlPlaneId string
    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.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    userPlaneAccessIpv4Address string
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Gateway string
    The default IPv4 gateway for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Subnet string
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessName string
    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_packet_core_control_plane_id str
    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.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    user_plane_access_ipv4_address str
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    user_plane_access_ipv4_gateway str
    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_access_ipv4_subnet str
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    user_plane_access_name str
    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.
    mobileNetworkPacketCoreControlPlaneId String
    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.
    tags Map<String>
    A mapping of tags which should be assigned to the Mobile Network Packet Core Data Plane.
    userPlaneAccessIpv4Address String
    The IPv4 address for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Gateway String
    The default IPv4 gateway for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessIpv4Subnet String
    The IPv4 subnet for the user plane interface. This should match one of the interfaces configured on your Azure Stack Edge device.
    userPlaneAccessName String
    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.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.74.0 published on Monday, Apr 29, 2024 by Pulumi