Packet Core Data Plane
    Packet core data plane resource. Must be created in the same location as its parent packet core control plane. Azure REST API version: 2023-06-01. Prior API version in Azure Native 1.x: 2022-04-01-preview. Other available API versions: 2022-04-01-preview, 2022-11-01, 2023-09-01.
Example Usage
Create packet core data plane
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
    var packetCoreDataPlane = new AzureNative.MobileNetwork.PacketCoreDataPlane("packetCoreDataPlane", new()
    {
        Location = "eastus",
        PacketCoreControlPlaneName = "testPacketCoreCP",
        PacketCoreDataPlaneName = "testPacketCoreDP",
        ResourceGroupName = "rg1",
        UserPlaneAccessInterface = new AzureNative.MobileNetwork.Inputs.InterfacePropertiesArgs
        {
            Name = "N3",
        },
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-azure-native-sdk/mobilenetwork/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mobilenetwork.NewPacketCoreDataPlane(ctx, "packetCoreDataPlane", &mobilenetwork.PacketCoreDataPlaneArgs{
			Location:                   pulumi.String("eastus"),
			PacketCoreControlPlaneName: pulumi.String("testPacketCoreCP"),
			PacketCoreDataPlaneName:    pulumi.String("testPacketCoreDP"),
			ResourceGroupName:          pulumi.String("rg1"),
			UserPlaneAccessInterface: &mobilenetwork.InterfacePropertiesArgs{
				Name: pulumi.String("N3"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.mobilenetwork.PacketCoreDataPlane;
import com.pulumi.azurenative.mobilenetwork.PacketCoreDataPlaneArgs;
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 packetCoreDataPlane = new PacketCoreDataPlane("packetCoreDataPlane", PacketCoreDataPlaneArgs.builder()
            .location("eastus")
            .packetCoreControlPlaneName("testPacketCoreCP")
            .packetCoreDataPlaneName("testPacketCoreDP")
            .resourceGroupName("rg1")
            .userPlaneAccessInterface(Map.of("name", "N3"))
            .build());
    }
}Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:mobilenetwork:PacketCoreDataPlane TestPacketCoreDP /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}/packetCoreDataPlanes/{packetCoreDataPlaneName}Content copied to clipboard