PacketCoreDataPlaneArgs

data class PacketCoreDataPlaneArgs(val createdAt: Output<String>? = null, val createdBy: Output<String>? = null, val createdByType: Output<Either<String, CreatedByType>>? = null, val lastModifiedAt: Output<String>? = null, val lastModifiedBy: Output<String>? = null, val lastModifiedByType: Output<Either<String, CreatedByType>>? = null, val location: Output<String>? = null, val packetCoreControlPlaneName: Output<String>? = null, val packetCoreDataPlaneName: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val userPlaneAccessInterface: Output<InterfacePropertiesArgs>? = null) : ConvertibleToJava<PacketCoreDataPlaneArgs>

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",
},
});
});
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
})
}
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());
}
}

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

Constructors

Link copied to clipboard
constructor(createdAt: Output<String>? = null, createdBy: Output<String>? = null, createdByType: Output<Either<String, CreatedByType>>? = null, lastModifiedAt: Output<String>? = null, lastModifiedBy: Output<String>? = null, lastModifiedByType: Output<Either<String, CreatedByType>>? = null, location: Output<String>? = null, packetCoreControlPlaneName: Output<String>? = null, packetCoreDataPlaneName: Output<String>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null, userPlaneAccessInterface: Output<InterfacePropertiesArgs>? = null)

Properties

Link copied to clipboard
val createdAt: Output<String>? = null

The timestamp of resource creation (UTC).

Link copied to clipboard
val createdBy: Output<String>? = null

The identity that created the resource.

Link copied to clipboard
val createdByType: Output<Either<String, CreatedByType>>? = null

The type of identity that created the resource.

Link copied to clipboard
val lastModifiedAt: Output<String>? = null

The timestamp of resource last modification (UTC)

Link copied to clipboard
val lastModifiedBy: Output<String>? = null

The identity that last modified the resource.

Link copied to clipboard
val lastModifiedByType: Output<Either<String, CreatedByType>>? = null

The type of identity that last modified the resource.

Link copied to clipboard
val location: Output<String>? = null

The geo-location where the resource lives

Link copied to clipboard
val packetCoreControlPlaneName: Output<String>? = null

The name of the packet core control plane.

Link copied to clipboard
val packetCoreDataPlaneName: Output<String>? = null

The name of the packet core data plane.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group. The name is case insensitive.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Resource tags.

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.

Functions

Link copied to clipboard
open override fun toJava(): PacketCoreDataPlaneArgs