azure-native.mobilenetwork.PacketCoreControlPlane

Packet core control plane resource. API Version: 2022-04-01-preview.

Example Usage

Create packet core control plane

using System.Collections.Generic;
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 = "5GC",
        LocalDiagnosticsAccess = new AzureNative.MobileNetwork.Inputs.LocalDiagnosticsAccessConfigurationArgs
        {
            HttpsServerCertificate = new AzureNative.MobileNetwork.Inputs.KeyVaultCertificateArgs
            {
                CertificateUrl = "https://contosovault.vault.azure.net/certificates/ingress",
            },
        },
        Location = "eastus",
        MobileNetwork = new AzureNative.MobileNetwork.Inputs.MobileNetworkResourceIdArgs
        {
            Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork",
        },
        PacketCoreControlPlaneName = "TestPacketCoreCP",
        Platform = new AzureNative.MobileNetwork.Inputs.PlatformConfigurationArgs
        {
            AzureStackEdgeDevice = new AzureNative.MobileNetwork.Inputs.AzureStackEdgeDeviceResourceIdArgs
            {
                Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice",
            },
            ConnectedCluster = new AzureNative.MobileNetwork.Inputs.ConnectedClusterResourceIdArgs
            {
                Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster",
            },
            CustomLocation = new AzureNative.MobileNetwork.Inputs.CustomLocationResourceIdArgs
            {
                Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation",
            },
            Type = "AKS-HCI",
        },
        ResourceGroupName = "rg1",
        Sku = "testSku",
        Version = "0.2.0",
    });

});
package main

import (
	mobilenetwork "github.com/pulumi/pulumi-azure-native/sdk/go/azure/mobilenetwork"
	"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("5GC"),
			LocalDiagnosticsAccess: mobilenetwork.LocalDiagnosticsAccessConfigurationResponse{
				HttpsServerCertificate: &mobilenetwork.KeyVaultCertificateArgs{
					CertificateUrl: pulumi.String("https://contosovault.vault.azure.net/certificates/ingress"),
				},
			},
			Location: pulumi.String("eastus"),
			MobileNetwork: &mobilenetwork.MobileNetworkResourceIdArgs{
				Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork"),
			},
			PacketCoreControlPlaneName: pulumi.String("TestPacketCoreCP"),
			Platform: mobilenetwork.PlatformConfigurationResponse{
				AzureStackEdgeDevice: &mobilenetwork.AzureStackEdgeDeviceResourceIdArgs{
					Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice"),
				},
				ConnectedCluster: &mobilenetwork.ConnectedClusterResourceIdArgs{
					Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster"),
				},
				CustomLocation: &mobilenetwork.CustomLocationResourceIdArgs{
					Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation"),
				},
				Type: pulumi.String("AKS-HCI"),
			},
			ResourceGroupName: pulumi.String("rg1"),
			Sku:               pulumi.String("testSku"),
			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 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(Map.of("name", "N2"))
            .coreNetworkTechnology("5GC")
            .localDiagnosticsAccess(Map.of("httpsServerCertificate", Map.of("certificateUrl", "https://contosovault.vault.azure.net/certificates/ingress")))
            .location("eastus")
            .mobileNetwork(Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork"))
            .packetCoreControlPlaneName("TestPacketCoreCP")
            .platform(Map.ofEntries(
                Map.entry("azureStackEdgeDevice", Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice")),
                Map.entry("connectedCluster", Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster")),
                Map.entry("customLocation", Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation")),
                Map.entry("type", "AKS-HCI")
            ))
            .resourceGroupName("rg1")
            .sku("testSku")
            .version("0.2.0")
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

packet_core_control_plane = azure_native.mobilenetwork.PacketCoreControlPlane("packetCoreControlPlane",
    control_plane_access_interface=azure_native.mobilenetwork.InterfacePropertiesArgs(
        name="N2",
    ),
    core_network_technology="5GC",
    local_diagnostics_access=azure_native.mobilenetwork.LocalDiagnosticsAccessConfigurationResponseArgs(
        https_server_certificate=azure_native.mobilenetwork.KeyVaultCertificateArgs(
            certificate_url="https://contosovault.vault.azure.net/certificates/ingress",
        ),
    ),
    location="eastus",
    mobile_network=azure_native.mobilenetwork.MobileNetworkResourceIdArgs(
        id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork",
    ),
    packet_core_control_plane_name="TestPacketCoreCP",
    platform=azure_native.mobilenetwork.PlatformConfigurationResponseArgs(
        azure_stack_edge_device=azure_native.mobilenetwork.AzureStackEdgeDeviceResourceIdArgs(
            id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice",
        ),
        connected_cluster=azure_native.mobilenetwork.ConnectedClusterResourceIdArgs(
            id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster",
        ),
        custom_location=azure_native.mobilenetwork.CustomLocationResourceIdArgs(
            id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation",
        ),
        type="AKS-HCI",
    ),
    resource_group_name="rg1",
    sku="testSku",
    version="0.2.0")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const packetCoreControlPlane = new azure_native.mobilenetwork.PacketCoreControlPlane("packetCoreControlPlane", {
    controlPlaneAccessInterface: {
        name: "N2",
    },
    coreNetworkTechnology: "5GC",
    localDiagnosticsAccess: {
        httpsServerCertificate: {
            certificateUrl: "https://contosovault.vault.azure.net/certificates/ingress",
        },
    },
    location: "eastus",
    mobileNetwork: {
        id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork",
    },
    packetCoreControlPlaneName: "TestPacketCoreCP",
    platform: {
        azureStackEdgeDevice: {
            id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice",
        },
        connectedCluster: {
            id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster",
        },
        customLocation: {
            id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation",
        },
        type: "AKS-HCI",
    },
    resourceGroupName: "rg1",
    sku: "testSku",
    version: "0.2.0",
});
resources:
  packetCoreControlPlane:
    type: azure-native:mobilenetwork:PacketCoreControlPlane
    properties:
      controlPlaneAccessInterface:
        name: N2
      coreNetworkTechnology: 5GC
      localDiagnosticsAccess:
        httpsServerCertificate:
          certificateUrl: https://contosovault.vault.azure.net/certificates/ingress
      location: eastus
      mobileNetwork:
        id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork
      packetCoreControlPlaneName: TestPacketCoreCP
      platform:
        azureStackEdgeDevice:
          id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice
        connectedCluster:
          id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster
        customLocation:
          id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation
        type: AKS-HCI
      resourceGroupName: rg1
      sku: testSku
      version: 0.2.0

Create PacketCoreControlPlane Resource

new PacketCoreControlPlane(name: string, args: PacketCoreControlPlaneArgs, opts?: CustomResourceOptions);
@overload
def PacketCoreControlPlane(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           control_plane_access_interface: Optional[InterfacePropertiesArgs] = None,
                           core_network_technology: Optional[Union[str, CoreNetworkType]] = None,
                           created_at: Optional[str] = None,
                           created_by: Optional[str] = None,
                           created_by_type: Optional[Union[str, CreatedByType]] = None,
                           identity: Optional[ManagedServiceIdentityArgs] = None,
                           interop_settings: Optional[Any] = None,
                           last_modified_at: Optional[str] = None,
                           last_modified_by: Optional[str] = None,
                           last_modified_by_type: Optional[Union[str, CreatedByType]] = None,
                           local_diagnostics_access: Optional[LocalDiagnosticsAccessConfigurationArgs] = None,
                           location: Optional[str] = None,
                           mobile_network: Optional[MobileNetworkResourceIdArgs] = None,
                           packet_core_control_plane_name: Optional[str] = None,
                           platform: Optional[PlatformConfigurationArgs] = None,
                           resource_group_name: Optional[str] = None,
                           sku: Optional[Union[str, BillingSku]] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           version: Optional[str] = None)
@overload
def PacketCoreControlPlane(resource_name: str,
                           args: PacketCoreControlPlaneArgs,
                           opts: Optional[ResourceOptions] = None)
func NewPacketCoreControlPlane(ctx *Context, name string, args PacketCoreControlPlaneArgs, opts ...ResourceOption) (*PacketCoreControlPlane, error)
public PacketCoreControlPlane(string name, PacketCoreControlPlaneArgs args, CustomResourceOptions? opts = null)
public PacketCoreControlPlane(String name, PacketCoreControlPlaneArgs args)
public PacketCoreControlPlane(String name, PacketCoreControlPlaneArgs args, CustomResourceOptions options)
type: azure-native:mobilenetwork:PacketCoreControlPlane
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args PacketCoreControlPlaneArgs
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 PacketCoreControlPlaneArgs
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 PacketCoreControlPlaneArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args PacketCoreControlPlaneArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args PacketCoreControlPlaneArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

PacketCoreControlPlane 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 PacketCoreControlPlane resource accepts the following input properties:

ControlPlaneAccessInterface Pulumi.AzureNative.MobileNetwork.Inputs.InterfacePropertiesArgs

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.

MobileNetwork Pulumi.AzureNative.MobileNetwork.Inputs.MobileNetworkResourceIdArgs

Mobile network in which this packet core control plane is deployed.

ResourceGroupName string

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

Sku string | Pulumi.AzureNative.MobileNetwork.BillingSku

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

CoreNetworkTechnology string | Pulumi.AzureNative.MobileNetwork.CoreNetworkType

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

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string | Pulumi.AzureNative.MobileNetwork.CreatedByType

The type of identity that created the resource.

Identity Pulumi.AzureNative.MobileNetwork.Inputs.ManagedServiceIdentityArgs

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

InteropSettings object

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

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string | Pulumi.AzureNative.MobileNetwork.CreatedByType

The type of identity that last modified the resource.

LocalDiagnosticsAccess Pulumi.AzureNative.MobileNetwork.Inputs.LocalDiagnosticsAccessConfigurationArgs

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

Location string

The geo-location where the resource lives

PacketCoreControlPlaneName string

The name of the packet core control plane.

Platform Pulumi.AzureNative.MobileNetwork.Inputs.PlatformConfigurationArgs

The platform where the packet core is deployed.

Tags Dictionary<string, string>

Resource tags.

Version string

The version of the packet core software that is deployed.

ControlPlaneAccessInterface InterfacePropertiesArgs

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.

MobileNetwork MobileNetworkResourceIdArgs

Mobile network in which this packet core control plane is deployed.

ResourceGroupName string

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

Sku string | BillingSku

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

CoreNetworkTechnology string | CoreNetworkType

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

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string | CreatedByType

The type of identity that created the resource.

Identity ManagedServiceIdentityArgs

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

InteropSettings interface{}

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

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string | CreatedByType

The type of identity that last modified the resource.

LocalDiagnosticsAccess LocalDiagnosticsAccessConfigurationArgs

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

Location string

The geo-location where the resource lives

PacketCoreControlPlaneName string

The name of the packet core control plane.

Platform PlatformConfigurationArgs

The platform where the packet core is deployed.

Tags map[string]string

Resource tags.

Version string

The version of the packet core software that is deployed.

controlPlaneAccessInterface InterfacePropertiesArgs

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.

mobileNetwork MobileNetworkResourceIdArgs

Mobile network in which this packet core control plane is deployed.

resourceGroupName String

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

sku String | BillingSku

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

coreNetworkTechnology String | CoreNetworkType

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

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String | CreatedByType

The type of identity that created the resource.

identity ManagedServiceIdentityArgs

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

interopSettings Object

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

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String | CreatedByType

The type of identity that last modified the resource.

localDiagnosticsAccess LocalDiagnosticsAccessConfigurationArgs

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

location String

The geo-location where the resource lives

packetCoreControlPlaneName String

The name of the packet core control plane.

platform PlatformConfigurationArgs

The platform where the packet core is deployed.

tags Map<String,String>

Resource tags.

version String

The version of the packet core software that is deployed.

controlPlaneAccessInterface InterfacePropertiesArgs

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.

mobileNetwork MobileNetworkResourceIdArgs

Mobile network in which this packet core control plane is deployed.

resourceGroupName string

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

sku string | BillingSku

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

coreNetworkTechnology string | CoreNetworkType

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

createdAt string

The timestamp of resource creation (UTC).

createdBy string

The identity that created the resource.

createdByType string | CreatedByType

The type of identity that created the resource.

identity ManagedServiceIdentityArgs

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

interopSettings any

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

lastModifiedAt string

The timestamp of resource last modification (UTC)

lastModifiedBy string

The identity that last modified the resource.

lastModifiedByType string | CreatedByType

The type of identity that last modified the resource.

localDiagnosticsAccess LocalDiagnosticsAccessConfigurationArgs

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

location string

The geo-location where the resource lives

packetCoreControlPlaneName string

The name of the packet core control plane.

platform PlatformConfigurationArgs

The platform where the packet core is deployed.

tags {[key: string]: string}

Resource tags.

version string

The version of the packet core software that is deployed.

control_plane_access_interface InterfacePropertiesArgs

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.

mobile_network MobileNetworkResourceIdArgs

Mobile network in which this packet core control plane is deployed.

resource_group_name str

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

sku str | BillingSku

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

core_network_technology str | CoreNetworkType

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

created_at str

The timestamp of resource creation (UTC).

created_by str

The identity that created the resource.

created_by_type str | CreatedByType

The type of identity that created the resource.

identity ManagedServiceIdentityArgs

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

interop_settings Any

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

last_modified_at str

The timestamp of resource last modification (UTC)

last_modified_by str

The identity that last modified the resource.

last_modified_by_type str | CreatedByType

The type of identity that last modified the resource.

local_diagnostics_access LocalDiagnosticsAccessConfigurationArgs

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

location str

The geo-location where the resource lives

packet_core_control_plane_name str

The name of the packet core control plane.

platform PlatformConfigurationArgs

The platform where the packet core is deployed.

tags Mapping[str, str]

Resource tags.

version str

The version of the packet core software that is deployed.

controlPlaneAccessInterface Property Map

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.

mobileNetwork Property Map

Mobile network in which this packet core control plane is deployed.

resourceGroupName String

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

sku String | "EvaluationPackage" | "FlagshipStarterPackage" | "EdgeSite2GBPS" | "EdgeSite3GBPS" | "EdgeSite4GBPS" | "MediumPackage" | "LargePackage"

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

coreNetworkTechnology String | "5GC" | "EPC"

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

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String | "User" | "Application" | "ManagedIdentity" | "Key"

The type of identity that created the resource.

identity Property Map

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

interopSettings Any

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

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String | "User" | "Application" | "ManagedIdentity" | "Key"

The type of identity that last modified the resource.

localDiagnosticsAccess Property Map

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

location String

The geo-location where the resource lives

packetCoreControlPlaneName String

The name of the packet core control plane.

platform Property Map

The platform where the packet core is deployed.

tags Map<String>

Resource tags.

version String

The version of the packet core software that is deployed.

Outputs

All input properties are implicitly available as output properties. Additionally, the PacketCoreControlPlane resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the resource

ProvisioningState string

The provisioning state of the packet core control plane resource.

SystemData Pulumi.AzureNative.MobileNetwork.Outputs.SystemDataResponse

Azure Resource Manager metadata containing createdBy and modifiedBy information.

Type string

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

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the resource

ProvisioningState string

The provisioning state of the packet core control plane resource.

SystemData SystemDataResponse

Azure Resource Manager metadata containing createdBy and modifiedBy information.

Type string

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

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the resource

provisioningState String

The provisioning state of the packet core control plane resource.

systemData SystemDataResponse

Azure Resource Manager metadata containing createdBy and modifiedBy information.

type String

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

id string

The provider-assigned unique ID for this managed resource.

name string

The name of the resource

provisioningState string

The provisioning state of the packet core control plane resource.

systemData SystemDataResponse

Azure Resource Manager metadata containing createdBy and modifiedBy information.

type string

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

id str

The provider-assigned unique ID for this managed resource.

name str

The name of the resource

provisioning_state str

The provisioning state of the packet core control plane resource.

system_data SystemDataResponse

Azure Resource Manager metadata containing createdBy and modifiedBy information.

type str

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

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the resource

provisioningState String

The provisioning state of the packet core control plane resource.

systemData Property Map

Azure Resource Manager metadata containing createdBy and modifiedBy information.

type String

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

Supporting Types

AzureStackEdgeDeviceResourceId

Id string

Azure Stack Edge device resource ID.

Id string

Azure Stack Edge device resource ID.

id String

Azure Stack Edge device resource ID.

id string

Azure Stack Edge device resource ID.

id str

Azure Stack Edge device resource ID.

id String

Azure Stack Edge device resource ID.

AzureStackEdgeDeviceResourceIdResponse

Id string

Azure Stack Edge device resource ID.

Id string

Azure Stack Edge device resource ID.

id String

Azure Stack Edge device resource ID.

id string

Azure Stack Edge device resource ID.

id str

Azure Stack Edge device resource ID.

id String

Azure Stack Edge device resource ID.

BillingSku

EvaluationPackage
EvaluationPackage

Evaluation package plan

FlagshipStarterPackage
FlagshipStarterPackage

Flagship starter package plan

EdgeSite2GBPS
EdgeSite2GBPS

Edge site 2Gbps plan

EdgeSite3GBPS
EdgeSite3GBPS

Edge site 3Gbps plan

EdgeSite4GBPS
EdgeSite4GBPS

Edge site 4Gbps plan

MediumPackage
MediumPackage

Medium package plan

LargePackage
LargePackage

Large package plan

BillingSkuEvaluationPackage
EvaluationPackage

Evaluation package plan

BillingSkuFlagshipStarterPackage
FlagshipStarterPackage

Flagship starter package plan

BillingSkuEdgeSite2GBPS
EdgeSite2GBPS

Edge site 2Gbps plan

BillingSkuEdgeSite3GBPS
EdgeSite3GBPS

Edge site 3Gbps plan

BillingSkuEdgeSite4GBPS
EdgeSite4GBPS

Edge site 4Gbps plan

BillingSkuMediumPackage
MediumPackage

Medium package plan

BillingSkuLargePackage
LargePackage

Large package plan

EvaluationPackage
EvaluationPackage

Evaluation package plan

FlagshipStarterPackage
FlagshipStarterPackage

Flagship starter package plan

EdgeSite2GBPS
EdgeSite2GBPS

Edge site 2Gbps plan

EdgeSite3GBPS
EdgeSite3GBPS

Edge site 3Gbps plan

EdgeSite4GBPS
EdgeSite4GBPS

Edge site 4Gbps plan

MediumPackage
MediumPackage

Medium package plan

LargePackage
LargePackage

Large package plan

EvaluationPackage
EvaluationPackage

Evaluation package plan

FlagshipStarterPackage
FlagshipStarterPackage

Flagship starter package plan

EdgeSite2GBPS
EdgeSite2GBPS

Edge site 2Gbps plan

EdgeSite3GBPS
EdgeSite3GBPS

Edge site 3Gbps plan

EdgeSite4GBPS
EdgeSite4GBPS

Edge site 4Gbps plan

MediumPackage
MediumPackage

Medium package plan

LargePackage
LargePackage

Large package plan

EVALUATION_PACKAGE
EvaluationPackage

Evaluation package plan

FLAGSHIP_STARTER_PACKAGE
FlagshipStarterPackage

Flagship starter package plan

EDGE_SITE2_GBPS
EdgeSite2GBPS

Edge site 2Gbps plan

EDGE_SITE3_GBPS
EdgeSite3GBPS

Edge site 3Gbps plan

EDGE_SITE4_GBPS
EdgeSite4GBPS

Edge site 4Gbps plan

MEDIUM_PACKAGE
MediumPackage

Medium package plan

LARGE_PACKAGE
LargePackage

Large package plan

"EvaluationPackage"
EvaluationPackage

Evaluation package plan

"FlagshipStarterPackage"
FlagshipStarterPackage

Flagship starter package plan

"EdgeSite2GBPS"
EdgeSite2GBPS

Edge site 2Gbps plan

"EdgeSite3GBPS"
EdgeSite3GBPS

Edge site 3Gbps plan

"EdgeSite4GBPS"
EdgeSite4GBPS

Edge site 4Gbps plan

"MediumPackage"
MediumPackage

Medium package plan

"LargePackage"
LargePackage

Large package plan

ConnectedClusterResourceId

Id string

Azure Arc connected cluster resource ID.

Id string

Azure Arc connected cluster resource ID.

id String

Azure Arc connected cluster resource ID.

id string

Azure Arc connected cluster resource ID.

id str

Azure Arc connected cluster resource ID.

id String

Azure Arc connected cluster resource ID.

ConnectedClusterResourceIdResponse

Id string

Azure Arc connected cluster resource ID.

Id string

Azure Arc connected cluster resource ID.

id String

Azure Arc connected cluster resource ID.

id string

Azure Arc connected cluster resource ID.

id str

Azure Arc connected cluster resource ID.

id String

Azure Arc connected cluster resource ID.

CoreNetworkType

CoreNetworkType_5GC
5GC

5G core

EPC
EPC

EPC / 4G core

CoreNetworkType_5GC
5GC

5G core

CoreNetworkTypeEPC
EPC

EPC / 4G core

_5GC
5GC

5G core

EPC
EPC

EPC / 4G core

CoreNetworkType_5GC
5GC

5G core

EPC
EPC

EPC / 4G core

CORE_NETWORK_TYPE_5_GC
5GC

5G core

EPC
EPC

EPC / 4G core

"5GC"
5GC

5G core

"EPC"
EPC

EPC / 4G core

CreatedByType

User
User
Application
Application
ManagedIdentity
ManagedIdentity
Key
Key
CreatedByTypeUser
User
CreatedByTypeApplication
Application
CreatedByTypeManagedIdentity
ManagedIdentity
CreatedByTypeKey
Key
User
User
Application
Application
ManagedIdentity
ManagedIdentity
Key
Key
User
User
Application
Application
ManagedIdentity
ManagedIdentity
Key
Key
USER
User
APPLICATION
Application
MANAGED_IDENTITY
ManagedIdentity
KEY
Key
"User"
User
"Application"
Application
"ManagedIdentity"
ManagedIdentity
"Key"
Key

CustomLocationResourceId

Id string

Azure Arc custom location resource ID.

Id string

Azure Arc custom location resource ID.

id String

Azure Arc custom location resource ID.

id string

Azure Arc custom location resource ID.

id str

Azure Arc custom location resource ID.

id String

Azure Arc custom location resource ID.

CustomLocationResourceIdResponse

Id string

Azure Arc custom location resource ID.

Id string

Azure Arc custom location resource ID.

id String

Azure Arc custom location resource ID.

id string

Azure Arc custom location resource ID.

id str

Azure Arc custom location resource ID.

id String

Azure Arc custom location resource ID.

InterfaceProperties

Ipv4Address string

The IPv4 address.

Ipv4Gateway string

The default IPv4 gateway (router).

Ipv4Subnet string

The IPv4 subnet.

Name string

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

Ipv4Address string

The IPv4 address.

Ipv4Gateway string

The default IPv4 gateway (router).

Ipv4Subnet string

The IPv4 subnet.

Name string

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

ipv4Address String

The IPv4 address.

ipv4Gateway String

The default IPv4 gateway (router).

ipv4Subnet String

The IPv4 subnet.

name String

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

ipv4Address string

The IPv4 address.

ipv4Gateway string

The default IPv4 gateway (router).

ipv4Subnet string

The IPv4 subnet.

name string

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

ipv4_address str

The IPv4 address.

ipv4_gateway str

The default IPv4 gateway (router).

ipv4_subnet str

The IPv4 subnet.

name str

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

ipv4Address String

The IPv4 address.

ipv4Gateway String

The default IPv4 gateway (router).

ipv4Subnet String

The IPv4 subnet.

name String

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

InterfacePropertiesResponse

Ipv4Address string

The IPv4 address.

Ipv4Gateway string

The default IPv4 gateway (router).

Ipv4Subnet string

The IPv4 subnet.

Name string

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

Ipv4Address string

The IPv4 address.

Ipv4Gateway string

The default IPv4 gateway (router).

Ipv4Subnet string

The IPv4 subnet.

Name string

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

ipv4Address String

The IPv4 address.

ipv4Gateway String

The default IPv4 gateway (router).

ipv4Subnet String

The IPv4 subnet.

name String

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

ipv4Address string

The IPv4 address.

ipv4Gateway string

The default IPv4 gateway (router).

ipv4Subnet string

The IPv4 subnet.

name string

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

ipv4_address str

The IPv4 address.

ipv4_gateway str

The default IPv4 gateway (router).

ipv4_subnet str

The IPv4 subnet.

name str

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

ipv4Address String

The IPv4 address.

ipv4Gateway String

The default IPv4 gateway (router).

ipv4Subnet String

The IPv4 subnet.

name String

The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.

KeyVaultCertificate

CertificateUrl string

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

CertificateUrl string

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

certificateUrl String

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

certificateUrl string

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

certificate_url str

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

certificateUrl String

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

KeyVaultCertificateResponse

CertificateUrl string

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

CertificateUrl string

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

certificateUrl String

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

certificateUrl string

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

certificate_url str

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

certificateUrl String

The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.

LocalDiagnosticsAccessConfiguration

HttpsServerCertificate Pulumi.AzureNative.MobileNetwork.Inputs.KeyVaultCertificate

The HTTPS server TLS certificate used to secure local access to diagnostics.

HttpsServerCertificate KeyVaultCertificate

The HTTPS server TLS certificate used to secure local access to diagnostics.

httpsServerCertificate KeyVaultCertificate

The HTTPS server TLS certificate used to secure local access to diagnostics.

httpsServerCertificate KeyVaultCertificate

The HTTPS server TLS certificate used to secure local access to diagnostics.

https_server_certificate KeyVaultCertificate

The HTTPS server TLS certificate used to secure local access to diagnostics.

httpsServerCertificate Property Map

The HTTPS server TLS certificate used to secure local access to diagnostics.

LocalDiagnosticsAccessConfigurationResponse

HttpsServerCertificate Pulumi.AzureNative.MobileNetwork.Inputs.KeyVaultCertificateResponse

The HTTPS server TLS certificate used to secure local access to diagnostics.

HttpsServerCertificate KeyVaultCertificateResponse

The HTTPS server TLS certificate used to secure local access to diagnostics.

httpsServerCertificate KeyVaultCertificateResponse

The HTTPS server TLS certificate used to secure local access to diagnostics.

httpsServerCertificate KeyVaultCertificateResponse

The HTTPS server TLS certificate used to secure local access to diagnostics.

https_server_certificate KeyVaultCertificateResponse

The HTTPS server TLS certificate used to secure local access to diagnostics.

httpsServerCertificate Property Map

The HTTPS server TLS certificate used to secure local access to diagnostics.

ManagedServiceIdentity

Type string | Pulumi.AzureNative.MobileNetwork.ManagedServiceIdentityType

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

UserAssignedIdentities Dictionary<string, object>

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

Type string | ManagedServiceIdentityType

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

UserAssignedIdentities map[string]interface{}

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

type String | ManagedServiceIdentityType

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

userAssignedIdentities Map<String,Object>

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

type string | ManagedServiceIdentityType

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

userAssignedIdentities {[key: string]: any}

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

type str | ManagedServiceIdentityType

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

user_assigned_identities Mapping[str, Any]

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

type String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

userAssignedIdentities Map<Any>

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityResponse

PrincipalId string

The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.

TenantId string

The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.

Type string

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.MobileNetwork.Inputs.UserAssignedIdentityResponse>

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

PrincipalId string

The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.

TenantId string

The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.

Type string

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

UserAssignedIdentities map[string]UserAssignedIdentityResponse

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

principalId String

The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.

tenantId String

The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.

type String

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

userAssignedIdentities Map<String,UserAssignedIdentityResponse>

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

principalId string

The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.

tenantId string

The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.

type string

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

principal_id str

The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.

tenant_id str

The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.

type str

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

user_assigned_identities Mapping[str, UserAssignedIdentityResponse]

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

principalId String

The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.

tenantId String

The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.

type String

Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).

userAssignedIdentities Map<Property Map>

The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityType

None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
ManagedServiceIdentityTypeNone
None
ManagedServiceIdentityTypeSystemAssigned
SystemAssigned
ManagedServiceIdentityTypeUserAssigned
UserAssigned
ManagedServiceIdentityType_SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
"None"
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned,UserAssigned"
SystemAssigned,UserAssigned

MobileNetworkResourceId

Id string

Mobile network resource ID.

Id string

Mobile network resource ID.

id String

Mobile network resource ID.

id string

Mobile network resource ID.

id str

Mobile network resource ID.

id String

Mobile network resource ID.

MobileNetworkResourceIdResponse

Id string

Mobile network resource ID.

Id string

Mobile network resource ID.

id String

Mobile network resource ID.

id string

Mobile network resource ID.

id str

Mobile network resource ID.

id String

Mobile network resource ID.

PlatformConfiguration

Type string | Pulumi.AzureNative.MobileNetwork.PlatformType

The platform type where packet core is deployed.

AzureStackEdgeDevice Pulumi.AzureNative.MobileNetwork.Inputs.AzureStackEdgeDeviceResourceId

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

ConnectedCluster Pulumi.AzureNative.MobileNetwork.Inputs.ConnectedClusterResourceId

Azure Arc connected cluster where the packet core is deployed.

CustomLocation Pulumi.AzureNative.MobileNetwork.Inputs.CustomLocationResourceId

Azure Arc custom location where the packet core is deployed.

Type string | PlatformType

The platform type where packet core is deployed.

AzureStackEdgeDevice AzureStackEdgeDeviceResourceId

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

ConnectedCluster ConnectedClusterResourceId

Azure Arc connected cluster where the packet core is deployed.

CustomLocation CustomLocationResourceId

Azure Arc custom location where the packet core is deployed.

type String | PlatformType

The platform type where packet core is deployed.

azureStackEdgeDevice AzureStackEdgeDeviceResourceId

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

connectedCluster ConnectedClusterResourceId

Azure Arc connected cluster where the packet core is deployed.

customLocation CustomLocationResourceId

Azure Arc custom location where the packet core is deployed.

type string | PlatformType

The platform type where packet core is deployed.

azureStackEdgeDevice AzureStackEdgeDeviceResourceId

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

connectedCluster ConnectedClusterResourceId

Azure Arc connected cluster where the packet core is deployed.

customLocation CustomLocationResourceId

Azure Arc custom location where the packet core is deployed.

type str | PlatformType

The platform type where packet core is deployed.

azure_stack_edge_device AzureStackEdgeDeviceResourceId

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

connected_cluster ConnectedClusterResourceId

Azure Arc connected cluster where the packet core is deployed.

custom_location CustomLocationResourceId

Azure Arc custom location where the packet core is deployed.

type String | "AKS-HCI" | "BaseVM"

The platform type where packet core is deployed.

azureStackEdgeDevice Property Map

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

connectedCluster Property Map

Azure Arc connected cluster where the packet core is deployed.

customLocation Property Map

Azure Arc custom location where the packet core is deployed.

PlatformConfigurationResponse

Type string

The platform type where packet core is deployed.

AzureStackEdgeDevice Pulumi.AzureNative.MobileNetwork.Inputs.AzureStackEdgeDeviceResourceIdResponse

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

ConnectedCluster Pulumi.AzureNative.MobileNetwork.Inputs.ConnectedClusterResourceIdResponse

Azure Arc connected cluster where the packet core is deployed.

CustomLocation Pulumi.AzureNative.MobileNetwork.Inputs.CustomLocationResourceIdResponse

Azure Arc custom location where the packet core is deployed.

Type string

The platform type where packet core is deployed.

AzureStackEdgeDevice AzureStackEdgeDeviceResourceIdResponse

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

ConnectedCluster ConnectedClusterResourceIdResponse

Azure Arc connected cluster where the packet core is deployed.

CustomLocation CustomLocationResourceIdResponse

Azure Arc custom location where the packet core is deployed.

type String

The platform type where packet core is deployed.

azureStackEdgeDevice AzureStackEdgeDeviceResourceIdResponse

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

connectedCluster ConnectedClusterResourceIdResponse

Azure Arc connected cluster where the packet core is deployed.

customLocation CustomLocationResourceIdResponse

Azure Arc custom location where the packet core is deployed.

type string

The platform type where packet core is deployed.

azureStackEdgeDevice AzureStackEdgeDeviceResourceIdResponse

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

connectedCluster ConnectedClusterResourceIdResponse

Azure Arc connected cluster where the packet core is deployed.

customLocation CustomLocationResourceIdResponse

Azure Arc custom location where the packet core is deployed.

type str

The platform type where packet core is deployed.

azure_stack_edge_device AzureStackEdgeDeviceResourceIdResponse

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

connected_cluster ConnectedClusterResourceIdResponse

Azure Arc connected cluster where the packet core is deployed.

custom_location CustomLocationResourceIdResponse

Azure Arc custom location where the packet core is deployed.

type String

The platform type where packet core is deployed.

azureStackEdgeDevice Property Map

The Azure Stack Edge device where where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.

connectedCluster Property Map

Azure Arc connected cluster where the packet core is deployed.

customLocation Property Map

Azure Arc custom location where the packet core is deployed.

PlatformType

AKS_HCI
AKS-HCI

If this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster" which takes precedence over "azureStackEdgeDevice".

BaseVM
BaseVM

If this option is chosen, you must set one of "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster".

PlatformType_AKS_HCI
AKS-HCI

If this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster" which takes precedence over "azureStackEdgeDevice".

PlatformTypeBaseVM
BaseVM

If this option is chosen, you must set one of "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster".

AKSHCI
AKS-HCI

If this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster" which takes precedence over "azureStackEdgeDevice".

BaseVM
BaseVM

If this option is chosen, you must set one of "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster".

AKS_HCI
AKS-HCI

If this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster" which takes precedence over "azureStackEdgeDevice".

BaseVM
BaseVM

If this option is chosen, you must set one of "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster".

AK_S_HCI
AKS-HCI

If this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster" which takes precedence over "azureStackEdgeDevice".

BASE_VM
BaseVM

If this option is chosen, you must set one of "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster".

"AKS-HCI"
AKS-HCI

If this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster" which takes precedence over "azureStackEdgeDevice".

"BaseVM"
BaseVM

If this option is chosen, you must set one of "connectedCluster" or "customLocation". If multiple are set then "customLocation" will take precedence over "connectedCluster".

SystemDataResponse

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string

The type of identity that created the resource.

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string

The type of identity that last modified the resource.

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string

The type of identity that created the resource.

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string

The type of identity that last modified the resource.

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String

The type of identity that created the resource.

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String

The type of identity that last modified the resource.

createdAt string

The timestamp of resource creation (UTC).

createdBy string

The identity that created the resource.

createdByType string

The type of identity that created the resource.

lastModifiedAt string

The timestamp of resource last modification (UTC)

lastModifiedBy string

The identity that last modified the resource.

lastModifiedByType string

The type of identity that last modified the resource.

created_at str

The timestamp of resource creation (UTC).

created_by str

The identity that created the resource.

created_by_type str

The type of identity that created the resource.

last_modified_at str

The timestamp of resource last modification (UTC)

last_modified_by str

The identity that last modified the resource.

last_modified_by_type str

The type of identity that last modified the resource.

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String

The type of identity that created the resource.

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String

The type of identity that last modified the resource.

UserAssignedIdentityResponse

ClientId string

The client ID of the assigned identity.

PrincipalId string

The principal ID of the assigned identity.

ClientId string

The client ID of the assigned identity.

PrincipalId string

The principal ID of the assigned identity.

clientId String

The client ID of the assigned identity.

principalId String

The principal ID of the assigned identity.

clientId string

The client ID of the assigned identity.

principalId string

The principal ID of the assigned identity.

client_id str

The client ID of the assigned identity.

principal_id str

The principal ID of the assigned identity.

clientId String

The client ID of the assigned identity.

principalId String

The principal ID of the assigned identity.

Import

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

$ pulumi import azure-native:mobilenetwork:PacketCoreControlPlane TestPacketCoreCP /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0