import * as pulumi from "@pulumi/pulumi"; /** * Manages a Managed Private Endpoint for a Kusto Cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const current = azure.core.getClientConfig({}); * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleCluster = new azure.kusto.Cluster("example", { * name: "examplekc", * location: example.location, * resourceGroupName: example.name, * sku: { * name: "Dev(No SLA)_Standard_D11_v2", * capacity: 1, * }, * }); * const exampleAccount = new azure.storage.Account("example", { * name: "examplesa", * resourceGroupName: example.name, * location: example.location, * accountTier: "Standard", * accountReplicationType: "LRS", * }); * const exampleClusterManagedPrivateEndpoint = new azure.kusto.ClusterManagedPrivateEndpoint("example", { * name: "examplempe", * resourceGroupName: example.name, * clusterName: exampleCluster.name, * privateLinkResourceId: exampleAccount.id, * privateLinkResourceRegion: exampleAccount.location, * groupId: "blob", * requestMessage: "Please Approve", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Kusto` - 2024-04-13 * * ## Import * * Managed Private Endpoint for a Kusto Cluster can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:kusto/clusterManagedPrivateEndpoint:ClusterManagedPrivateEndpoint example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Kusto/clusters/cluster1/managedPrivateEndpoints/managedPrivateEndpoint1 * ``` */ export declare class ClusterManagedPrivateEndpoint extends pulumi.CustomResource { /** * Get an existing ClusterManagedPrivateEndpoint resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ClusterManagedPrivateEndpointState, opts?: pulumi.CustomResourceOptions): ClusterManagedPrivateEndpoint; /** * Returns true if the given object is an instance of ClusterManagedPrivateEndpoint. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ClusterManagedPrivateEndpoint; /** * The name of the Kusto Cluster. Changing this forces a new resource to be created. */ readonly clusterName: pulumi.Output; /** * The group id in which the managed private endpoint is created. Changing this forces a new resource to be created. */ readonly groupId: pulumi.Output; /** * The name of the Managed Private Endpoints to create. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The ARM resource ID of the resource for which the managed private endpoint is created. Changing this forces a new resource to be created. */ readonly privateLinkResourceId: pulumi.Output; /** * The region of the resource to which the managed private endpoint is created. Changing this forces a new resource to be created. */ readonly privateLinkResourceRegion: pulumi.Output; /** * The user request message. */ readonly requestMessage: pulumi.Output; /** * Specifies the Resource Group where the Kusto Cluster should exist. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * Create a ClusterManagedPrivateEndpoint resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ClusterManagedPrivateEndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ClusterManagedPrivateEndpoint resources. */ export interface ClusterManagedPrivateEndpointState { /** * The name of the Kusto Cluster. Changing this forces a new resource to be created. */ clusterName?: pulumi.Input; /** * The group id in which the managed private endpoint is created. Changing this forces a new resource to be created. */ groupId?: pulumi.Input; /** * The name of the Managed Private Endpoints to create. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The ARM resource ID of the resource for which the managed private endpoint is created. Changing this forces a new resource to be created. */ privateLinkResourceId?: pulumi.Input; /** * The region of the resource to which the managed private endpoint is created. Changing this forces a new resource to be created. */ privateLinkResourceRegion?: pulumi.Input; /** * The user request message. */ requestMessage?: pulumi.Input; /** * Specifies the Resource Group where the Kusto Cluster should exist. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; } /** * The set of arguments for constructing a ClusterManagedPrivateEndpoint resource. */ export interface ClusterManagedPrivateEndpointArgs { /** * The name of the Kusto Cluster. Changing this forces a new resource to be created. */ clusterName: pulumi.Input; /** * The group id in which the managed private endpoint is created. Changing this forces a new resource to be created. */ groupId: pulumi.Input; /** * The name of the Managed Private Endpoints to create. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The ARM resource ID of the resource for which the managed private endpoint is created. Changing this forces a new resource to be created. */ privateLinkResourceId: pulumi.Input; /** * The region of the resource to which the managed private endpoint is created. Changing this forces a new resource to be created. */ privateLinkResourceRegion?: pulumi.Input; /** * The user request message. */ requestMessage?: pulumi.Input; /** * Specifies the Resource Group where the Kusto Cluster should exist. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; }