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 privatelink vpc gateway endpoints
 */
export declare function getVpcGatewayEndpoints(args?: GetVpcGatewayEndpointsArgs, opts?: pulumi.InvokeOptions): Promise<GetVpcGatewayEndpointsResult>;
/**
 * A collection of arguments for invoking getVpcGatewayEndpoints.
 */
export interface GetVpcGatewayEndpointsArgs {
    /**
     * The name of the gateway endpoint.
     */
    endpointName?: string;
    /**
     * A list of gateway endpoint IDs.
     */
    ids?: string[];
    /**
     * A Name Regex of gateway endpoint.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The project name of the gateway endpoint.
     */
    projectName?: string;
    /**
     * Tags.
     */
    tags?: inputs.privatelink.GetVpcGatewayEndpointsTag[];
    /**
     * The id of the vpc.
     */
    vpcId?: string;
}
/**
 * A collection of values returned by getVpcGatewayEndpoints.
 */
export interface GetVpcGatewayEndpointsResult {
    /**
     * The name of the gateway endpoint.
     */
    readonly endpointName?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly ids?: string[];
    readonly nameRegex?: string;
    readonly outputFile?: string;
    /**
     * The project name of the gateway endpoint.
     */
    readonly projectName?: string;
    /**
     * Tags.
     */
    readonly tags?: outputs.privatelink.GetVpcGatewayEndpointsTag[];
    /**
     * The total count of query.
     */
    readonly totalCount: number;
    /**
     * The collection of query.
     */
    readonly vpcGatewayEndpoints: outputs.privatelink.GetVpcGatewayEndpointsVpcGatewayEndpoint[];
    /**
     * The id of the vpc.
     */
    readonly vpcId?: string;
}
/**
 * Use this data source to query detailed information of privatelink vpc gateway endpoints
 */
export declare function getVpcGatewayEndpointsOutput(args?: GetVpcGatewayEndpointsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetVpcGatewayEndpointsResult>;
/**
 * A collection of arguments for invoking getVpcGatewayEndpoints.
 */
export interface GetVpcGatewayEndpointsOutputArgs {
    /**
     * The name of the gateway endpoint.
     */
    endpointName?: pulumi.Input<string>;
    /**
     * A list of gateway endpoint IDs.
     */
    ids?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * A Name Regex of gateway endpoint.
     */
    nameRegex?: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The project name of the gateway endpoint.
     */
    projectName?: pulumi.Input<string>;
    /**
     * Tags.
     */
    tags?: pulumi.Input<pulumi.Input<inputs.privatelink.GetVpcGatewayEndpointsTagArgs>[]>;
    /**
     * The id of the vpc.
     */
    vpcId?: pulumi.Input<string>;
}
