azure-native.mobilenetwork.PacketCoreControlPlane
Explore with Pulumi AI
Packet core control plane resource. Azure REST API version: 2023-06-01. Prior API version in Azure Native 1.x: 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 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=azure_native.mobilenetwork.CoreNetworkType.CORE_NETWORK_TYPE_5_GC,
installation=azure_native.mobilenetwork.InstallationArgs(
desired_state=azure_native.mobilenetwork.DesiredInstallationState.INSTALLED,
),
local_diagnostics_access=azure_native.mobilenetwork.LocalDiagnosticsAccessConfigurationArgs(
authentication_type=azure_native.mobilenetwork.AuthenticationType.AAD,
https_server_certificate=azure_native.mobilenetwork.HttpsServerCertificateArgs(
certificate_url="https://contosovault.vault.azure.net/certificates/ingress",
),
),
location="eastus",
packet_core_control_plane_name="TestPacketCoreCP",
platform=azure_native.mobilenetwork.PlatformConfigurationArgs(
azure_stack_edge_device=azure_native.mobilenetwork.AzureStackEdgeDeviceResourceIdArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice",
),
connected_cluster=azure_native.mobilenetwork.ConnectedClusterResourceIdArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster",
),
custom_location=azure_native.mobilenetwork.CustomLocationResourceIdArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation",
),
type=azure_native.mobilenetwork.PlatformType.AK_S_HCI,
),
resource_group_name="rg1",
sites=[azure_native.mobilenetwork.SiteResourceIdArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/sites/testSite",
)],
sku=azure_native.mobilenetwork.BillingSku.G0,
ue_mtu=1600,
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: azure_native.mobilenetwork.CoreNetworkType.CoreNetworkType_5GC,
installation: {
desiredState: azure_native.mobilenetwork.DesiredInstallationState.Installed,
},
localDiagnosticsAccess: {
authenticationType: azure_native.mobilenetwork.AuthenticationType.AAD,
httpsServerCertificate: {
certificateUrl: "https://contosovault.vault.azure.net/certificates/ingress",
},
},
location: "eastus",
packetCoreControlPlaneName: "TestPacketCoreCP",
platform: {
azureStackEdgeDevice: {
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice",
},
connectedCluster: {
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster",
},
customLocation: {
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation",
},
type: azure_native.mobilenetwork.PlatformType.AKS_HCI,
},
resourceGroupName: "rg1",
sites: [{
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/sites/testSite",
}],
sku: azure_native.mobilenetwork.BillingSku.G0,
ueMtu: 1600,
version: "0.2.0",
});
resources:
packetCoreControlPlane:
type: azure-native:mobilenetwork:PacketCoreControlPlane
properties:
controlPlaneAccessInterface:
name: N2
coreNetworkTechnology: 5GC
installation:
desiredState: Installed
localDiagnosticsAccess:
authenticationType: AAD
httpsServerCertificate:
certificateUrl: https://contosovault.vault.azure.net/certificates/ingress
location: eastus
packetCoreControlPlaneName: TestPacketCoreCP
platform:
azureStackEdgeDevice:
id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/TestAzureStackEdgeDevice
connectedCluster:
id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/TestConnectedCluster
customLocation:
id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ExtendedLocation/customLocations/TestCustomLocation
type: AKS-HCI
resourceGroupName: rg1
sites:
- id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/sites/testSite
sku: G0
ueMtu: 1600
version: 0.2.0
Create PacketCoreControlPlane Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PacketCoreControlPlane(name: string, args: PacketCoreControlPlaneArgs, opts?: CustomResourceOptions);
@overload
def PacketCoreControlPlane(resource_name: str,
args: PacketCoreControlPlaneArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PacketCoreControlPlane(resource_name: str,
opts: Optional[ResourceOptions] = None,
local_diagnostics_access: Optional[LocalDiagnosticsAccessConfigurationArgs] = None,
sku: Optional[Union[str, BillingSku]] = None,
sites: Optional[Sequence[SiteResourceIdArgs]] = None,
resource_group_name: Optional[str] = None,
control_plane_access_interface: Optional[InterfacePropertiesArgs] = None,
platform: Optional[PlatformConfigurationArgs] = None,
installation: Optional[InstallationArgs] = None,
location: Optional[str] = None,
packet_core_control_plane_name: Optional[str] = None,
interop_settings: Optional[Any] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
diagnostics_upload: Optional[DiagnosticsUploadConfigurationArgs] = None,
core_network_technology: Optional[Union[str, CoreNetworkType]] = None,
tags: Optional[Mapping[str, str]] = None,
ue_mtu: Optional[int] = None,
version: Optional[str] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var packetCoreControlPlaneResource = new AzureNative.MobileNetwork.PacketCoreControlPlane("packetCoreControlPlaneResource", new()
{
LocalDiagnosticsAccess = new AzureNative.MobileNetwork.Inputs.LocalDiagnosticsAccessConfigurationArgs
{
AuthenticationType = "string",
HttpsServerCertificate = new AzureNative.MobileNetwork.Inputs.HttpsServerCertificateArgs
{
CertificateUrl = "string",
},
},
Sku = "string",
Sites = new[]
{
new AzureNative.MobileNetwork.Inputs.SiteResourceIdArgs
{
Id = "string",
},
},
ResourceGroupName = "string",
ControlPlaneAccessInterface = new AzureNative.MobileNetwork.Inputs.InterfacePropertiesArgs
{
Ipv4Address = "string",
Ipv4Gateway = "string",
Ipv4Subnet = "string",
Name = "string",
},
Platform = new AzureNative.MobileNetwork.Inputs.PlatformConfigurationArgs
{
Type = "string",
AzureStackEdgeDevice = new AzureNative.MobileNetwork.Inputs.AzureStackEdgeDeviceResourceIdArgs
{
Id = "string",
},
AzureStackHciCluster = new AzureNative.MobileNetwork.Inputs.AzureStackHCIClusterResourceIdArgs
{
Id = "string",
},
ConnectedCluster = new AzureNative.MobileNetwork.Inputs.ConnectedClusterResourceIdArgs
{
Id = "string",
},
CustomLocation = new AzureNative.MobileNetwork.Inputs.CustomLocationResourceIdArgs
{
Id = "string",
},
},
Installation = new AzureNative.MobileNetwork.Inputs.InstallationArgs
{
DesiredState = "string",
},
Location = "string",
PacketCoreControlPlaneName = "string",
InteropSettings = "any",
Identity = new AzureNative.MobileNetwork.Inputs.ManagedServiceIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
DiagnosticsUpload = new AzureNative.MobileNetwork.Inputs.DiagnosticsUploadConfigurationArgs
{
StorageAccountContainerUrl = "string",
},
CoreNetworkTechnology = "string",
Tags =
{
{ "string", "string" },
},
UeMtu = 0,
Version = "string",
});
example, err := mobilenetwork.NewPacketCoreControlPlane(ctx, "packetCoreControlPlaneResource", &mobilenetwork.PacketCoreControlPlaneArgs{
LocalDiagnosticsAccess: &mobilenetwork.LocalDiagnosticsAccessConfigurationArgs{
AuthenticationType: pulumi.String("string"),
HttpsServerCertificate: &mobilenetwork.HttpsServerCertificateArgs{
CertificateUrl: pulumi.String("string"),
},
},
Sku: pulumi.String("string"),
Sites: mobilenetwork.SiteResourceIdArray{
&mobilenetwork.SiteResourceIdArgs{
Id: pulumi.String("string"),
},
},
ResourceGroupName: pulumi.String("string"),
ControlPlaneAccessInterface: &mobilenetwork.InterfacePropertiesArgs{
Ipv4Address: pulumi.String("string"),
Ipv4Gateway: pulumi.String("string"),
Ipv4Subnet: pulumi.String("string"),
Name: pulumi.String("string"),
},
Platform: &mobilenetwork.PlatformConfigurationArgs{
Type: pulumi.String("string"),
AzureStackEdgeDevice: &mobilenetwork.AzureStackEdgeDeviceResourceIdArgs{
Id: pulumi.String("string"),
},
AzureStackHciCluster: &mobilenetwork.AzureStackHCIClusterResourceIdArgs{
Id: pulumi.String("string"),
},
ConnectedCluster: &mobilenetwork.ConnectedClusterResourceIdArgs{
Id: pulumi.String("string"),
},
CustomLocation: &mobilenetwork.CustomLocationResourceIdArgs{
Id: pulumi.String("string"),
},
},
Installation: &mobilenetwork.InstallationArgs{
DesiredState: pulumi.String("string"),
},
Location: pulumi.String("string"),
PacketCoreControlPlaneName: pulumi.String("string"),
InteropSettings: pulumi.Any("any"),
Identity: &mobilenetwork.ManagedServiceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
DiagnosticsUpload: &mobilenetwork.DiagnosticsUploadConfigurationArgs{
StorageAccountContainerUrl: pulumi.String("string"),
},
CoreNetworkTechnology: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
UeMtu: pulumi.Int(0),
Version: pulumi.String("string"),
})
var packetCoreControlPlaneResource = new PacketCoreControlPlane("packetCoreControlPlaneResource", PacketCoreControlPlaneArgs.builder()
.localDiagnosticsAccess(LocalDiagnosticsAccessConfigurationArgs.builder()
.authenticationType("string")
.httpsServerCertificate(HttpsServerCertificateArgs.builder()
.certificateUrl("string")
.build())
.build())
.sku("string")
.sites(SiteResourceIdArgs.builder()
.id("string")
.build())
.resourceGroupName("string")
.controlPlaneAccessInterface(InterfacePropertiesArgs.builder()
.ipv4Address("string")
.ipv4Gateway("string")
.ipv4Subnet("string")
.name("string")
.build())
.platform(PlatformConfigurationArgs.builder()
.type("string")
.azureStackEdgeDevice(AzureStackEdgeDeviceResourceIdArgs.builder()
.id("string")
.build())
.azureStackHciCluster(AzureStackHCIClusterResourceIdArgs.builder()
.id("string")
.build())
.connectedCluster(ConnectedClusterResourceIdArgs.builder()
.id("string")
.build())
.customLocation(CustomLocationResourceIdArgs.builder()
.id("string")
.build())
.build())
.installation(InstallationArgs.builder()
.desiredState("string")
.build())
.location("string")
.packetCoreControlPlaneName("string")
.interopSettings("any")
.identity(ManagedServiceIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.diagnosticsUpload(DiagnosticsUploadConfigurationArgs.builder()
.storageAccountContainerUrl("string")
.build())
.coreNetworkTechnology("string")
.tags(Map.of("string", "string"))
.ueMtu(0)
.version("string")
.build());
packet_core_control_plane_resource = azure_native.mobilenetwork.PacketCoreControlPlane("packetCoreControlPlaneResource",
local_diagnostics_access=azure_native.mobilenetwork.LocalDiagnosticsAccessConfigurationArgs(
authentication_type="string",
https_server_certificate=azure_native.mobilenetwork.HttpsServerCertificateArgs(
certificate_url="string",
),
),
sku="string",
sites=[azure_native.mobilenetwork.SiteResourceIdArgs(
id="string",
)],
resource_group_name="string",
control_plane_access_interface=azure_native.mobilenetwork.InterfacePropertiesArgs(
ipv4_address="string",
ipv4_gateway="string",
ipv4_subnet="string",
name="string",
),
platform=azure_native.mobilenetwork.PlatformConfigurationArgs(
type="string",
azure_stack_edge_device=azure_native.mobilenetwork.AzureStackEdgeDeviceResourceIdArgs(
id="string",
),
azure_stack_hci_cluster=azure_native.mobilenetwork.AzureStackHCIClusterResourceIdArgs(
id="string",
),
connected_cluster=azure_native.mobilenetwork.ConnectedClusterResourceIdArgs(
id="string",
),
custom_location=azure_native.mobilenetwork.CustomLocationResourceIdArgs(
id="string",
),
),
installation=azure_native.mobilenetwork.InstallationArgs(
desired_state="string",
),
location="string",
packet_core_control_plane_name="string",
interop_settings="any",
identity=azure_native.mobilenetwork.ManagedServiceIdentityArgs(
type="string",
user_assigned_identities=["string"],
),
diagnostics_upload=azure_native.mobilenetwork.DiagnosticsUploadConfigurationArgs(
storage_account_container_url="string",
),
core_network_technology="string",
tags={
"string": "string",
},
ue_mtu=0,
version="string")
const packetCoreControlPlaneResource = new azure_native.mobilenetwork.PacketCoreControlPlane("packetCoreControlPlaneResource", {
localDiagnosticsAccess: {
authenticationType: "string",
httpsServerCertificate: {
certificateUrl: "string",
},
},
sku: "string",
sites: [{
id: "string",
}],
resourceGroupName: "string",
controlPlaneAccessInterface: {
ipv4Address: "string",
ipv4Gateway: "string",
ipv4Subnet: "string",
name: "string",
},
platform: {
type: "string",
azureStackEdgeDevice: {
id: "string",
},
azureStackHciCluster: {
id: "string",
},
connectedCluster: {
id: "string",
},
customLocation: {
id: "string",
},
},
installation: {
desiredState: "string",
},
location: "string",
packetCoreControlPlaneName: "string",
interopSettings: "any",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
diagnosticsUpload: {
storageAccountContainerUrl: "string",
},
coreNetworkTechnology: "string",
tags: {
string: "string",
},
ueMtu: 0,
version: "string",
});
type: azure-native:mobilenetwork:PacketCoreControlPlane
properties:
controlPlaneAccessInterface:
ipv4Address: string
ipv4Gateway: string
ipv4Subnet: string
name: string
coreNetworkTechnology: string
diagnosticsUpload:
storageAccountContainerUrl: string
identity:
type: string
userAssignedIdentities:
- string
installation:
desiredState: string
interopSettings: any
localDiagnosticsAccess:
authenticationType: string
httpsServerCertificate:
certificateUrl: string
location: string
packetCoreControlPlaneName: string
platform:
azureStackEdgeDevice:
id: string
azureStackHciCluster:
id: string
connectedCluster:
id: string
customLocation:
id: string
type: string
resourceGroupName: string
sites:
- id: string
sku: string
tags:
string: string
ueMtu: 0
version: string
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:
- Control
Plane Pulumi.Access Interface Azure Native. Mobile Network. Inputs. Interface Properties - 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.
- Local
Diagnostics Pulumi.Access Azure Native. Mobile Network. Inputs. Local Diagnostics Access Configuration - The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- Platform
Pulumi.
Azure Native. Mobile Network. Inputs. Platform Configuration - The platform where the packet core is deployed.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sites
List<Pulumi.
Azure Native. Mobile Network. Inputs. Site Resource Id> - 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.
- Sku
string | Pulumi.
Azure Native. Mobile Network. Billing Sku - The SKU defining the throughput and SIM allowances for this packet core control plane deployment.
- Core
Network string | Pulumi.Technology Azure Native. Mobile Network. Core Network Type - The core network technology generation (5G core or EPC / 4G core).
- Diagnostics
Upload Pulumi.Azure Native. Mobile Network. Inputs. Diagnostics Upload Configuration - Configuration for uploading packet core diagnostics
- Identity
Pulumi.
Azure Native. Mobile Network. Inputs. Managed Service Identity - The identity used to retrieve the ingress certificate from Azure key vault.
- Installation
Pulumi.
Azure Native. Mobile Network. Inputs. Installation - The installation state of the packet core control plane resource.
- Interop
Settings object - Settings to allow interoperability with third party components e.g. RANs and UEs.
- Location string
- The geo-location where the resource lives
- Packet
Core stringControl Plane Name - The name of the packet core control plane.
- Dictionary<string, string>
- Resource tags.
- Ue
Mtu 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.
- Version string
- The desired version of the packet core software.
- Control
Plane InterfaceAccess Interface Properties Args - 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.
- Local
Diagnostics LocalAccess Diagnostics Access Configuration Args - The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- Platform
Platform
Configuration Args - The platform where the packet core is deployed.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sites
[]Site
Resource Id Args - 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.
- Sku
string | Billing
Sku - The SKU defining the throughput and SIM allowances for this packet core control plane deployment.
- Core
Network string | CoreTechnology Network Type - The core network technology generation (5G core or EPC / 4G core).
- Diagnostics
Upload DiagnosticsUpload Configuration Args - Configuration for uploading packet core diagnostics
- Identity
Managed
Service Identity Args - The identity used to retrieve the ingress certificate from Azure key vault.
- Installation
Installation
Args - The installation state of the packet core control plane resource.
- Interop
Settings interface{} - Settings to allow interoperability with third party components e.g. RANs and UEs.
- Location string
- The geo-location where the resource lives
- Packet
Core stringControl Plane Name - The name of the packet core control plane.
- map[string]string
- Resource tags.
- Ue
Mtu 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.
- Version string
- The desired version of the packet core software.
- control
Plane InterfaceAccess Interface Properties - 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.
- local
Diagnostics LocalAccess Diagnostics Access Configuration - The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- platform
Platform
Configuration - The platform where the packet core is deployed.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sites
List<Site
Resource Id> - 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.
- sku
String | Billing
Sku - The SKU defining the throughput and SIM allowances for this packet core control plane deployment.
- core
Network String | CoreTechnology Network Type - The core network technology generation (5G core or EPC / 4G core).
- diagnostics
Upload DiagnosticsUpload Configuration - Configuration for uploading packet core diagnostics
- identity
Managed
Service Identity - The identity used to retrieve the ingress certificate from Azure key vault.
- installation Installation
- The installation state of the packet core control plane resource.
- interop
Settings Object - Settings to allow interoperability with third party components e.g. RANs and UEs.
- location String
- The geo-location where the resource lives
- packet
Core StringControl Plane Name - The name of the packet core control plane.
- Map<String,String>
- Resource tags.
- ue
Mtu Integer - 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.
- version String
- The desired version of the packet core software.
- control
Plane InterfaceAccess Interface Properties - 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.
- local
Diagnostics LocalAccess Diagnostics Access Configuration - The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- platform
Platform
Configuration - The platform where the packet core is deployed.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- sites
Site
Resource Id[] - 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.
- sku
string | Billing
Sku - The SKU defining the throughput and SIM allowances for this packet core control plane deployment.
- core
Network string | CoreTechnology Network Type - The core network technology generation (5G core or EPC / 4G core).
- diagnostics
Upload DiagnosticsUpload Configuration - Configuration for uploading packet core diagnostics
- identity
Managed
Service Identity - The identity used to retrieve the ingress certificate from Azure key vault.
- installation Installation
- The installation state of the packet core control plane resource.
- interop
Settings any - Settings to allow interoperability with third party components e.g. RANs and UEs.
- location string
- The geo-location where the resource lives
- packet
Core stringControl Plane Name - The name of the packet core control plane.
- {[key: string]: string}
- Resource tags.
- ue
Mtu number - 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.
- version string
- The desired version of the packet core software.
- control_
plane_ Interfaceaccess_ interface Properties Args - 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.
- local_
diagnostics_ Localaccess Diagnostics Access Configuration Args - The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- platform
Platform
Configuration Args - The platform where the packet core is deployed.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- sites
Sequence[Site
Resource Id Args] - 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.
- sku
str | Billing
Sku - The SKU defining the throughput and SIM allowances for this packet core control plane deployment.
- core_
network_ str | Coretechnology Network Type - The core network technology generation (5G core or EPC / 4G core).
- diagnostics_
upload DiagnosticsUpload Configuration Args - Configuration for uploading packet core diagnostics
- identity
Managed
Service Identity Args - The identity used to retrieve the ingress certificate from Azure key vault.
- installation
Installation
Args - The installation state of the packet core control plane resource.
- interop_
settings Any - Settings to allow interoperability with third party components e.g. RANs and UEs.
- location str
- The geo-location where the resource lives
- packet_
core_ strcontrol_ plane_ name - The name of the packet core control plane.
- Mapping[str, str]
- Resource tags.
- ue_
mtu 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.
- version str
- The desired version of the packet core software.
- control
Plane Property MapAccess Interface - 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.
- local
Diagnostics Property MapAccess - The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- platform Property Map
- The platform where the packet core is deployed.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sites List<Property Map>
- 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.
- sku String | "G0" | "G1" | "G2" | "G5" | "G10"
- The SKU defining the throughput and SIM allowances for this packet core control plane deployment.
- core
Network String | "5GC" | "EPC" | "EPC + 5GC"Technology - The core network technology generation (5G core or EPC / 4G core).
- diagnostics
Upload Property Map - Configuration for uploading packet core diagnostics
- identity Property Map
- The identity used to retrieve the ingress certificate from Azure key vault.
- installation Property Map
- The installation state of the packet core control plane resource.
- interop
Settings Any - Settings to allow interoperability with third party components e.g. RANs and UEs.
- location String
- The geo-location where the resource lives
- packet
Core StringControl Plane Name - The name of the packet core control plane.
- Map<String>
- Resource tags.
- ue
Mtu Number - 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.
- version String
- The desired version of the packet core software.
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.
- Installed
Version string - The currently installed version of the packet core software.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the packet core control plane resource.
- Rollback
Version string - The previous version of the packet core software that was deployed. Used when performing the rollback action.
- System
Data Pulumi.Azure Native. Mobile Network. Outputs. System Data Response - 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.
- Installed
Version string - The currently installed version of the packet core software.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the packet core control plane resource.
- Rollback
Version string - The previous version of the packet core software that was deployed. Used when performing the rollback action.
- System
Data SystemData Response - 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.
- installed
Version String - The currently installed version of the packet core software.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the packet core control plane resource.
- rollback
Version String - The previous version of the packet core software that was deployed. Used when performing the rollback action.
- system
Data SystemData Response - 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.
- installed
Version string - The currently installed version of the packet core software.
- name string
- The name of the resource
- provisioning
State string - The provisioning state of the packet core control plane resource.
- rollback
Version string - The previous version of the packet core software that was deployed. Used when performing the rollback action.
- system
Data SystemData Response - 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.
- installed_
version str - The currently installed version of the packet core software.
- name str
- The name of the resource
- provisioning_
state str - The provisioning state of the packet core control plane resource.
- rollback_
version str - The previous version of the packet core software that was deployed. Used when performing the rollback action.
- system_
data SystemData Response - 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.
- installed
Version String - The currently installed version of the packet core software.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the packet core control plane resource.
- rollback
Version String - The previous version of the packet core software that was deployed. Used when performing the rollback action.
- system
Data 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
AsyncOperationIdResponse, AsyncOperationIdResponseArgs
- Id string
- Azure Async Operation ID.
- Id string
- Azure Async Operation ID.
- id String
- Azure Async Operation ID.
- id string
- Azure Async Operation ID.
- id str
- Azure Async Operation ID.
- id String
- Azure Async Operation ID.
AuthenticationType, AuthenticationTypeArgs
- AAD
- AADUse AAD SSO to authenticate the user (this requires internet access).
- Password
- PasswordUse locally stored passwords to authenticate the user.
- Authentication
Type AAD - AADUse AAD SSO to authenticate the user (this requires internet access).
- Authentication
Type Password - PasswordUse locally stored passwords to authenticate the user.
- AAD
- AADUse AAD SSO to authenticate the user (this requires internet access).
- Password
- PasswordUse locally stored passwords to authenticate the user.
- AAD
- AADUse AAD SSO to authenticate the user (this requires internet access).
- Password
- PasswordUse locally stored passwords to authenticate the user.
- AAD
- AADUse AAD SSO to authenticate the user (this requires internet access).
- PASSWORD
- PasswordUse locally stored passwords to authenticate the user.
- "AAD"
- AADUse AAD SSO to authenticate the user (this requires internet access).
- "Password"
- PasswordUse locally stored passwords to authenticate the user.
AzureStackEdgeDeviceResourceId, AzureStackEdgeDeviceResourceIdArgs
- 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, AzureStackEdgeDeviceResourceIdResponseArgs
- 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.
AzureStackHCIClusterResourceId, AzureStackHCIClusterResourceIdArgs
- Id string
- Azure Stack HCI cluster resource ID.
- Id string
- Azure Stack HCI cluster resource ID.
- id String
- Azure Stack HCI cluster resource ID.
- id string
- Azure Stack HCI cluster resource ID.
- id str
- Azure Stack HCI cluster resource ID.
- id String
- Azure Stack HCI cluster resource ID.
AzureStackHCIClusterResourceIdResponse, AzureStackHCIClusterResourceIdResponseArgs
- Id string
- Azure Stack HCI cluster resource ID.
- Id string
- Azure Stack HCI cluster resource ID.
- id String
- Azure Stack HCI cluster resource ID.
- id string
- Azure Stack HCI cluster resource ID.
- id str
- Azure Stack HCI cluster resource ID.
- id String
- Azure Stack HCI cluster resource ID.
BillingSku, BillingSkuArgs
- G0
- G0100 Mbps, 20 active SIMs plan, 2 RANs
- G1
- G11 Gbps, 100 active SIMs plan, 5 RANs
- G2
- G22 Gbps, 200 active SIMs plan, 10 RANs
- G5
- G55 Gbps, 500 active SIMs plan
- G10
- G1010 Gbps, 1000 active SIMs plan
- Billing
Sku G0 - G0100 Mbps, 20 active SIMs plan, 2 RANs
- Billing
Sku G1 - G11 Gbps, 100 active SIMs plan, 5 RANs
- Billing
Sku G2 - G22 Gbps, 200 active SIMs plan, 10 RANs
- Billing
Sku G5 - G55 Gbps, 500 active SIMs plan
- Billing
Sku G10 - G1010 Gbps, 1000 active SIMs plan
- G0
- G0100 Mbps, 20 active SIMs plan, 2 RANs
- G1
- G11 Gbps, 100 active SIMs plan, 5 RANs
- G2
- G22 Gbps, 200 active SIMs plan, 10 RANs
- G5
- G55 Gbps, 500 active SIMs plan
- G10
- G1010 Gbps, 1000 active SIMs plan
- G0
- G0100 Mbps, 20 active SIMs plan, 2 RANs
- G1
- G11 Gbps, 100 active SIMs plan, 5 RANs
- G2
- G22 Gbps, 200 active SIMs plan, 10 RANs
- G5
- G55 Gbps, 500 active SIMs plan
- G10
- G1010 Gbps, 1000 active SIMs plan
- G0
- G0100 Mbps, 20 active SIMs plan, 2 RANs
- G1
- G11 Gbps, 100 active SIMs plan, 5 RANs
- G2
- G22 Gbps, 200 active SIMs plan, 10 RANs
- G5
- G55 Gbps, 500 active SIMs plan
- G10
- G1010 Gbps, 1000 active SIMs plan
- "G0"
- G0100 Mbps, 20 active SIMs plan, 2 RANs
- "G1"
- G11 Gbps, 100 active SIMs plan, 5 RANs
- "G2"
- G22 Gbps, 200 active SIMs plan, 10 RANs
- "G5"
- G55 Gbps, 500 active SIMs plan
- "G10"
- G1010 Gbps, 1000 active SIMs plan
CertificateProvisioningResponse, CertificateProvisioningResponseArgs
ConnectedClusterResourceId, ConnectedClusterResourceIdArgs
- 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, ConnectedClusterResourceIdResponseArgs
- 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, CoreNetworkTypeArgs
- Core
Network Type_5GC - 5GC5G core
- EPC
- EPCEPC / 4G core
- EPC_5GC
- EPC + 5GCCombined EPC / 4G and 5G core
- Core
Network Type_5GC - 5GC5G core
- Core
Network Type EPC - EPCEPC / 4G core
- Core
Network Type_EPC_5GC - EPC + 5GCCombined EPC / 4G and 5G core
- _5GC
- 5GC5G core
- EPC
- EPCEPC / 4G core
- EPC_5GC
- EPC + 5GCCombined EPC / 4G and 5G core
- Core
Network Type_5GC - 5GC5G core
- EPC
- EPCEPC / 4G core
- EPC_5GC
- EPC + 5GCCombined EPC / 4G and 5G core
- CORE_NETWORK_TYPE_5_GC
- 5GC5G core
- EPC
- EPCEPC / 4G core
- EP_C_5_GC
- EPC + 5GCCombined EPC / 4G and 5G core
- "5GC"
- 5GC5G core
- "EPC"
- EPCEPC / 4G core
- "EPC + 5GC"
- EPC + 5GCCombined EPC / 4G and 5G core
CustomLocationResourceId, CustomLocationResourceIdArgs
- 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, CustomLocationResourceIdResponseArgs
- 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.
DesiredInstallationState, DesiredInstallationStateArgs
- Uninstalled
- UninstalledDon't install the packet core.
- Installed
- InstalledInstall the packet core.
- Desired
Installation State Uninstalled - UninstalledDon't install the packet core.
- Desired
Installation State Installed - InstalledInstall the packet core.
- Uninstalled
- UninstalledDon't install the packet core.
- Installed
- InstalledInstall the packet core.
- Uninstalled
- UninstalledDon't install the packet core.
- Installed
- InstalledInstall the packet core.
- UNINSTALLED
- UninstalledDon't install the packet core.
- INSTALLED
- InstalledInstall the packet core.
- "Uninstalled"
- UninstalledDon't install the packet core.
- "Installed"
- InstalledInstall the packet core.
DiagnosticsUploadConfiguration, DiagnosticsUploadConfigurationArgs
- Storage
Account stringContainer Url - The Storage Account Container URL to upload diagnostics to.
- Storage
Account stringContainer Url - The Storage Account Container URL to upload diagnostics to.
- storage
Account StringContainer Url - The Storage Account Container URL to upload diagnostics to.
- storage
Account stringContainer Url - The Storage Account Container URL to upload diagnostics to.
- storage_
account_ strcontainer_ url - The Storage Account Container URL to upload diagnostics to.
- storage
Account StringContainer Url - The Storage Account Container URL to upload diagnostics to.
DiagnosticsUploadConfigurationResponse, DiagnosticsUploadConfigurationResponseArgs
- Storage
Account stringContainer Url - The Storage Account Container URL to upload diagnostics to.
- Storage
Account stringContainer Url - The Storage Account Container URL to upload diagnostics to.
- storage
Account StringContainer Url - The Storage Account Container URL to upload diagnostics to.
- storage
Account stringContainer Url - The Storage Account Container URL to upload diagnostics to.
- storage_
account_ strcontainer_ url - The Storage Account Container URL to upload diagnostics to.
- storage
Account StringContainer Url - The Storage Account Container URL to upload diagnostics to.
HttpsServerCertificate, HttpsServerCertificateArgs
- Certificate
Url string - The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
- Certificate
Url string - The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
- certificate
Url String - The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
- certificate
Url 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.
- certificate
Url String - The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
HttpsServerCertificateResponse, HttpsServerCertificateResponseArgs
- Certificate
Url string - The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
- Provisioning
Pulumi.
Azure Native. Mobile Network. Inputs. Certificate Provisioning Response - The provisioning state of the certificate.
- Certificate
Url string - The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
- Provisioning
Certificate
Provisioning Response - The provisioning state of the certificate.
- certificate
Url String - The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
- provisioning
Certificate
Provisioning Response - The provisioning state of the certificate.
- certificate
Url string - The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
- provisioning
Certificate
Provisioning Response - The provisioning state of the certificate.
- certificate_
url str - The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
- provisioning
Certificate
Provisioning Response - The provisioning state of the certificate.
- certificate
Url String - The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
- provisioning Property Map
- The provisioning state of the certificate.
Installation, InstallationArgs
- Desired
State string | Pulumi.Azure Native. Mobile Network. Desired Installation State - The desired installation state
- Desired
State string | DesiredInstallation State - The desired installation state
- desired
State String | DesiredInstallation State - The desired installation state
- desired
State string | DesiredInstallation State - The desired installation state
- desired_
state str | DesiredInstallation State - The desired installation state
- desired
State String | "Uninstalled" | "Installed" - The desired installation state
InstallationResponse, InstallationResponseArgs
- Operation
Pulumi.
Azure Native. Mobile Network. Inputs. Async Operation Id Response - A reference to an in-progress installation operation
- Reasons List<string>
- Reason(s) for the current installation state of the packet core.
- Reinstall
Required string - Whether a reinstall of the packet core is required to pick up the latest configuration changes.
- State string
- Installation state
- Desired
State string - The desired installation state
- Operation
Async
Operation Id Response - A reference to an in-progress installation operation
- Reasons []string
- Reason(s) for the current installation state of the packet core.
- Reinstall
Required string - Whether a reinstall of the packet core is required to pick up the latest configuration changes.
- State string
- Installation state
- Desired
State string - The desired installation state
- operation
Async
Operation Id Response - A reference to an in-progress installation operation
- reasons List<String>
- Reason(s) for the current installation state of the packet core.
- reinstall
Required String - Whether a reinstall of the packet core is required to pick up the latest configuration changes.
- state String
- Installation state
- desired
State String - The desired installation state
- operation
Async
Operation Id Response - A reference to an in-progress installation operation
- reasons string[]
- Reason(s) for the current installation state of the packet core.
- reinstall
Required string - Whether a reinstall of the packet core is required to pick up the latest configuration changes.
- state string
- Installation state
- desired
State string - The desired installation state
- operation
Async
Operation Id Response - A reference to an in-progress installation operation
- reasons Sequence[str]
- Reason(s) for the current installation state of the packet core.
- reinstall_
required str - Whether a reinstall of the packet core is required to pick up the latest configuration changes.
- state str
- Installation state
- desired_
state str - The desired installation state
- operation Property Map
- A reference to an in-progress installation operation
- reasons List<String>
- Reason(s) for the current installation state of the packet core.
- reinstall
Required String - Whether a reinstall of the packet core is required to pick up the latest configuration changes.
- state String
- Installation state
- desired
State String - The desired installation state
InterfaceProperties, InterfacePropertiesArgs
- 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, InterfacePropertiesResponseArgs
- 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.
LocalDiagnosticsAccessConfiguration, LocalDiagnosticsAccessConfigurationArgs
- Authentication
Type string | Pulumi.Azure Native. Mobile Network. Authentication Type - How to authenticate users who access local diagnostics APIs.
- Https
Server Pulumi.Certificate Azure Native. Mobile Network. Inputs. Https Server Certificate - The HTTPS server TLS certificate used to secure local access to diagnostics.
- Authentication
Type string | AuthenticationType - How to authenticate users who access local diagnostics APIs.
- Https
Server HttpsCertificate Server Certificate - The HTTPS server TLS certificate used to secure local access to diagnostics.
- authentication
Type String | AuthenticationType - How to authenticate users who access local diagnostics APIs.
- https
Server HttpsCertificate Server Certificate - The HTTPS server TLS certificate used to secure local access to diagnostics.
- authentication
Type string | AuthenticationType - How to authenticate users who access local diagnostics APIs.
- https
Server HttpsCertificate Server Certificate - The HTTPS server TLS certificate used to secure local access to diagnostics.
- authentication_
type str | AuthenticationType - How to authenticate users who access local diagnostics APIs.
- https_
server_ Httpscertificate Server Certificate - The HTTPS server TLS certificate used to secure local access to diagnostics.
- authentication
Type String | "AAD" | "Password" - How to authenticate users who access local diagnostics APIs.
- https
Server Property MapCertificate - The HTTPS server TLS certificate used to secure local access to diagnostics.
LocalDiagnosticsAccessConfigurationResponse, LocalDiagnosticsAccessConfigurationResponseArgs
- Authentication
Type string - How to authenticate users who access local diagnostics APIs.
- Https
Server Pulumi.Certificate Azure Native. Mobile Network. Inputs. Https Server Certificate Response - The HTTPS server TLS certificate used to secure local access to diagnostics.
- Authentication
Type string - How to authenticate users who access local diagnostics APIs.
- Https
Server HttpsCertificate Server Certificate Response - The HTTPS server TLS certificate used to secure local access to diagnostics.
- authentication
Type String - How to authenticate users who access local diagnostics APIs.
- https
Server HttpsCertificate Server Certificate Response - The HTTPS server TLS certificate used to secure local access to diagnostics.
- authentication
Type string - How to authenticate users who access local diagnostics APIs.
- https
Server HttpsCertificate Server Certificate Response - The HTTPS server TLS certificate used to secure local access to diagnostics.
- authentication_
type str - How to authenticate users who access local diagnostics APIs.
- https_
server_ Httpscertificate Server Certificate Response - The HTTPS server TLS certificate used to secure local access to diagnostics.
- authentication
Type String - How to authenticate users who access local diagnostics APIs.
- https
Server Property MapCertificate - The HTTPS server TLS certificate used to secure local access to diagnostics.
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Mobile Network. Managed Service Identity Type - Type of managed service identity (currently only UserAssigned allowed).
- User
Assigned List<string>Identities - 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 | Managed
Service Identity Type - Type of managed service identity (currently only UserAssigned allowed).
- User
Assigned []stringIdentities - 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 | Managed
Service Identity Type - Type of managed service identity (currently only UserAssigned allowed).
- user
Assigned List<String>Identities - 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 | Managed
Service Identity Type - Type of managed service identity (currently only UserAssigned allowed).
- user
Assigned string[]Identities - 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 | Managed
Service Identity Type - Type of managed service identity (currently only UserAssigned allowed).
- user_
assigned_ Sequence[str]identities - 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" | "User
Assigned" - Type of managed service identity (currently only UserAssigned allowed).
- user
Assigned List<String>Identities - 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, ManagedServiceIdentityResponseArgs
- Type string
- Type of managed service identity (currently only UserAssigned allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Mobile Network. Inputs. User Assigned Identity Response> - 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
- Type of managed service identity (currently only UserAssigned allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response - 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
- Type of managed service identity (currently only UserAssigned allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - 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
- Type of managed service identity (currently only UserAssigned allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - 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
- Type of managed service identity (currently only UserAssigned allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - 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
- Type of managed service identity (currently only UserAssigned allowed).
- user
Assigned Map<Property Map>Identities - 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, ManagedServiceIdentityTypeArgs
- None
- None
- User
Assigned - UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type User Assigned - UserAssigned
- None
- None
- User
Assigned - UserAssigned
- None
- None
- User
Assigned - UserAssigned
- NONE
- None
- USER_ASSIGNED
- UserAssigned
- "None"
- None
- "User
Assigned" - UserAssigned
PlatformConfiguration, PlatformConfigurationArgs
- Type
string | Pulumi.
Azure Native. Mobile Network. Platform Type - The platform type where packet core is deployed.
- Azure
Stack Pulumi.Edge Device Azure Native. Mobile Network. Inputs. Azure Stack Edge Device Resource Id - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- Azure
Stack Pulumi.Hci Cluster Azure Native. Mobile Network. Inputs. Azure Stack HCICluster Resource Id - The Azure Stack HCI cluster where the packet core is deployed.
- Connected
Cluster Pulumi.Azure Native. Mobile Network. Inputs. Connected Cluster Resource Id - Azure Arc connected cluster where the packet core is deployed.
- Custom
Location Pulumi.Azure Native. Mobile Network. Inputs. Custom Location Resource Id - Azure Arc custom location where the packet core is deployed.
- Type
string | Platform
Type - The platform type where packet core is deployed.
- Azure
Stack AzureEdge Device Stack Edge Device Resource Id - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- Azure
Stack AzureHci Cluster Stack HCICluster Resource Id - The Azure Stack HCI cluster where the packet core is deployed.
- Connected
Cluster ConnectedCluster Resource Id - Azure Arc connected cluster where the packet core is deployed.
- Custom
Location CustomLocation Resource Id - Azure Arc custom location where the packet core is deployed.
- type
String | Platform
Type - The platform type where packet core is deployed.
- azure
Stack AzureEdge Device Stack Edge Device Resource Id - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- azure
Stack AzureHci Cluster Stack HCICluster Resource Id - The Azure Stack HCI cluster where the packet core is deployed.
- connected
Cluster ConnectedCluster Resource Id - Azure Arc connected cluster where the packet core is deployed.
- custom
Location CustomLocation Resource Id - Azure Arc custom location where the packet core is deployed.
- type
string | Platform
Type - The platform type where packet core is deployed.
- azure
Stack AzureEdge Device Stack Edge Device Resource Id - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- azure
Stack AzureHci Cluster Stack HCICluster Resource Id - The Azure Stack HCI cluster where the packet core is deployed.
- connected
Cluster ConnectedCluster Resource Id - Azure Arc connected cluster where the packet core is deployed.
- custom
Location CustomLocation Resource Id - Azure Arc custom location where the packet core is deployed.
- type
str | Platform
Type - The platform type where packet core is deployed.
- azure_
stack_ Azureedge_ device Stack Edge Device Resource Id - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- azure_
stack_ Azurehci_ cluster Stack HCICluster Resource Id - The Azure Stack HCI cluster where the packet core is deployed.
- connected_
cluster ConnectedCluster Resource Id - Azure Arc connected cluster where the packet core is deployed.
- custom_
location CustomLocation Resource Id - Azure Arc custom location where the packet core is deployed.
- type String | "AKS-HCI" | "3P-AZURE-STACK-HCI"
- The platform type where packet core is deployed.
- azure
Stack Property MapEdge Device - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- azure
Stack Property MapHci Cluster - The Azure Stack HCI cluster where the packet core is deployed.
- connected
Cluster Property Map - Azure Arc connected cluster where the packet core is deployed.
- custom
Location Property Map - Azure Arc custom location where the packet core is deployed.
PlatformConfigurationResponse, PlatformConfigurationResponseArgs
- Azure
Stack List<Pulumi.Edge Devices Azure Native. Mobile Network. Inputs. Azure Stack Edge Device Resource Id Response> - The Azure Stack Edge devices where the packet core is deployed. If the packet core is deployed across multiple devices, all devices will appear in this list.
- Type string
- The platform type where packet core is deployed.
- Azure
Stack Pulumi.Edge Device Azure Native. Mobile Network. Inputs. Azure Stack Edge Device Resource Id Response - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- Azure
Stack Pulumi.Hci Cluster Azure Native. Mobile Network. Inputs. Azure Stack HCICluster Resource Id Response - The Azure Stack HCI cluster where the packet core is deployed.
- Connected
Cluster Pulumi.Azure Native. Mobile Network. Inputs. Connected Cluster Resource Id Response - Azure Arc connected cluster where the packet core is deployed.
- Custom
Location Pulumi.Azure Native. Mobile Network. Inputs. Custom Location Resource Id Response - Azure Arc custom location where the packet core is deployed.
- Azure
Stack []AzureEdge Devices Stack Edge Device Resource Id Response - The Azure Stack Edge devices where the packet core is deployed. If the packet core is deployed across multiple devices, all devices will appear in this list.
- Type string
- The platform type where packet core is deployed.
- Azure
Stack AzureEdge Device Stack Edge Device Resource Id Response - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- Azure
Stack AzureHci Cluster Stack HCICluster Resource Id Response - The Azure Stack HCI cluster where the packet core is deployed.
- Connected
Cluster ConnectedCluster Resource Id Response - Azure Arc connected cluster where the packet core is deployed.
- Custom
Location CustomLocation Resource Id Response - Azure Arc custom location where the packet core is deployed.
- azure
Stack List<AzureEdge Devices Stack Edge Device Resource Id Response> - The Azure Stack Edge devices where the packet core is deployed. If the packet core is deployed across multiple devices, all devices will appear in this list.
- type String
- The platform type where packet core is deployed.
- azure
Stack AzureEdge Device Stack Edge Device Resource Id Response - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- azure
Stack AzureHci Cluster Stack HCICluster Resource Id Response - The Azure Stack HCI cluster where the packet core is deployed.
- connected
Cluster ConnectedCluster Resource Id Response - Azure Arc connected cluster where the packet core is deployed.
- custom
Location CustomLocation Resource Id Response - Azure Arc custom location where the packet core is deployed.
- azure
Stack AzureEdge Devices Stack Edge Device Resource Id Response[] - The Azure Stack Edge devices where the packet core is deployed. If the packet core is deployed across multiple devices, all devices will appear in this list.
- type string
- The platform type where packet core is deployed.
- azure
Stack AzureEdge Device Stack Edge Device Resource Id Response - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- azure
Stack AzureHci Cluster Stack HCICluster Resource Id Response - The Azure Stack HCI cluster where the packet core is deployed.
- connected
Cluster ConnectedCluster Resource Id Response - Azure Arc connected cluster where the packet core is deployed.
- custom
Location CustomLocation Resource Id Response - Azure Arc custom location where the packet core is deployed.
- azure_
stack_ Sequence[Azureedge_ devices Stack Edge Device Resource Id Response] - The Azure Stack Edge devices where the packet core is deployed. If the packet core is deployed across multiple devices, all devices will appear in this list.
- type str
- The platform type where packet core is deployed.
- azure_
stack_ Azureedge_ device Stack Edge Device Resource Id Response - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- azure_
stack_ Azurehci_ cluster Stack HCICluster Resource Id Response - The Azure Stack HCI cluster where the packet core is deployed.
- connected_
cluster ConnectedCluster Resource Id Response - Azure Arc connected cluster where the packet core is deployed.
- custom_
location CustomLocation Resource Id Response - Azure Arc custom location where the packet core is deployed.
- azure
Stack List<Property Map>Edge Devices - The Azure Stack Edge devices where the packet core is deployed. If the packet core is deployed across multiple devices, all devices will appear in this list.
- type String
- The platform type where packet core is deployed.
- azure
Stack Property MapEdge Device - The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
- azure
Stack Property MapHci Cluster - The Azure Stack HCI cluster where the packet core is deployed.
- connected
Cluster Property Map - Azure Arc connected cluster where the packet core is deployed.
- custom
Location Property Map - Azure Arc custom location where the packet core is deployed.
PlatformType, PlatformTypeArgs
- AKS_HCI
- AKS-HCIIf this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- Platform
Type_3P_AZURE_STACK_HCI - 3P-AZURE-STACK-HCIIf this option is chosen, you must set one of "azureStackHciCluster", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- Platform
Type_AKS_HCI - AKS-HCIIf this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- Platform
Type_3P_AZURE_STACK_HCI - 3P-AZURE-STACK-HCIIf this option is chosen, you must set one of "azureStackHciCluster", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- AKSHCI
- AKS-HCIIf this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- _3PAZURESTACKHCI
- 3P-AZURE-STACK-HCIIf this option is chosen, you must set one of "azureStackHciCluster", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- AKS_HCI
- AKS-HCIIf this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- Platform
Type_3P_AZURE_STACK_HCI - 3P-AZURE-STACK-HCIIf this option is chosen, you must set one of "azureStackHciCluster", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- AK_S_HCI
- AKS-HCIIf this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- PLATFORM_TYPE_3_P_AZUR_E_STAC_K_HCI
- 3P-AZURE-STACK-HCIIf this option is chosen, you must set one of "azureStackHciCluster", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- "AKS-HCI"
- AKS-HCIIf this option is chosen, you must set one of "azureStackEdgeDevice", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
- "3P-AZURE-STACK-HCI"
- 3P-AZURE-STACK-HCIIf this option is chosen, you must set one of "azureStackHciCluster", "connectedCluster" or "customLocation". If multiple are set, they must be consistent with each other.
SiteResourceId, SiteResourceIdArgs
- Id string
- Site resource ID.
- Id string
- Site resource ID.
- id String
- Site resource ID.
- id string
- Site resource ID.
- id str
- Site resource ID.
- id String
- Site resource ID.
SiteResourceIdResponse, SiteResourceIdResponseArgs
- Id string
- Site resource ID.
- Id string
- Site resource ID.
- id String
- Site resource ID.
- id string
- Site resource ID.
- id str
- Site resource ID.
- id String
- Site resource ID.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- principal
Id 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/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/{packetCoreControlPlaneName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0