import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of rds postgresql database endpoints
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const example = volcengine.rds_postgresql.getDatabaseEndpoints({
 *     instanceId: "postgres-72715e0d9f58",
 *     nameRegex: "默认.*",
 * });
 * ```
 */
/** @deprecated volcengine.rds_postgresql.DatabaseEndpoints has been deprecated in favor of volcengine.rds_postgresql.getDatabaseEndpoints */
export declare function databaseEndpoints(args?: DatabaseEndpointsArgs, opts?: pulumi.InvokeOptions): Promise<DatabaseEndpointsResult>;
/**
 * A collection of arguments for invoking DatabaseEndpoints.
 */
export interface DatabaseEndpointsArgs {
    /**
     * The ID of the RDS PostgreSQL instance.
     */
    instanceId?: string;
    /**
     * The name of the endpoint to filter.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by DatabaseEndpoints.
 */
export interface DatabaseEndpointsResult {
    /**
     * The collection of query.
     */
    readonly endpoints: outputs.rds_postgresql.DatabaseEndpointsEndpoint[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly instanceId?: string;
    readonly nameRegex?: string;
    readonly outputFile?: string;
    /**
     * The total count of query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of rds postgresql database endpoints
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const example = volcengine.rds_postgresql.getDatabaseEndpoints({
 *     instanceId: "postgres-72715e0d9f58",
 *     nameRegex: "默认.*",
 * });
 * ```
 */
/** @deprecated volcengine.rds_postgresql.DatabaseEndpoints has been deprecated in favor of volcengine.rds_postgresql.getDatabaseEndpoints */
export declare function databaseEndpointsOutput(args?: DatabaseEndpointsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<DatabaseEndpointsResult>;
/**
 * A collection of arguments for invoking DatabaseEndpoints.
 */
export interface DatabaseEndpointsOutputArgs {
    /**
     * The ID of the RDS PostgreSQL instance.
     */
    instanceId?: pulumi.Input<string>;
    /**
     * The name of the endpoint to filter.
     */
    nameRegex?: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
