UpfDeploymentArgs

data class UpfDeploymentArgs(val clusterService: Output<String>? = null, val componentParameters: Output<String>? = null, val location: Output<String>? = null, val resourceGroupName: Output<String>? = null, val secretsParameters: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val upfDeploymentName: Output<String>? = null) : ConvertibleToJava<UpfDeploymentArgs>

Azure for Operators 5G Core User Plane Function (UPF) Deployment Resource Azure REST API version: 2023-10-15-preview.

Example Usage

UpfDeployments_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var upfDeployment = new AzureNative.MobilePacketCore.UpfDeployment("upfDeployment", new()
{
ClusterService = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobilePacketCore/clusterServices/byoCluster",
ComponentParameters = "{\"global\": {\"registry\": {\"docker\": []}}}",
Location = "eastus",
ResourceGroupName = "rg1",
SecretsParameters = "{\"global\": {\"secret\": {\"secretValue\": []}}}",
UpfDeploymentName = "upfDeployment1",
});
});
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.NewUpfDeployment(ctx, "upfDeployment", &mobilepacketcore.UpfDeploymentArgs{
ClusterService: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobilePacketCore/clusterServices/byoCluster"),
ComponentParameters: pulumi.String("{\"global\": {\"registry\": {\"docker\": []}}}"),
Location: pulumi.String("eastus"),
ResourceGroupName: pulumi.String("rg1"),
SecretsParameters: pulumi.String("{\"global\": {\"secret\": {\"secretValue\": []}}}"),
UpfDeploymentName: pulumi.String("upfDeployment1"),
})
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.UpfDeployment;
import com.pulumi.azurenative.mobilepacketcore.UpfDeploymentArgs;
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 upfDeployment = new UpfDeployment("upfDeployment", UpfDeploymentArgs.builder()
.clusterService("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobilePacketCore/clusterServices/byoCluster")
.componentParameters("{\"global\": {\"registry\": {\"docker\": []}}}")
.location("eastus")
.resourceGroupName("rg1")
.secretsParameters("{\"global\": {\"secret\": {\"secretValue\": []}}}")
.upfDeploymentName("upfDeployment1")
.build());
}
}

Import

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

$ pulumi import azure-native:mobilepacketcore:UpfDeployment upfDeployment1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobilePacketCore/upfDeployments/{upfDeploymentName}

Constructors

Link copied to clipboard
constructor(clusterService: Output<String>? = null, componentParameters: Output<String>? = null, location: Output<String>? = null, resourceGroupName: Output<String>? = null, secretsParameters: Output<String>? = null, tags: Output<Map<String, String>>? = null, upfDeploymentName: Output<String>? = null)

Properties

Link copied to clipboard
val clusterService: Output<String>? = null

Reference to cluster where the Network Function is deployed

Link copied to clipboard
val componentParameters: Output<String>? = null

Azure for Operators 5G Core UPF component parameters

Link copied to clipboard
val location: Output<String>? = null

The geo-location where the resource lives

Link copied to clipboard
val resourceGroupName: Output<String>? = null

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

Link copied to clipboard
val secretsParameters: Output<String>? = null

Azure for Operators 5G Core F secrets parameters

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

Resource tags.

Link copied to clipboard
val upfDeploymentName: Output<String>? = null

The name of the UpfDeployment

Functions

Link copied to clipboard
open override fun toJava(): UpfDeploymentArgs