import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Get a EksCluster
 *
 * Uses Azure REST API version 2024-12-01.
 */
export declare function getEksCluster(args: GetEksClusterArgs, opts?: pulumi.InvokeOptions): Promise<GetEksClusterResult>;
export interface GetEksClusterArgs {
    /**
     * The fully qualified Azure Resource manager identifier of the resource.
     */
    resourceUri: string;
}
/**
 * A Microsoft.AwsConnector resource
 */
export interface GetEksClusterResult {
    /**
     * The Azure API version of the resource.
     */
    readonly azureApiVersion: string;
    /**
     * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
     */
    readonly id: string;
    /**
     * The name of the resource
     */
    readonly name: string;
    /**
     * The resource-specific properties for this resource.
     */
    readonly properties: outputs.awsconnector.EksClusterPropertiesResponse;
    /**
     * Azure Resource Manager metadata containing createdBy and modifiedBy information.
     */
    readonly systemData: outputs.awsconnector.SystemDataResponse;
    /**
     * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
     */
    readonly type: string;
}
/**
 * Get a EksCluster
 *
 * Uses Azure REST API version 2024-12-01.
 */
export declare function getEksClusterOutput(args: GetEksClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEksClusterResult>;
export interface GetEksClusterOutputArgs {
    /**
     * The fully qualified Azure Resource manager identifier of the resource.
     */
    resourceUri: pulumi.Input<string>;
}
