import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Key Stores in Oracle Cloud Infrastructure Database service. * * Gets a list of key stores in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testKeyStores = oci.database.getKeyStores({ * compartmentId: compartmentId, * }); * ``` */ export declare function getKeyStores(args: GetKeyStoresArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getKeyStores. */ export interface GetKeyStoresArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; filters?: inputs.Database.GetKeyStoresFilter[]; } /** * A collection of values returned by getKeyStores. */ export interface GetKeyStoresResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; readonly filters?: outputs.Database.GetKeyStoresFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of key_stores. */ readonly keyStores: outputs.Database.GetKeyStoresKeyStore[]; } /** * This data source provides the list of Key Stores in Oracle Cloud Infrastructure Database service. * * Gets a list of key stores in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testKeyStores = oci.database.getKeyStores({ * compartmentId: compartmentId, * }); * ``` */ export declare function getKeyStoresOutput(args: GetKeyStoresOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getKeyStores. */ export interface GetKeyStoresOutputArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getKeyStores.d.ts.map