import * as pulumi from "@pulumi/pulumi";
/**
 * Data source for looking up an Azure key vault connector.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as harness from "@pulumi/harness";
 *
 * const example = harness.platform.getAzureKeyVaultConnector({
 *     identifier: "identifier",
 * });
 * ```
 */
export declare function getAzureKeyVaultConnector(args: GetAzureKeyVaultConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetAzureKeyVaultConnectorResult>;
/**
 * A collection of arguments for invoking getAzureKeyVaultConnector.
 */
export interface GetAzureKeyVaultConnectorArgs {
    /**
     * Unique identifier of the resource.
     */
    identifier: string;
    /**
     * Name of the resource.
     */
    name?: string;
    /**
     * Unique identifier of the organization.
     */
    orgId?: string;
    /**
     * Unique identifier of the project.
     */
    projectId?: string;
}
/**
 * A collection of values returned by getAzureKeyVaultConnector.
 */
export interface GetAzureKeyVaultConnectorResult {
    /**
     * Azure environment type. Possible values: AZURE or AZURE*US*GOVERNMENT. Default value: AZURE
     */
    readonly azureEnvironmentType: string;
    /**
     * Application ID of the Azure App.
     */
    readonly clientId: string;
    /**
     * Connect using only the delegates which have these tags.
     */
    readonly delegateSelectors: string[];
    /**
     * Description of the resource.
     */
    readonly description: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * Unique identifier of the resource.
     */
    readonly identifier: string;
    /**
     * Specifies whether or not is the default value.
     */
    readonly isDefault: boolean;
    /**
     * Name of the resource.
     */
    readonly name?: string;
    /**
     * Unique identifier of the organization.
     */
    readonly orgId?: string;
    /**
     * Unique identifier of the project.
     */
    readonly projectId?: string;
    /**
     * The Harness text secret with the Azure authentication key as its value.
     */
    readonly secretKey: string;
    /**
     * Azure subscription ID.
     */
    readonly subscription: string;
    /**
     * Tags to associate with the resource.
     */
    readonly tags: string[];
    /**
     * The Azure Active Directory (AAD) directory ID where you created your application.
     */
    readonly tenantId: string;
    /**
     * Name of the vault.
     */
    readonly vaultName: string;
}
/**
 * Data source for looking up an Azure key vault connector.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as harness from "@pulumi/harness";
 *
 * const example = harness.platform.getAzureKeyVaultConnector({
 *     identifier: "identifier",
 * });
 * ```
 */
export declare function getAzureKeyVaultConnectorOutput(args: GetAzureKeyVaultConnectorOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAzureKeyVaultConnectorResult>;
/**
 * A collection of arguments for invoking getAzureKeyVaultConnector.
 */
export interface GetAzureKeyVaultConnectorOutputArgs {
    /**
     * Unique identifier of the resource.
     */
    identifier: pulumi.Input<string>;
    /**
     * Name of the resource.
     */
    name?: pulumi.Input<string>;
    /**
     * Unique identifier of the organization.
     */
    orgId?: pulumi.Input<string>;
    /**
     * Unique identifier of the project.
     */
    projectId?: pulumi.Input<string>;
}
