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 customer gateways
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const fooCustomerGateway = new volcengine.vpn.CustomerGateway("fooCustomerGateway", {
 *     ipAddress: "192.0.1.3",
 *     customerGatewayName: "acc-test",
 *     description: "acc-test",
 *     projectName: "default",
 * });
 * const fooCustomerGateways = volcengine.vpn.getCustomerGatewaysOutput({
 *     ids: [fooCustomerGateway.id],
 * });
 * ```
 */
export declare function getCustomerGateways(args?: GetCustomerGatewaysArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomerGatewaysResult>;
/**
 * A collection of arguments for invoking getCustomerGateways.
 */
export interface GetCustomerGatewaysArgs {
    /**
     * A list of customer gateway names.
     */
    customerGatewayNames?: string[];
    /**
     * A list of customer gateway ids.
     */
    ids?: string[];
    /**
     * A IP address of the customer gateway.
     */
    ipAddress?: string;
    /**
     * The IP version of the customer gateway. Valid value: ipv4, ipv6.
     */
    ipVersion?: string;
    /**
     * A Name Regex of customer gateway.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The project name of the VPN customer gateway.
     */
    projectName?: string;
    /**
     * The status of the customer gateway. Valid value: Creating, Deleting, Pending, Available.
     */
    status?: string;
    /**
     * Tags.
     */
    tags?: inputs.vpn.GetCustomerGatewaysTag[];
}
/**
 * A collection of values returned by getCustomerGateways.
 */
export interface GetCustomerGatewaysResult {
    readonly customerGatewayNames?: string[];
    /**
     * The collection of customer gateway query.
     */
    readonly customerGateways: outputs.vpn.GetCustomerGatewaysCustomerGateway[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly ids?: string[];
    /**
     * The IP address of the customer gateway.
     */
    readonly ipAddress?: string;
    /**
     * The IP version of the customer gateway.
     */
    readonly ipVersion?: string;
    readonly nameRegex?: string;
    readonly outputFile?: string;
    /**
     * The project name of the VPN customer gateway.
     */
    readonly projectName?: string;
    /**
     * The status of the customer gateway.
     */
    readonly status?: string;
    /**
     * Tags.
     */
    readonly tags?: outputs.vpn.GetCustomerGatewaysTag[];
    /**
     * The total count of customer gateway query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of customer gateways
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const fooCustomerGateway = new volcengine.vpn.CustomerGateway("fooCustomerGateway", {
 *     ipAddress: "192.0.1.3",
 *     customerGatewayName: "acc-test",
 *     description: "acc-test",
 *     projectName: "default",
 * });
 * const fooCustomerGateways = volcengine.vpn.getCustomerGatewaysOutput({
 *     ids: [fooCustomerGateway.id],
 * });
 * ```
 */
export declare function getCustomerGatewaysOutput(args?: GetCustomerGatewaysOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCustomerGatewaysResult>;
/**
 * A collection of arguments for invoking getCustomerGateways.
 */
export interface GetCustomerGatewaysOutputArgs {
    /**
     * A list of customer gateway names.
     */
    customerGatewayNames?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * A list of customer gateway ids.
     */
    ids?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * A IP address of the customer gateway.
     */
    ipAddress?: pulumi.Input<string>;
    /**
     * The IP version of the customer gateway. Valid value: ipv4, ipv6.
     */
    ipVersion?: pulumi.Input<string>;
    /**
     * A Name Regex of customer gateway.
     */
    nameRegex?: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The project name of the VPN customer gateway.
     */
    projectName?: pulumi.Input<string>;
    /**
     * The status of the customer gateway. Valid value: Creating, Deleting, Pending, Available.
     */
    status?: pulumi.Input<string>;
    /**
     * Tags.
     */
    tags?: pulumi.Input<pulumi.Input<inputs.vpn.GetCustomerGatewaysTagArgs>[]>;
}
