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:
- Control
Plane Pulumi.Access Interface Azure Native. Mobile Network. Inputs. 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.
- Mobile
Network Pulumi.Azure Native. Mobile Network. Inputs. Mobile Network Resource Id Args Mobile network in which this packet core control plane is deployed.
- Resource
Group stringName The name of the resource group. The name is case insensitive.
- 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).
- Created
At string The timestamp of resource creation (UTC).
- Created
By string The identity that created the resource.
- Created
By string | Pulumi.Type Azure Native. Mobile Network. Created By Type The type of identity that created the resource.
- Identity
Pulumi.
Azure Native. Mobile Network. Inputs. Managed Service Identity Args The identity used to retrieve the ingress certificate from Azure key vault.
- Interop
Settings object Settings to allow interoperability with third party components e.g. RANs and UEs.
- Last
Modified stringAt The timestamp of resource last modification (UTC)
- Last
Modified stringBy The identity that last modified the resource.
- Last
Modified string | Pulumi.By Type Azure Native. Mobile Network. Created By Type The type of identity that last modified the resource.
- Local
Diagnostics Pulumi.Access Azure Native. Mobile Network. Inputs. Local Diagnostics Access Configuration Args The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- Location string
The geo-location where the resource lives
- Packet
Core stringControl Plane Name The name of the packet core control plane.
- Platform
Pulumi.
Azure Native. Mobile Network. Inputs. Platform Configuration Args The platform where the packet core is deployed.
- Dictionary<string, string>
Resource tags.
- Version string
The version of the packet core software that is deployed.
- 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.
- Mobile
Network MobileNetwork Resource Id Args Mobile network in which this packet core control plane is deployed.
- Resource
Group stringName The name of the resource group. The name is case insensitive.
- 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).
- Created
At string The timestamp of resource creation (UTC).
- Created
By string The identity that created the resource.
- Created
By string | CreatedType By Type The type of identity that created the resource.
- Identity
Managed
Service Identity Args The identity used to retrieve the ingress certificate from Azure key vault.
- Interop
Settings interface{} Settings to allow interoperability with third party components e.g. RANs and UEs.
- Last
Modified stringAt The timestamp of resource last modification (UTC)
- Last
Modified stringBy The identity that last modified the resource.
- Last
Modified string | CreatedBy Type By Type The type of identity that last modified the resource.
- Local
Diagnostics LocalAccess Diagnostics Access Configuration Args The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- Location string
The geo-location where the resource lives
- Packet
Core stringControl Plane Name The name of the packet core control plane.
- Platform
Platform
Configuration Args The platform where the packet core is deployed.
- map[string]string
Resource tags.
- Version string
The version of the packet core software that is deployed.
- 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.
- mobile
Network MobileNetwork Resource Id Args Mobile network in which this packet core control plane is deployed.
- resource
Group StringName The name of the resource group. The name is case insensitive.
- 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).
- created
At String The timestamp of resource creation (UTC).
- created
By String The identity that created the resource.
- created
By String | CreatedType By Type The type of identity that created the resource.
- identity
Managed
Service Identity Args The identity used to retrieve the ingress certificate from Azure key vault.
- interop
Settings Object Settings to allow interoperability with third party components e.g. RANs and UEs.
- last
Modified StringAt The timestamp of resource last modification (UTC)
- last
Modified StringBy The identity that last modified the resource.
- last
Modified String | CreatedBy Type By Type The type of identity that last modified the resource.
- local
Diagnostics LocalAccess Diagnostics Access Configuration Args The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- location String
The geo-location where the resource lives
- packet
Core StringControl Plane Name The name of the packet core control plane.
- platform
Platform
Configuration Args The platform where the packet core is deployed.
- Map<String,String>
Resource tags.
- version String
The version of the packet core software that is deployed.
- 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.
- mobile
Network MobileNetwork Resource Id Args Mobile network in which this packet core control plane is deployed.
- resource
Group stringName The name of the resource group. The name is case insensitive.
- 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).
- created
At string The timestamp of resource creation (UTC).
- created
By string The identity that created the resource.
- created
By string | CreatedType By Type The type of identity that created the resource.
- identity
Managed
Service Identity Args 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 stringAt The timestamp of resource last modification (UTC)
- last
Modified stringBy The identity that last modified the resource.
- last
Modified string | CreatedBy Type By Type The type of identity that last modified the resource.
- local
Diagnostics LocalAccess Diagnostics Access Configuration Args The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- location string
The geo-location where the resource lives
- packet
Core stringControl Plane Name The name of the packet core control plane.
- platform
Platform
Configuration Args The platform where the packet core is deployed.
- {[key: string]: string}
Resource tags.
- version string
The version of the packet core software that is deployed.
- 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.
- mobile_
network MobileNetwork Resource Id Args Mobile network in which this packet core control plane is deployed.
- resource_
group_ strname The name of the resource group. The name is case insensitive.
- 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).
- created_
at str The timestamp of resource creation (UTC).
- created_
by str The identity that created the resource.
- created_
by_ str | Createdtype By Type The type of identity that created the resource.
- identity
Managed
Service Identity Args 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_ strat The timestamp of resource last modification (UTC)
- last_
modified_ strby The identity that last modified the resource.
- last_
modified_ str | Createdby_ type By Type The type of identity that last modified the resource.
- local_
diagnostics_ Localaccess Diagnostics Access Configuration Args 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_ strcontrol_ plane_ name The name of the packet core control plane.
- platform
Platform
Configuration Args The platform where the packet core is deployed.
- Mapping[str, str]
Resource tags.
- version str
The version of the packet core software that is deployed.
- 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.
- mobile
Network Property Map Mobile network in which this packet core control plane is deployed.
- resource
Group StringName The name of the resource group. The name is case insensitive.
- sku
String | "Evaluation
Package" | "Flagship Starter Package" | "Edge Site2GBPS" | "Edge Site3GBPS" | "Edge Site4GBPS" | "Medium Package" | "Large Package" The SKU defining the throughput and SIM allowances for this packet core control plane deployment.
- core
Network String | "5GC" | "EPC"Technology The core network technology generation (5G core or EPC / 4G core).
- created
At String The timestamp of resource creation (UTC).
- created
By String The identity that created the resource.
- created
By String | "User" | "Application" | "ManagedType Identity" | "Key" The type of identity that created the resource.
- identity Property Map
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 StringAt The timestamp of resource last modification (UTC)
- last
Modified StringBy The identity that last modified the resource.
- last
Modified String | "User" | "Application" | "ManagedBy Type Identity" | "Key" The type of identity that last modified the resource.
- local
Diagnostics Property MapAccess The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
- location String
The geo-location where the resource lives
- packet
Core StringControl Plane Name The name of the packet core control plane.
- platform Property Map
The platform where the packet core is deployed.
- 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
- Provisioning
State string The provisioning state of the packet core control plane resource.
- 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.
- Name string
The name of the resource
- Provisioning
State string The provisioning state of the packet core control plane resource.
- 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.
- name String
The name of the resource
- provisioning
State String The provisioning state of the packet core control plane resource.
- 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.
- name string
The name of the resource
- provisioning
State string The provisioning state of the packet core control plane resource.
- 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.
- name str
The name of the resource
- provisioning_
state str The provisioning state of the packet core control plane resource.
- 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.
- name String
The name of the resource
- provisioning
State String The provisioning state of the packet core control plane resource.
- 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
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
- Evaluation
Package - EvaluationPackage
Evaluation package plan
- Flagship
Starter Package - FlagshipStarterPackage
Flagship starter package plan
- Edge
Site2GBPS - EdgeSite2GBPS
Edge site 2Gbps plan
- Edge
Site3GBPS - EdgeSite3GBPS
Edge site 3Gbps plan
- Edge
Site4GBPS - EdgeSite4GBPS
Edge site 4Gbps plan
- Medium
Package - MediumPackage
Medium package plan
- Large
Package - LargePackage
Large package plan
- Billing
Sku Evaluation Package - EvaluationPackage
Evaluation package plan
- Billing
Sku Flagship Starter Package - FlagshipStarterPackage
Flagship starter package plan
- Billing
Sku Edge Site2GBPS - EdgeSite2GBPS
Edge site 2Gbps plan
- Billing
Sku Edge Site3GBPS - EdgeSite3GBPS
Edge site 3Gbps plan
- Billing
Sku Edge Site4GBPS - EdgeSite4GBPS
Edge site 4Gbps plan
- Billing
Sku Medium Package - MediumPackage
Medium package plan
- Billing
Sku Large Package - LargePackage
Large package plan
- Evaluation
Package - EvaluationPackage
Evaluation package plan
- Flagship
Starter Package - FlagshipStarterPackage
Flagship starter package plan
- Edge
Site2GBPS - EdgeSite2GBPS
Edge site 2Gbps plan
- Edge
Site3GBPS - EdgeSite3GBPS
Edge site 3Gbps plan
- Edge
Site4GBPS - EdgeSite4GBPS
Edge site 4Gbps plan
- Medium
Package - MediumPackage
Medium package plan
- Large
Package - LargePackage
Large package plan
- Evaluation
Package - EvaluationPackage
Evaluation package plan
- Flagship
Starter Package - FlagshipStarterPackage
Flagship starter package plan
- Edge
Site2GBPS - EdgeSite2GBPS
Edge site 2Gbps plan
- Edge
Site3GBPS - EdgeSite3GBPS
Edge site 3Gbps plan
- Edge
Site4GBPS - EdgeSite4GBPS
Edge site 4Gbps plan
- Medium
Package - MediumPackage
Medium package plan
- Large
Package - 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
- "Evaluation
Package" - EvaluationPackage
Evaluation package plan
- "Flagship
Starter Package" - FlagshipStarterPackage
Flagship starter package plan
- "Edge
Site2GBPS" - EdgeSite2GBPS
Edge site 2Gbps plan
- "Edge
Site3GBPS" - EdgeSite3GBPS
Edge site 3Gbps plan
- "Edge
Site4GBPS" - EdgeSite4GBPS
Edge site 4Gbps plan
- "Medium
Package" - MediumPackage
Medium package plan
- "Large
Package" - 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
- Core
Network Type_5GC - 5GC
5G core
- EPC
- EPC
EPC / 4G core
- Core
Network Type_5GC - 5GC
5G core
- Core
Network Type EPC - EPC
EPC / 4G core
- _5GC
- 5GC
5G core
- EPC
- EPC
EPC / 4G core
- Core
Network Type_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
- Managed
Identity - ManagedIdentity
- Key
- Key
- Created
By Type User - User
- Created
By Type Application - Application
- Created
By Type Managed Identity - ManagedIdentity
- Created
By Type Key - Key
- User
- User
- Application
- Application
- Managed
Identity - ManagedIdentity
- Key
- Key
- User
- User
- Application
- Application
- Managed
Identity - ManagedIdentity
- Key
- Key
- USER
- User
- APPLICATION
- Application
- MANAGED_IDENTITY
- ManagedIdentity
- KEY
- Key
- "User"
- User
- "Application"
- Application
- "Managed
Identity" - 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
- 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.
KeyVaultCertificateResponse
- 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.
LocalDiagnosticsAccessConfiguration
- Https
Server Pulumi.Certificate Azure Native. Mobile Network. Inputs. Key Vault Certificate The HTTPS server TLS certificate used to secure local access to diagnostics.
- Https
Server KeyCertificate Vault Certificate The HTTPS server TLS certificate used to secure local access to diagnostics.
- https
Server KeyCertificate Vault Certificate The HTTPS server TLS certificate used to secure local access to diagnostics.
- https
Server KeyCertificate Vault Certificate The HTTPS server TLS certificate used to secure local access to diagnostics.
- https_
server_ Keycertificate Vault Certificate The HTTPS server TLS certificate used to secure local access to diagnostics.
- https
Server Property MapCertificate The HTTPS server TLS certificate used to secure local access to diagnostics.
LocalDiagnosticsAccessConfigurationResponse
- Https
Server Pulumi.Certificate Azure Native. Mobile Network. Inputs. Key Vault Certificate Response The HTTPS server TLS certificate used to secure local access to diagnostics.
- Https
Server KeyCertificate Vault Certificate Response The HTTPS server TLS certificate used to secure local access to diagnostics.
- https
Server KeyCertificate Vault Certificate Response The HTTPS server TLS certificate used to secure local access to diagnostics.
- https
Server KeyCertificate Vault Certificate Response The HTTPS server TLS certificate used to secure local access to diagnostics.
- https_
server_ Keycertificate Vault Certificate Response The HTTPS server TLS certificate used to secure local access to diagnostics.
- https
Server Property MapCertificate The HTTPS server TLS certificate used to secure local access to diagnostics.
ManagedServiceIdentity
- Type
string | Pulumi.
Azure Native. Mobile Network. Managed Service Identity Type Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, object>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 (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]interface{}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 (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,Object>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 (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: any}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 (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Any]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" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Any>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
- Principal
Id string The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- 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.
- Principal
Id string The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- 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.
- principal
Id String The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- 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.
- principal
Id string The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- 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.
- 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_ 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.
- principal
Id String The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- 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
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - 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.
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 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 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 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 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 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 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 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 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 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 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" | "Base
VM" The platform type where packet core is deployed.
- azure
Stack Property MapEdge Device 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 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
- 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 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 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.
- 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 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 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.
- 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 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 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.
- 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 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 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.
- 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 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 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.
- type String
The platform type where packet core is deployed.
- azure
Stack Property MapEdge Device 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 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
- 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".
- 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".
- Platform
Type_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".
- Platform
Type 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".
- 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".
- 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".
- 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".
- 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".
- "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".
SystemDataResponse
- 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
- 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/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0