import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Kusto (also known as Azure Data Explorer) Cluster * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.kusto.getCluster({ * name: "kustocluster", * resourceGroupName: "test_resource_group", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Kusto` - 2024-04-13 */ export declare function getCluster(args: GetClusterArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCluster. */ export interface GetClusterArgs { /** * Specifies the name of the Kusto Cluster. */ name: string; /** * The name of the Resource Group where the Kusto Cluster exists. */ resourceGroupName: string; } /** * A collection of values returned by getCluster. */ export interface GetClusterResult { /** * The Kusto Cluster URI to be used for data ingestion. */ readonly dataIngestionUri: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An `identity` block as defined below. */ readonly identities: outputs.kusto.GetClusterIdentity[]; readonly location: string; readonly name: string; readonly resourceGroupName: string; readonly tags: { [key: string]: string; }; /** * The FQDN of the Azure Kusto Cluster. */ readonly uri: string; } /** * Use this data source to access information about an existing Kusto (also known as Azure Data Explorer) Cluster * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.kusto.getCluster({ * name: "kustocluster", * resourceGroupName: "test_resource_group", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Kusto` - 2024-04-13 */ export declare function getClusterOutput(args: GetClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCluster. */ export interface GetClusterOutputArgs { /** * Specifies the name of the Kusto Cluster. */ name: pulumi.Input; /** * The name of the Resource Group where the Kusto Cluster exists. */ resourceGroupName: pulumi.Input; }