ManagedPrivateEndpointArgs

data class ManagedPrivateEndpointArgs(val clusterName: Output<String>? = null, val groupId: Output<String>? = null, val managedPrivateEndpointName: Output<String>? = null, val privateLinkResourceId: Output<String>? = null, val privateLinkResourceRegion: Output<String>? = null, val requestMessage: Output<String>? = null, val resourceGroupName: Output<String>? = null) : ConvertibleToJava<ManagedPrivateEndpointArgs>

Class representing a managed private endpoint. Uses Azure REST API version 2024-04-13. In version 2.x of the Azure Native provider, it used API version 2022-12-29. Other available API versions: 2021-08-27, 2022-02-01, 2022-07-07, 2022-11-11, 2022-12-29, 2023-05-02, 2023-08-15. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native kusto [ApiVersion]. See the ../../../version-guide/#accessing-any-api-version-via-local-packages for details.

Example Usage

KustoManagedPrivateEndpointsCreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var managedPrivateEndpoint = new AzureNative.Kusto.ManagedPrivateEndpoint("managedPrivateEndpoint", new()
{
ClusterName = "kustoCluster",
GroupId = "blob",
ManagedPrivateEndpointName = "managedPrivateEndpointTest",
PrivateLinkResourceId = "/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Storage/storageAccounts/storageAccountTest",
RequestMessage = "Please Approve.",
ResourceGroupName = "kustorptest",
});
});
package main
import (
kusto "github.com/pulumi/pulumi-azure-native-sdk/kusto/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := kusto.NewManagedPrivateEndpoint(ctx, "managedPrivateEndpoint", &kusto.ManagedPrivateEndpointArgs{
ClusterName: pulumi.String("kustoCluster"),
GroupId: pulumi.String("blob"),
ManagedPrivateEndpointName: pulumi.String("managedPrivateEndpointTest"),
PrivateLinkResourceId: pulumi.String("/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Storage/storageAccounts/storageAccountTest"),
RequestMessage: pulumi.String("Please Approve."),
ResourceGroupName: pulumi.String("kustorptest"),
})
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.kusto.ManagedPrivateEndpoint;
import com.pulumi.azurenative.kusto.ManagedPrivateEndpointArgs;
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 managedPrivateEndpoint = new ManagedPrivateEndpoint("managedPrivateEndpoint", ManagedPrivateEndpointArgs.builder()
.clusterName("kustoCluster")
.groupId("blob")
.managedPrivateEndpointName("managedPrivateEndpointTest")
.privateLinkResourceId("/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Storage/storageAccounts/storageAccountTest")
.requestMessage("Please Approve.")
.resourceGroupName("kustorptest")
.build());
}
}

Import

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

$ pulumi import azure-native:kusto:ManagedPrivateEndpoint kustoCluster/KustoDatabase8/managedPrivateEndpointTest /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/managedPrivateEndpoints/{managedPrivateEndpointName}

Constructors

Link copied to clipboard
constructor(clusterName: Output<String>? = null, groupId: Output<String>? = null, managedPrivateEndpointName: Output<String>? = null, privateLinkResourceId: Output<String>? = null, privateLinkResourceRegion: Output<String>? = null, requestMessage: Output<String>? = null, resourceGroupName: Output<String>? = null)

Properties

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

The name of the Kusto cluster.

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

The groupId in which the managed private endpoint is created.

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

The name of the managed private endpoint.

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

The ARM resource ID of the resource for which the managed private endpoint is created.

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

The region of the resource to which the managed private endpoint is created.

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

The user request message.

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

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

Functions

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