Packet Core Data Plane
Packet core data plane resource. API Version: 2022-04-01-preview.
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 (
mobilenetwork "github.com/pulumi/pulumi-azure-native-sdk/mobilenetwork"
"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/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP
Content copied to clipboard
Properties
Link copied to clipboard
The type of identity that created the resource.
Link copied to clipboard
The timestamp of resource last modification (UTC)
Link copied to clipboard
The identity that last modified the resource.
Link copied to clipboard
The type of identity that last modified the resource.
Link copied to clipboard
The provisioning state of the packet core data plane resource.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Link copied to clipboard
The user plane interface on the access network. For 5G networks, this is the N3 interface. For 4G networks, this is the S1-U interface.