PacketCoreControlPlane

class PacketCoreControlPlane : KotlinCustomResource

Packet core control plane resource. Uses Azure REST API version 2023-06-01. In version 1.x of the Azure Native provider, it used API version 2022-04-01-preview. Other available API versions: 2022-03-01-preview, 2022-04-01-preview, 2022-11-01, 2023-09-01, 2024-02-01, 2024-04-01.

Example Usage

Create packet core control plane

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var packetCoreControlPlane = new AzureNative.MobileNetwork.PacketCoreControlPlane("packetCoreControlPlane", new()
{
ControlPlaneAccessInterface = new AzureNative.MobileNetwork.Inputs.InterfacePropertiesArgs
{
Name = "N2",
},
CoreNetworkTechnology = AzureNative.MobileNetwork.CoreNetworkType.CoreNetworkType_5GC,
Installation = new AzureNative.MobileNetwork.Inputs.InstallationArgs
{
DesiredState = AzureNative.MobileNetwork.DesiredInstallationState.Installed,
},
LocalDiagnosticsAccess = new AzureNative.MobileNetwork.Inputs.LocalDiagnosticsAccessConfigurationArgs
{
AuthenticationType = AzureNative.MobileNetwork.AuthenticationType.AAD,
HttpsServerCertificate = new AzureNative.MobileNetwork.Inputs.HttpsServerCertificateArgs
{
CertificateUrl = "https://contosovault.vault.azure.net/certificates/ingress",
},
},
Location = "eastus",
PacketCoreControlPlaneName = "TestPacketCoreCP",
Platform = new AzureNative.MobileNetwork.Inputs.PlatformConfigurationArgs
{
AzureStackEdgeDevice = new AzureNative.MobileNetwork.Inputs.AzureStackEdgeDeviceResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice",
},
ConnectedCluster = new AzureNative.MobileNetwork.Inputs.ConnectedClusterResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster",
},
CustomLocation = new AzureNative.MobileNetwork.Inputs.CustomLocationResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation",
},
Type = AzureNative.MobileNetwork.PlatformType.AKS_HCI,
},
ResourceGroupName = "rg1",
Sites = new[]
{
new AzureNative.MobileNetwork.Inputs.SiteResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/sites/testSite",
},
},
Sku = AzureNative.MobileNetwork.BillingSku.G0,
UeMtu = 1600,
Version = "0.2.0",
});
});
package main
import (
mobilenetwork "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.NewPacketCoreControlPlane(ctx, "packetCoreControlPlane", &mobilenetwork.PacketCoreControlPlaneArgs{
ControlPlaneAccessInterface: &mobilenetwork.InterfacePropertiesArgs{
Name: pulumi.String("N2"),
},
CoreNetworkTechnology: pulumi.String(mobilenetwork.CoreNetworkType_5GC),
Installation: &mobilenetwork.InstallationArgs{
DesiredState: pulumi.String(mobilenetwork.DesiredInstallationStateInstalled),
},
LocalDiagnosticsAccess: &mobilenetwork.LocalDiagnosticsAccessConfigurationArgs{
AuthenticationType: pulumi.String(mobilenetwork.AuthenticationTypeAAD),
HttpsServerCertificate: &mobilenetwork.HttpsServerCertificateArgs{
CertificateUrl: pulumi.String("https://contosovault.vault.azure.net/certificates/ingress"),
},
},
Location: pulumi.String("eastus"),
PacketCoreControlPlaneName: pulumi.String("TestPacketCoreCP"),
Platform: &mobilenetwork.PlatformConfigurationArgs{
AzureStackEdgeDevice: &mobilenetwork.AzureStackEdgeDeviceResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice"),
},
ConnectedCluster: &mobilenetwork.ConnectedClusterResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster"),
},
CustomLocation: &mobilenetwork.CustomLocationResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation"),
},
Type: pulumi.String(mobilenetwork.PlatformType_AKS_HCI),
},
ResourceGroupName: pulumi.String("rg1"),
Sites: mobilenetwork.SiteResourceIdArray{
&mobilenetwork.SiteResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/sites/testSite"),
},
},
Sku: pulumi.String(mobilenetwork.BillingSkuG0),
UeMtu: pulumi.Int(1600),
Version: pulumi.String("0.2.0"),
})
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.PacketCoreControlPlane;
import com.pulumi.azurenative.mobilenetwork.PacketCoreControlPlaneArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.InterfacePropertiesArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.InstallationArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.LocalDiagnosticsAccessConfigurationArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.HttpsServerCertificateArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.PlatformConfigurationArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.AzureStackEdgeDeviceResourceIdArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.ConnectedClusterResourceIdArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.CustomLocationResourceIdArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.SiteResourceIdArgs;
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 packetCoreControlPlane = new PacketCoreControlPlane("packetCoreControlPlane", PacketCoreControlPlaneArgs.builder()
.controlPlaneAccessInterface(InterfacePropertiesArgs.builder()
.name("N2")
.build())
.coreNetworkTechnology("5GC")
.installation(InstallationArgs.builder()
.desiredState("Installed")
.build())
.localDiagnosticsAccess(LocalDiagnosticsAccessConfigurationArgs.builder()
.authenticationType("AAD")
.httpsServerCertificate(HttpsServerCertificateArgs.builder()
.certificateUrl("https://contosovault.vault.azure.net/certificates/ingress")
.build())
.build())
.location("eastus")
.packetCoreControlPlaneName("TestPacketCoreCP")
.platform(PlatformConfigurationArgs.builder()
.azureStackEdgeDevice(AzureStackEdgeDeviceResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice")
.build())
.connectedCluster(ConnectedClusterResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster")
.build())
.customLocation(CustomLocationResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation")
.build())
.type("AKS-HCI")
.build())
.resourceGroupName("rg1")
.sites(SiteResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/sites/testSite")
.build())
.sku("G0")
.ueMtu(1600)
.version("0.2.0")
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:mobilenetwork:PacketCoreControlPlane TestPacketCoreCP /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}

Properties

Link copied to clipboard

The control plane interface on the access network. For 5G networks, this is the N2 interface. For 4G networks, this is the S1-MME interface.

Link copied to clipboard

The core network technology generation (5G core or EPC / 4G core).

Link copied to clipboard

Configuration for uploading packet core diagnostics

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

The identity used to retrieve the ingress certificate from Azure key vault.

Link copied to clipboard

The installation state of the packet core control plane resource.

Link copied to clipboard

The currently installed version of the packet core software.

Link copied to clipboard
val interopSettings: Output<Any>?

Settings to allow interoperability with third party components e.g. RANs and UEs.

Link copied to clipboard

The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.

Link copied to clipboard
val location: Output<String>

The geo-location where the resource lives

Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard

The platform where the packet core is deployed.

Link copied to clipboard

The provisioning state of the packet core control plane resource.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val rollbackVersion: Output<String>

The previous version of the packet core software that was deployed. Used when performing the rollback action.

Link copied to clipboard

Site(s) under which this packet core control plane should be deployed. The sites must be in the same location as the packet core control plane.

Link copied to clipboard
val sku: Output<String>

The SKU defining the throughput and SIM allowances for this packet core control plane deployment.

Link copied to clipboard

Azure Resource Manager metadata containing createdBy and modifiedBy information.

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

Resource tags.

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val ueMtu: Output<Int>?

The MTU (in bytes) signaled to the UE. The same MTU is set on the user plane data links for all data networks. The MTU set on the user plane access link is calculated to be 60 bytes greater than this value to allow for GTP encapsulation.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val version: Output<String>?

The desired version of the packet core software.