1. Packages
  2. Azure Native
  3. API Docs
  4. mobilepacketcore
  5. NetworkFunction
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

azure-native.mobilepacketcore.NetworkFunction

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

    AO5GC Network Function Resource Azure REST API version: 2023-05-15-preview.

    Example Usage

    NetworkFunctions_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var networkFunction = new AzureNative.MobilePacketCore.NetworkFunction("networkFunction", new()
        {
            Capacity = 100000,
            DeploymentNotes = "string",
            Location = "eastus",
            NetworkFunctionAdministrativeState = AzureNative.MobilePacketCore.NetworkFunctionAdministrativeState.Commissioned,
            NetworkFunctionName = "nf1",
            NetworkFunctionType = AzureNative.MobilePacketCore.NetworkFunctionType.SMF,
            ResourceGroupName = "rg1",
            Sku = AzureNative.MobilePacketCore.SkuDefinitions.NexusProduction,
            UserDescription = "string",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/mobilepacketcore/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := mobilepacketcore.NewNetworkFunction(ctx, "networkFunction", &mobilepacketcore.NetworkFunctionArgs{
    			Capacity:                           pulumi.Int(100000),
    			DeploymentNotes:                    pulumi.String("string"),
    			Location:                           pulumi.String("eastus"),
    			NetworkFunctionAdministrativeState: pulumi.String(mobilepacketcore.NetworkFunctionAdministrativeStateCommissioned),
    			NetworkFunctionName:                pulumi.String("nf1"),
    			NetworkFunctionType:                pulumi.String(mobilepacketcore.NetworkFunctionTypeSMF),
    			ResourceGroupName:                  pulumi.String("rg1"),
    			Sku:                                pulumi.String(mobilepacketcore.SkuDefinitionsNexusProduction),
    			UserDescription:                    pulumi.String("string"),
    		})
    		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.mobilepacketcore.NetworkFunction;
    import com.pulumi.azurenative.mobilepacketcore.NetworkFunctionArgs;
    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 networkFunction = new NetworkFunction("networkFunction", NetworkFunctionArgs.builder()        
                .capacity(100000)
                .deploymentNotes("string")
                .location("eastus")
                .networkFunctionAdministrativeState("Commissioned")
                .networkFunctionName("nf1")
                .networkFunctionType("SMF")
                .resourceGroupName("rg1")
                .sku("NexusProduction")
                .userDescription("string")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    network_function = azure_native.mobilepacketcore.NetworkFunction("networkFunction",
        capacity=100000,
        deployment_notes="string",
        location="eastus",
        network_function_administrative_state=azure_native.mobilepacketcore.NetworkFunctionAdministrativeState.COMMISSIONED,
        network_function_name="nf1",
        network_function_type=azure_native.mobilepacketcore.NetworkFunctionType.SMF,
        resource_group_name="rg1",
        sku=azure_native.mobilepacketcore.SkuDefinitions.NEXUS_PRODUCTION,
        user_description="string")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const networkFunction = new azure_native.mobilepacketcore.NetworkFunction("networkFunction", {
        capacity: 100000,
        deploymentNotes: "string",
        location: "eastus",
        networkFunctionAdministrativeState: azure_native.mobilepacketcore.NetworkFunctionAdministrativeState.Commissioned,
        networkFunctionName: "nf1",
        networkFunctionType: azure_native.mobilepacketcore.NetworkFunctionType.SMF,
        resourceGroupName: "rg1",
        sku: azure_native.mobilepacketcore.SkuDefinitions.NexusProduction,
        userDescription: "string",
    });
    
    resources:
      networkFunction:
        type: azure-native:mobilepacketcore:NetworkFunction
        properties:
          capacity: 100000
          deploymentNotes: string
          location: eastus
          networkFunctionAdministrativeState: Commissioned
          networkFunctionName: nf1
          networkFunctionType: SMF
          resourceGroupName: rg1
          sku: NexusProduction
          userDescription: string
    

    Create NetworkFunction Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NetworkFunction(name: string, args: NetworkFunctionArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkFunction(resource_name: str,
                        args: NetworkFunctionArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkFunction(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        network_function_administrative_state: Optional[Union[str, NetworkFunctionAdministrativeState]] = None,
                        network_function_type: Optional[Union[str, NetworkFunctionType]] = None,
                        resource_group_name: Optional[str] = None,
                        sku: Optional[Union[str, SkuDefinitions]] = None,
                        capacity: Optional[int] = None,
                        deployment_notes: Optional[str] = None,
                        location: Optional[str] = None,
                        network_function_name: Optional[str] = None,
                        tags: Optional[Mapping[str, str]] = None,
                        user_description: Optional[str] = None)
    func NewNetworkFunction(ctx *Context, name string, args NetworkFunctionArgs, opts ...ResourceOption) (*NetworkFunction, error)
    public NetworkFunction(string name, NetworkFunctionArgs args, CustomResourceOptions? opts = null)
    public NetworkFunction(String name, NetworkFunctionArgs args)
    public NetworkFunction(String name, NetworkFunctionArgs args, CustomResourceOptions options)
    
    type: azure-native:mobilepacketcore:NetworkFunction
    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 NetworkFunctionArgs
    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 NetworkFunctionArgs
    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 NetworkFunctionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkFunctionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkFunctionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var azure_nativeNetworkFunctionResource = new AzureNative.MobilePacketCore.NetworkFunction("azure-nativeNetworkFunctionResource", new()
    {
        NetworkFunctionAdministrativeState = "string",
        NetworkFunctionType = "string",
        ResourceGroupName = "string",
        Sku = "string",
        Capacity = 0,
        DeploymentNotes = "string",
        Location = "string",
        NetworkFunctionName = "string",
        Tags = 
        {
            { "string", "string" },
        },
        UserDescription = "string",
    });
    
    example, err := mobilepacketcore.NewNetworkFunction(ctx, "azure-nativeNetworkFunctionResource", &mobilepacketcore.NetworkFunctionArgs{
    NetworkFunctionAdministrativeState: pulumi.String("string"),
    NetworkFunctionType: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    Sku: pulumi.String("string"),
    Capacity: pulumi.Int(0),
    DeploymentNotes: pulumi.String("string"),
    Location: pulumi.String("string"),
    NetworkFunctionName: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    UserDescription: pulumi.String("string"),
    })
    
    var azure_nativeNetworkFunctionResource = new NetworkFunction("azure-nativeNetworkFunctionResource", NetworkFunctionArgs.builder()        
        .networkFunctionAdministrativeState("string")
        .networkFunctionType("string")
        .resourceGroupName("string")
        .sku("string")
        .capacity(0)
        .deploymentNotes("string")
        .location("string")
        .networkFunctionName("string")
        .tags(Map.of("string", "string"))
        .userDescription("string")
        .build());
    
    azure_native_network_function_resource = azure_native.mobilepacketcore.NetworkFunction("azure-nativeNetworkFunctionResource",
        network_function_administrative_state="string",
        network_function_type="string",
        resource_group_name="string",
        sku="string",
        capacity=0,
        deployment_notes="string",
        location="string",
        network_function_name="string",
        tags={
            "string": "string",
        },
        user_description="string")
    
    const azure_nativeNetworkFunctionResource = new azure_native.mobilepacketcore.NetworkFunction("azure-nativeNetworkFunctionResource", {
        networkFunctionAdministrativeState: "string",
        networkFunctionType: "string",
        resourceGroupName: "string",
        sku: "string",
        capacity: 0,
        deploymentNotes: "string",
        location: "string",
        networkFunctionName: "string",
        tags: {
            string: "string",
        },
        userDescription: "string",
    });
    
    type: azure-native:mobilepacketcore:NetworkFunction
    properties:
        capacity: 0
        deploymentNotes: string
        location: string
        networkFunctionAdministrativeState: string
        networkFunctionName: string
        networkFunctionType: string
        resourceGroupName: string
        sku: string
        tags:
            string: string
        userDescription: string
    

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

    NetworkFunctionAdministrativeState string | Pulumi.AzureNative.MobilePacketCore.NetworkFunctionAdministrativeState
    Administrative state of the network function
    NetworkFunctionType string | Pulumi.AzureNative.MobilePacketCore.NetworkFunctionType
    Type of network function
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku string | Pulumi.AzureNative.MobilePacketCore.SkuDefinitions
    Provisioned SKU Value.
    Capacity int
    Capacity of the network function in units of 10000. This represents the session count or the Simultaneously Attached Users (SAU) count as applicable
    DeploymentNotes string
    User provided deployment notes. This is used to optionally provide details about the NF deployment
    Location string
    The geo-location where the resource lives
    NetworkFunctionName string
    The name of the network function
    Tags Dictionary<string, string>
    Resource tags.
    UserDescription string
    User provided description
    NetworkFunctionAdministrativeState string | NetworkFunctionAdministrativeState
    Administrative state of the network function
    NetworkFunctionType string | NetworkFunctionType
    Type of network function
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku string | SkuDefinitions
    Provisioned SKU Value.
    Capacity int
    Capacity of the network function in units of 10000. This represents the session count or the Simultaneously Attached Users (SAU) count as applicable
    DeploymentNotes string
    User provided deployment notes. This is used to optionally provide details about the NF deployment
    Location string
    The geo-location where the resource lives
    NetworkFunctionName string
    The name of the network function
    Tags map[string]string
    Resource tags.
    UserDescription string
    User provided description
    networkFunctionAdministrativeState String | NetworkFunctionAdministrativeState
    Administrative state of the network function
    networkFunctionType String | NetworkFunctionType
    Type of network function
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku String | SkuDefinitions
    Provisioned SKU Value.
    capacity Integer
    Capacity of the network function in units of 10000. This represents the session count or the Simultaneously Attached Users (SAU) count as applicable
    deploymentNotes String
    User provided deployment notes. This is used to optionally provide details about the NF deployment
    location String
    The geo-location where the resource lives
    networkFunctionName String
    The name of the network function
    tags Map<String,String>
    Resource tags.
    userDescription String
    User provided description
    networkFunctionAdministrativeState string | NetworkFunctionAdministrativeState
    Administrative state of the network function
    networkFunctionType string | NetworkFunctionType
    Type of network function
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    sku string | SkuDefinitions
    Provisioned SKU Value.
    capacity number
    Capacity of the network function in units of 10000. This represents the session count or the Simultaneously Attached Users (SAU) count as applicable
    deploymentNotes string
    User provided deployment notes. This is used to optionally provide details about the NF deployment
    location string
    The geo-location where the resource lives
    networkFunctionName string
    The name of the network function
    tags {[key: string]: string}
    Resource tags.
    userDescription string
    User provided description
    network_function_administrative_state str | NetworkFunctionAdministrativeState
    Administrative state of the network function
    network_function_type str | NetworkFunctionType
    Type of network function
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    sku str | SkuDefinitions
    Provisioned SKU Value.
    capacity int
    Capacity of the network function in units of 10000. This represents the session count or the Simultaneously Attached Users (SAU) count as applicable
    deployment_notes str
    User provided deployment notes. This is used to optionally provide details about the NF deployment
    location str
    The geo-location where the resource lives
    network_function_name str
    The name of the network function
    tags Mapping[str, str]
    Resource tags.
    user_description str
    User provided description
    networkFunctionAdministrativeState String | "Commissioned" | "Decommissioned"
    Administrative state of the network function
    networkFunctionType String | "AMF" | "SMF" | "UPF" | "NRF" | "NSSF" | "MME" | "SaegwControlPlane" | "SaegwUserPlane" | "Saegw" | "ePDG" | "N3IWF" | "RemotePaaS" | "EMS" | "OperationsPolicyManager"
    Type of network function
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku String | "AzureLab" | "AzureProduction" | "NexusLab" | "NexusProduction"
    Provisioned SKU Value.
    capacity Number
    Capacity of the network function in units of 10000. This represents the session count or the Simultaneously Attached Users (SAU) count as applicable
    deploymentNotes String
    User provided deployment notes. This is used to optionally provide details about the NF deployment
    location String
    The geo-location where the resource lives
    networkFunctionName String
    The name of the network function
    tags Map<String>
    Resource tags.
    userDescription String
    User provided description

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    InfrastructureElementCount int
    Count of infrastructure elements used by this network function (vCPUs, in units of 8)
    Name string
    The name of the resource
    NetworkFunctionOperationalStatus string
    Operational state of the network function
    ProvisioningState string
    The status of the last operation.
    SystemData Pulumi.AzureNative.MobilePacketCore.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    InfrastructureElementCount int
    Count of infrastructure elements used by this network function (vCPUs, in units of 8)
    Name string
    The name of the resource
    NetworkFunctionOperationalStatus string
    Operational state of the network function
    ProvisioningState string
    The status of the last operation.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    infrastructureElementCount Integer
    Count of infrastructure elements used by this network function (vCPUs, in units of 8)
    name String
    The name of the resource
    networkFunctionOperationalStatus String
    Operational state of the network function
    provisioningState String
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    infrastructureElementCount number
    Count of infrastructure elements used by this network function (vCPUs, in units of 8)
    name string
    The name of the resource
    networkFunctionOperationalStatus string
    Operational state of the network function
    provisioningState string
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    infrastructure_element_count int
    Count of infrastructure elements used by this network function (vCPUs, in units of 8)
    name str
    The name of the resource
    network_function_operational_status str
    Operational state of the network function
    provisioning_state str
    The status of the last operation.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    infrastructureElementCount Number
    Count of infrastructure elements used by this network function (vCPUs, in units of 8)
    name String
    The name of the resource
    networkFunctionOperationalStatus String
    Operational state of the network function
    provisioningState String
    The status of the last operation.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    NetworkFunctionAdministrativeState, NetworkFunctionAdministrativeStateArgs

    Commissioned
    CommissionedResource has been commissioned
    Decommissioned
    DecommissionedResource has been decommissioned
    NetworkFunctionAdministrativeStateCommissioned
    CommissionedResource has been commissioned
    NetworkFunctionAdministrativeStateDecommissioned
    DecommissionedResource has been decommissioned
    Commissioned
    CommissionedResource has been commissioned
    Decommissioned
    DecommissionedResource has been decommissioned
    Commissioned
    CommissionedResource has been commissioned
    Decommissioned
    DecommissionedResource has been decommissioned
    COMMISSIONED
    CommissionedResource has been commissioned
    DECOMMISSIONED
    DecommissionedResource has been decommissioned
    "Commissioned"
    CommissionedResource has been commissioned
    "Decommissioned"
    DecommissionedResource has been decommissioned

    NetworkFunctionType, NetworkFunctionTypeArgs

    AMF
    AMFAccess and Mobility Function
    SMF
    SMFSession Management Function
    UPF
    UPFUser Plane Function
    NRF
    NRFNetwork Repository Function
    NSSF
    NSSFNetwork Slice Selection Function
    MME
    MMEMobility Management Entity
    SaegwControlPlane
    SaegwControlPlaneSystem Architecture Evolution Gateway Control Plane, control and user plane separation (CUPS) architecture
    SaegwUserPlane
    SaegwUserPlaneSystem Architecture Evolution Gateway User Plane, control and user plane separation (CUPS) architecture
    Saegw
    SaegwSystem Architecture Evolution Gateway. This combines the Serving Gateway (SGW) and the Packet Data Network Gateway (PGW) functionality
    EPDG
    ePDGEvolved Packet Data Gateway
    N3IWF
    N3IWFNon-3GPP Interworking Function
    RemotePaaS
    RemotePaaSRemote Platform As A Service Components
    EMS
    EMSElement Management System
    OperationsPolicyManager
    OperationsPolicyManagerOperations and Policy Manager
    NetworkFunctionTypeAMF
    AMFAccess and Mobility Function
    NetworkFunctionTypeSMF
    SMFSession Management Function
    NetworkFunctionTypeUPF
    UPFUser Plane Function
    NetworkFunctionTypeNRF
    NRFNetwork Repository Function
    NetworkFunctionTypeNSSF
    NSSFNetwork Slice Selection Function
    NetworkFunctionTypeMME
    MMEMobility Management Entity
    NetworkFunctionTypeSaegwControlPlane
    SaegwControlPlaneSystem Architecture Evolution Gateway Control Plane, control and user plane separation (CUPS) architecture
    NetworkFunctionTypeSaegwUserPlane
    SaegwUserPlaneSystem Architecture Evolution Gateway User Plane, control and user plane separation (CUPS) architecture
    NetworkFunctionTypeSaegw
    SaegwSystem Architecture Evolution Gateway. This combines the Serving Gateway (SGW) and the Packet Data Network Gateway (PGW) functionality
    NetworkFunctionTypeEPDG
    ePDGEvolved Packet Data Gateway
    NetworkFunctionTypeN3IWF
    N3IWFNon-3GPP Interworking Function
    NetworkFunctionTypeRemotePaaS
    RemotePaaSRemote Platform As A Service Components
    NetworkFunctionTypeEMS
    EMSElement Management System
    NetworkFunctionTypeOperationsPolicyManager
    OperationsPolicyManagerOperations and Policy Manager
    AMF
    AMFAccess and Mobility Function
    SMF
    SMFSession Management Function
    UPF
    UPFUser Plane Function
    NRF
    NRFNetwork Repository Function
    NSSF
    NSSFNetwork Slice Selection Function
    MME
    MMEMobility Management Entity
    SaegwControlPlane
    SaegwControlPlaneSystem Architecture Evolution Gateway Control Plane, control and user plane separation (CUPS) architecture
    SaegwUserPlane
    SaegwUserPlaneSystem Architecture Evolution Gateway User Plane, control and user plane separation (CUPS) architecture
    Saegw
    SaegwSystem Architecture Evolution Gateway. This combines the Serving Gateway (SGW) and the Packet Data Network Gateway (PGW) functionality
    EPDG
    ePDGEvolved Packet Data Gateway
    N3IWF
    N3IWFNon-3GPP Interworking Function
    RemotePaaS
    RemotePaaSRemote Platform As A Service Components
    EMS
    EMSElement Management System
    OperationsPolicyManager
    OperationsPolicyManagerOperations and Policy Manager
    AMF
    AMFAccess and Mobility Function
    SMF
    SMFSession Management Function
    UPF
    UPFUser Plane Function
    NRF
    NRFNetwork Repository Function
    NSSF
    NSSFNetwork Slice Selection Function
    MME
    MMEMobility Management Entity
    SaegwControlPlane
    SaegwControlPlaneSystem Architecture Evolution Gateway Control Plane, control and user plane separation (CUPS) architecture
    SaegwUserPlane
    SaegwUserPlaneSystem Architecture Evolution Gateway User Plane, control and user plane separation (CUPS) architecture
    Saegw
    SaegwSystem Architecture Evolution Gateway. This combines the Serving Gateway (SGW) and the Packet Data Network Gateway (PGW) functionality
    EPDG
    ePDGEvolved Packet Data Gateway
    N3IWF
    N3IWFNon-3GPP Interworking Function
    RemotePaaS
    RemotePaaSRemote Platform As A Service Components
    EMS
    EMSElement Management System
    OperationsPolicyManager
    OperationsPolicyManagerOperations and Policy Manager
    AMF
    AMFAccess and Mobility Function
    SMF
    SMFSession Management Function
    UPF
    UPFUser Plane Function
    NRF
    NRFNetwork Repository Function
    NSSF
    NSSFNetwork Slice Selection Function
    MME
    MMEMobility Management Entity
    SAEGW_CONTROL_PLANE
    SaegwControlPlaneSystem Architecture Evolution Gateway Control Plane, control and user plane separation (CUPS) architecture
    SAEGW_USER_PLANE
    SaegwUserPlaneSystem Architecture Evolution Gateway User Plane, control and user plane separation (CUPS) architecture
    SAEGW
    SaegwSystem Architecture Evolution Gateway. This combines the Serving Gateway (SGW) and the Packet Data Network Gateway (PGW) functionality
    E_PDG
    ePDGEvolved Packet Data Gateway
    N3_IWF
    N3IWFNon-3GPP Interworking Function
    REMOTE_PAA_S
    RemotePaaSRemote Platform As A Service Components
    EMS
    EMSElement Management System
    OPERATIONS_POLICY_MANAGER
    OperationsPolicyManagerOperations and Policy Manager
    "AMF"
    AMFAccess and Mobility Function
    "SMF"
    SMFSession Management Function
    "UPF"
    UPFUser Plane Function
    "NRF"
    NRFNetwork Repository Function
    "NSSF"
    NSSFNetwork Slice Selection Function
    "MME"
    MMEMobility Management Entity
    "SaegwControlPlane"
    SaegwControlPlaneSystem Architecture Evolution Gateway Control Plane, control and user plane separation (CUPS) architecture
    "SaegwUserPlane"
    SaegwUserPlaneSystem Architecture Evolution Gateway User Plane, control and user plane separation (CUPS) architecture
    "Saegw"
    SaegwSystem Architecture Evolution Gateway. This combines the Serving Gateway (SGW) and the Packet Data Network Gateway (PGW) functionality
    "ePDG"
    ePDGEvolved Packet Data Gateway
    "N3IWF"
    N3IWFNon-3GPP Interworking Function
    "RemotePaaS"
    RemotePaaSRemote Platform As A Service Components
    "EMS"
    EMSElement Management System
    "OperationsPolicyManager"
    OperationsPolicyManagerOperations and Policy Manager

    SkuDefinitions, SkuDefinitionsArgs

    AzureLab
    AzureLabAzure Lab SKU
    AzureProduction
    AzureProductionAzure Production SKU
    NexusLab
    NexusLabNexus Lab SKU
    NexusProduction
    NexusProductionNexus Production SKU
    SkuDefinitionsAzureLab
    AzureLabAzure Lab SKU
    SkuDefinitionsAzureProduction
    AzureProductionAzure Production SKU
    SkuDefinitionsNexusLab
    NexusLabNexus Lab SKU
    SkuDefinitionsNexusProduction
    NexusProductionNexus Production SKU
    AzureLab
    AzureLabAzure Lab SKU
    AzureProduction
    AzureProductionAzure Production SKU
    NexusLab
    NexusLabNexus Lab SKU
    NexusProduction
    NexusProductionNexus Production SKU
    AzureLab
    AzureLabAzure Lab SKU
    AzureProduction
    AzureProductionAzure Production SKU
    NexusLab
    NexusLabNexus Lab SKU
    NexusProduction
    NexusProductionNexus Production SKU
    AZURE_LAB
    AzureLabAzure Lab SKU
    AZURE_PRODUCTION
    AzureProductionAzure Production SKU
    NEXUS_LAB
    NexusLabNexus Lab SKU
    NEXUS_PRODUCTION
    NexusProductionNexus Production SKU
    "AzureLab"
    AzureLabAzure Lab SKU
    "AzureProduction"
    AzureProductionAzure Production SKU
    "NexusLab"
    NexusLabNexus Lab SKU
    "NexusProduction"
    NexusProductionNexus Production SKU

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:mobilepacketcore:NetworkFunction nf1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobilePacketCore/networkFunctions/{networkFunctionName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi