import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of escloud zones v2
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const foo = volcengine.escloud_v2.getEscloudZonesV2({});
 * ```
 */
/** @deprecated volcengine.escloud_v2.EscloudZonesV2 has been deprecated in favor of volcengine.escloud_v2.getEscloudZonesV2 */
export declare function escloudZonesV2(args?: EscloudZonesV2Args, opts?: pulumi.InvokeOptions): Promise<EscloudZonesV2Result>;
/**
 * A collection of arguments for invoking EscloudZonesV2.
 */
export interface EscloudZonesV2Args {
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by EscloudZonesV2.
 */
export interface EscloudZonesV2Result {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly outputFile?: string;
    /**
     * The total count of query.
     */
    readonly totalCount: number;
    /**
     * The collection of query.
     */
    readonly zones: outputs.escloud_v2.EscloudZonesV2Zone[];
}
/**
 * Use this data source to query detailed information of escloud zones v2
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const foo = volcengine.escloud_v2.getEscloudZonesV2({});
 * ```
 */
/** @deprecated volcengine.escloud_v2.EscloudZonesV2 has been deprecated in favor of volcengine.escloud_v2.getEscloudZonesV2 */
export declare function escloudZonesV2Output(args?: EscloudZonesV2OutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<EscloudZonesV2Result>;
/**
 * A collection of arguments for invoking EscloudZonesV2.
 */
export interface EscloudZonesV2OutputArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
