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 private zone resolver endpoints
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const foo = volcengine.private_zone.getResolverEndpoints({});
 * ```
 */
/** @deprecated volcengine.private_zone.ResolverEndpoints has been deprecated in favor of volcengine.private_zone.getResolverEndpoints */
export declare function resolverEndpoints(args?: ResolverEndpointsArgs, opts?: pulumi.InvokeOptions): Promise<ResolverEndpointsResult>;
/**
 * A collection of arguments for invoking ResolverEndpoints.
 */
export interface ResolverEndpointsArgs {
    /**
     * The direction of the private zone resolver endpoint.
     */
    direction?: string;
    /**
     * The name of the private zone resolver endpoint.
     */
    name?: string;
    /**
     * A Name Regex of Resource.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The project name of the private zone resolver endpoint.
     */
    projectName?: string;
    /**
     * The status of the private zone resolver endpoint.
     */
    status?: string;
    /**
     * List of tag filters.
     */
    tagFilters?: inputs.private_zone.ResolverEndpointsTagFilter[];
    /**
     * The vpc ID of the private zone resolver endpoint.
     */
    vpcId?: string;
}
/**
 * A collection of values returned by ResolverEndpoints.
 */
export interface ResolverEndpointsResult {
    /**
     * The direction of the endpoint.
     */
    readonly direction?: string;
    /**
     * The collection of query.
     */
    readonly endpoints: outputs.private_zone.ResolverEndpointsEndpoint[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * The name of the endpoint.
     */
    readonly name?: string;
    readonly nameRegex?: string;
    readonly outputFile?: string;
    /**
     * The project name of the endpoint.
     */
    readonly projectName?: string;
    /**
     * The status of the endpoint.
     */
    readonly status?: string;
    readonly tagFilters?: outputs.private_zone.ResolverEndpointsTagFilter[];
    /**
     * The total count of query.
     */
    readonly totalCount: number;
    /**
     * The vpc id of the endpoint.
     */
    readonly vpcId?: string;
}
/**
 * Use this data source to query detailed information of private zone resolver endpoints
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const foo = volcengine.private_zone.getResolverEndpoints({});
 * ```
 */
/** @deprecated volcengine.private_zone.ResolverEndpoints has been deprecated in favor of volcengine.private_zone.getResolverEndpoints */
export declare function resolverEndpointsOutput(args?: ResolverEndpointsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<ResolverEndpointsResult>;
/**
 * A collection of arguments for invoking ResolverEndpoints.
 */
export interface ResolverEndpointsOutputArgs {
    /**
     * The direction of the private zone resolver endpoint.
     */
    direction?: pulumi.Input<string>;
    /**
     * The name of the private zone resolver endpoint.
     */
    name?: 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 project name of the private zone resolver endpoint.
     */
    projectName?: pulumi.Input<string>;
    /**
     * The status of the private zone resolver endpoint.
     */
    status?: pulumi.Input<string>;
    /**
     * List of tag filters.
     */
    tagFilters?: pulumi.Input<pulumi.Input<inputs.private_zone.ResolverEndpointsTagFilterArgs>[]>;
    /**
     * The vpc ID of the private zone resolver endpoint.
     */
    vpcId?: pulumi.Input<string>;
}
