import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Gets the Hybrid AKS provisioned cluster
 *
 * Uses Azure REST API version 2022-09-01-preview.
 */
export declare function getProvisionedCluster(args: GetProvisionedClusterArgs, opts?: pulumi.InvokeOptions): Promise<GetProvisionedClusterResult>;
export interface GetProvisionedClusterArgs {
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: string;
    /**
     * Parameter for the name of the provisioned cluster
     */
    resourceName: string;
}
/**
 * The provisionedClusters resource definition.
 */
export interface GetProvisionedClusterResult {
    /**
     * The Azure API version of the resource.
     */
    readonly azureApiVersion: string;
    readonly extendedLocation?: outputs.hybridcontainerservice.ProvisionedClustersResponseResponseExtendedLocation;
    /**
     * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
     */
    readonly id: string;
    /**
     * Identity for the Provisioned cluster.
     */
    readonly identity?: outputs.hybridcontainerservice.ProvisionedClusterIdentityResponse;
    /**
     * The geo-location where the resource lives
     */
    readonly location: string;
    /**
     * The name of the resource
     */
    readonly name: string;
    readonly properties: outputs.hybridcontainerservice.ProvisionedClustersResponsePropertiesResponse;
    /**
     * Metadata pertaining to creation and last modification of the resource.
     */
    readonly systemData: outputs.hybridcontainerservice.SystemDataResponse;
    /**
     * Resource tags.
     */
    readonly tags?: {
        [key: string]: string;
    };
    /**
     * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     */
    readonly type: string;
}
/**
 * Gets the Hybrid AKS provisioned cluster
 *
 * Uses Azure REST API version 2022-09-01-preview.
 */
export declare function getProvisionedClusterOutput(args: GetProvisionedClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProvisionedClusterResult>;
export interface GetProvisionedClusterOutputArgs {
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: pulumi.Input<string>;
    /**
     * Parameter for the name of the provisioned cluster
     */
    resourceName: pulumi.Input<string>;
}
