import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of direct connect gateways
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const foo = volcengine.direct_connect.getGateways({
 *     directConnectGatewayName: "tf-test",
 * });
 * ```
 */
export declare function getGateways(args?: GetGatewaysArgs, opts?: pulumi.InvokeOptions): Promise<GetGatewaysResult>;
/**
 * A collection of arguments for invoking getGateways.
 */
export interface GetGatewaysArgs {
    /**
     * The CEN ID which direct connect gateway belongs.
     */
    cenId?: string;
    /**
     * The direst connect gateway name.
     */
    directConnectGatewayName?: string;
    /**
     * A list of IDs.
     */
    ids?: string[];
    /**
     * A Name Regex of Resource.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The filter tag of direct connect.
     */
    tagFilters?: inputs.direct_connect.GetGatewaysTagFilter[];
}
/**
 * A collection of values returned by getGateways.
 */
export interface GetGatewaysResult {
    /**
     * The cen ID.
     */
    readonly cenId?: string;
    /**
     * The direct connect gateway name.
     */
    readonly directConnectGatewayName?: string;
    /**
     * The collection of query.
     */
    readonly directConnectGateways: outputs.direct_connect.GetGatewaysDirectConnectGateway[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly ids?: string[];
    readonly nameRegex?: string;
    readonly outputFile?: string;
    readonly tagFilters?: outputs.direct_connect.GetGatewaysTagFilter[];
    /**
     * The total count of query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of direct connect gateways
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const foo = volcengine.direct_connect.getGateways({
 *     directConnectGatewayName: "tf-test",
 * });
 * ```
 */
export declare function getGatewaysOutput(args?: GetGatewaysOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetGatewaysResult>;
/**
 * A collection of arguments for invoking getGateways.
 */
export interface GetGatewaysOutputArgs {
    /**
     * The CEN ID which direct connect gateway belongs.
     */
    cenId?: pulumi.Input<string>;
    /**
     * The direst connect gateway name.
     */
    directConnectGatewayName?: pulumi.Input<string>;
    /**
     * A list of IDs.
     */
    ids?: 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 filter tag of direct connect.
     */
    tagFilters?: pulumi.Input<pulumi.Input<inputs.direct_connect.GetGatewaysTagFilterArgs>[]>;
}
