import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of kms keyrings
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.kms.getKeyrings({
 *     descriptions: [
 *         "tf-1",
 *         "tf-2",
 *     ],
 *     keyringNames: [
 *         "tf-test-1",
 *         "tf-test-2",
 *         "tf-test-3",
 *     ],
 * });
 * ```
 */
export declare function getKeyrings(args?: GetKeyringsArgs, opts?: pulumi.InvokeOptions): Promise<GetKeyringsResult>;
/**
 * A collection of arguments for invoking getKeyrings.
 */
export interface GetKeyringsArgs {
    /**
     * The creation date of the keyring.
     */
    creationDateRanges?: string[];
    /**
     * The description of the keyring.
     */
    descriptions?: string[];
    /**
     * The name of the keyring.
     */
    keyringNames?: string[];
    /**
     * The type of the keyring.
     */
    keyringTypes?: string[];
    /**
     * A Name Regex of Resource.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The name of the project.
     */
    projectName?: string;
    /**
     * The update date of the keyring.
     */
    updateDateRanges?: string[];
}
/**
 * A collection of values returned by getKeyrings.
 */
export interface GetKeyringsResult {
    readonly creationDateRanges?: string[];
    /**
     * The description of the keyring.
     */
    readonly descriptions?: string[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * The name of the keyring.
     */
    readonly keyringNames?: string[];
    /**
     * The type of the keyring.
     */
    readonly keyringTypes?: string[];
    /**
     * The information about the keyring.
     */
    readonly keyrings: outputs.kms.GetKeyringsKeyring[];
    readonly nameRegex?: string;
    readonly outputFile?: string;
    readonly projectName?: string;
    /**
     * The total count of query.
     */
    readonly totalCount: number;
    readonly updateDateRanges?: string[];
}
/**
 * Use this data source to query detailed information of kms keyrings
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.kms.getKeyrings({
 *     descriptions: [
 *         "tf-1",
 *         "tf-2",
 *     ],
 *     keyringNames: [
 *         "tf-test-1",
 *         "tf-test-2",
 *         "tf-test-3",
 *     ],
 * });
 * ```
 */
export declare function getKeyringsOutput(args?: GetKeyringsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetKeyringsResult>;
/**
 * A collection of arguments for invoking getKeyrings.
 */
export interface GetKeyringsOutputArgs {
    /**
     * The creation date of the keyring.
     */
    creationDateRanges?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * The description of the keyring.
     */
    descriptions?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * The name of the keyring.
     */
    keyringNames?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * The type of the keyring.
     */
    keyringTypes?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * A Name Regex of Resource.
     */
    nameRegex?: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The name of the project.
     */
    projectName?: pulumi.Input<string>;
    /**
     * The update date of the keyring.
     */
    updateDateRanges?: pulumi.Input<pulumi.Input<string>[]>;
}
