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 Vaults in Oracle Cloud Infrastructure Kms service. * * Lists the vaults in the specified compartment. * * As a provisioning operation, this call is subject to a Key Management limit that applies to * the total number of requests across all provisioning read operations. Key Management might * throttle this call to reject an otherwise valid request when the total rate of provisioning * read operations exceeds 10 requests per second for a given tenancy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVaults = oci.kms.getVaults({ * compartmentId: compartmentId, * }); * ``` */ export declare function getVaults(args: GetVaultsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVaults. */ export interface GetVaultsArgs { /** * The OCID of the compartment. */ compartmentId: string; filters?: inputs.Kms.GetVaultsFilter[]; } /** * A collection of values returned by getVaults. */ export interface GetVaultsResult { /** * The OCID of the compartment that contains a particular vault. */ readonly compartmentId: string; readonly filters?: outputs.Kms.GetVaultsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of vaults. */ readonly vaults: outputs.Kms.GetVaultsVault[]; } /** * This data source provides the list of Vaults in Oracle Cloud Infrastructure Kms service. * * Lists the vaults in the specified compartment. * * As a provisioning operation, this call is subject to a Key Management limit that applies to * the total number of requests across all provisioning read operations. Key Management might * throttle this call to reject an otherwise valid request when the total rate of provisioning * read operations exceeds 10 requests per second for a given tenancy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVaults = oci.kms.getVaults({ * compartmentId: compartmentId, * }); * ``` */ export declare function getVaultsOutput(args: GetVaultsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVaults. */ export interface GetVaultsOutputArgs { /** * The OCID of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getVaults.d.ts.map