ClusterManagedPrivateEndpointArgs

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

Manages a Managed Private Endpoint for a Kusto Cluster.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.CoreFunctions;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.kusto.Cluster;
import com.pulumi.azure.kusto.ClusterArgs;
import com.pulumi.azure.kusto.inputs.ClusterSkuArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.kusto.ClusterManagedPrivateEndpoint;
import com.pulumi.azure.kusto.ClusterManagedPrivateEndpointArgs;
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) {
final var current = CoreFunctions.getClientConfig();
var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleCluster = new Cluster("exampleCluster", ClusterArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.sku(ClusterSkuArgs.builder()
.name("Dev(No SLA)_Standard_D11_v2")
.capacity(1)
.build())
.build());
var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.accountTier("Standard")
.accountReplicationType("LRS")
.build());
var exampleClusterManagedPrivateEndpoint = new ClusterManagedPrivateEndpoint("exampleClusterManagedPrivateEndpoint", ClusterManagedPrivateEndpointArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.clusterName(exampleCluster.name())
.privateLinkResourceId(exampleAccount.id())
.privateLinkResourceRegion(exampleAccount.location())
.groupId("blob")
.requestMessage("Please Approve")
.build());
}
}

Import

Managed Private Endpoint for a Kusto Cluster can be imported using the resource id, e.g.

$ pulumi import azure:kusto/clusterManagedPrivateEndpoint:ClusterManagedPrivateEndpoint example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Kusto/clusters/cluster1/managedPrivateEndpoints/managedPrivateEndpoint1

Constructors

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

Functions

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

Properties

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

The name of the Kusto Cluster. Changing this forces a new resource to be created.

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

The group id in which the managed private endpoint is created. Changing this forces a new resource to be created.

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

The name of the Managed Private Endpoints to create. Changing this forces a new resource to be created.

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

The ARM resource ID of the resource for which the managed private endpoint is created. Changing this forces a new resource to be created.

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

The region of the resource to which the managed private endpoint is created. Changing this forces a new resource to be created.

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

The user request message.

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

Specifies the Resource Group where the Kusto Cluster should exist. Changing this forces a new resource to be created.