Nrf Deployment
Azure for Operators 5G Core Network Repository Function (NRF) Deployment Resource Azure REST API version: 2023-10-15-preview.
Example Usage
NrfDeployments_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var nrfDeployment = new AzureNative.MobilePacketCore.NrfDeployment("nrfDeployment", new()
{
ClusterService = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobilePacketCore/clusterServices/byoCluster",
ComponentParameters = "{\"global\": {\"registry\": {\"docker\": []}}}",
Location = "eastus",
NrfDeploymentName = "nrfDeployment1",
ResourceGroupName = "rg1",
SecretsParameters = "{\"global\": {\"secret\": {\"secretValue\": []}}}",
});
});
Content copied to clipboard
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.NewNrfDeployment(ctx, "nrfDeployment", &mobilepacketcore.NrfDeploymentArgs{
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"),
NrfDeploymentName: pulumi.String("nrfDeployment1"),
ResourceGroupName: pulumi.String("rg1"),
SecretsParameters: pulumi.String("{\"global\": {\"secret\": {\"secretValue\": []}}}"),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.mobilepacketcore.NrfDeployment;
import com.pulumi.azurenative.mobilepacketcore.NrfDeploymentArgs;
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 nrfDeployment = new NrfDeployment("nrfDeployment", NrfDeploymentArgs.builder()
.clusterService("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobilePacketCore/clusterServices/byoCluster")
.componentParameters("{\"global\": {\"registry\": {\"docker\": []}}}")
.location("eastus")
.nrfDeploymentName("nrfDeployment1")
.resourceGroupName("rg1")
.secretsParameters("{\"global\": {\"secret\": {\"secretValue\": []}}}")
.build());
}
}
Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:mobilepacketcore:NrfDeployment nrfDeployment1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobilePacketCore/nrfDeployments/{nrfDeploymentName}
Content copied to clipboard
Properties
Link copied to clipboard
Reference to cluster where the Network Function is deployed
Link copied to clipboard
Azure for Operators 5G Core NRF component parameters
Link copied to clipboard
Operational status
Link copied to clipboard
The status of the last operation.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Release version. This is inherited from the cluster
Link copied to clipboard
Azure for Operators 5G Core NRF secrets parameters
Link copied to clipboard
Azure Resource Manager metadata containing createdBy and modifiedBy information.