import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of redis regions
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.redis.getRegions({
 *     regionId: "cn-north-3",
 * });
 * ```
 */
/** @deprecated volcengine.redis.Regions has been deprecated in favor of volcengine.redis.getRegions */
export declare function regions(args?: RegionsArgs, opts?: pulumi.InvokeOptions): Promise<RegionsResult>;
/**
 * A collection of arguments for invoking Regions.
 */
export interface RegionsArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * Target region info.
     */
    regionId?: string;
}
/**
 * A collection of values returned by Regions.
 */
export interface RegionsResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly outputFile?: string;
    /**
     * The id of the region.
     */
    readonly regionId?: string;
    /**
     * The collection of region query.
     */
    readonly regions: outputs.redis.RegionsRegion[];
    /**
     * The total count of region query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of redis regions
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.redis.getRegions({
 *     regionId: "cn-north-3",
 * });
 * ```
 */
/** @deprecated volcengine.redis.Regions has been deprecated in favor of volcengine.redis.getRegions */
export declare function regionsOutput(args?: RegionsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<RegionsResult>;
/**
 * A collection of arguments for invoking Regions.
 */
export interface RegionsOutputArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * Target region info.
     */
    regionId?: pulumi.Input<string>;
}
