import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Get information about an ExascaleDbStorageVault.
 *
 * For more information see the
 * [API](https://cloud.google.com/oracle/database/docs/reference/rest/v1/projects.locations.exascaleDbStorageVaults).
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 *
 * const my_vault = gcp.oracledatabase.getExascaleDbStorageVault({
 *     location: "us-east4",
 *     exascaleDbStorageVaultId: "vault-id",
 * });
 * ```
 */
export declare function getExascaleDbStorageVault(args: GetExascaleDbStorageVaultArgs, opts?: pulumi.InvokeOptions): Promise<GetExascaleDbStorageVaultResult>;
/**
 * A collection of arguments for invoking getExascaleDbStorageVault.
 */
export interface GetExascaleDbStorageVaultArgs {
    /**
     * The ID of the ExascaleDbStorageVault.
     */
    exascaleDbStorageVaultId: string;
    /**
     * The location of the resource.
     *
     * ***
     */
    location: string;
    /**
     * The project to which the resource belongs. If it
     * is not provided, the provider project is used.
     */
    project?: string;
}
/**
 * A collection of values returned by getExascaleDbStorageVault.
 */
export interface GetExascaleDbStorageVaultResult {
    readonly createTime: string;
    readonly deletionPolicy: string;
    readonly deletionProtection: boolean;
    readonly displayName: string;
    readonly effectiveLabels: {
        [key: string]: string;
    };
    readonly entitlementId: string;
    readonly exadataInfrastructure: string;
    readonly exascaleDbStorageVaultId: string;
    readonly gcpOracleZone: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly labels: {
        [key: string]: string;
    };
    readonly location: string;
    readonly name: string;
    readonly project?: string;
    readonly properties: outputs.oracledatabase.GetExascaleDbStorageVaultProperty[];
    readonly pulumiLabels: {
        [key: string]: string;
    };
}
/**
 * Get information about an ExascaleDbStorageVault.
 *
 * For more information see the
 * [API](https://cloud.google.com/oracle/database/docs/reference/rest/v1/projects.locations.exascaleDbStorageVaults).
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 *
 * const my_vault = gcp.oracledatabase.getExascaleDbStorageVault({
 *     location: "us-east4",
 *     exascaleDbStorageVaultId: "vault-id",
 * });
 * ```
 */
export declare function getExascaleDbStorageVaultOutput(args: GetExascaleDbStorageVaultOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetExascaleDbStorageVaultResult>;
/**
 * A collection of arguments for invoking getExascaleDbStorageVault.
 */
export interface GetExascaleDbStorageVaultOutputArgs {
    /**
     * The ID of the ExascaleDbStorageVault.
     */
    exascaleDbStorageVaultId: pulumi.Input<string>;
    /**
     * The location of the resource.
     *
     * ***
     */
    location: pulumi.Input<string>;
    /**
     * The project to which the resource belongs. If it
     * is not provided, the provider project is used.
     */
    project?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=getExascaleDbStorageVault.d.ts.map