import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of rds postgresql allowlists
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.rds_postgresql.getAllowlists({
 *     allowListCategory: "Ordinary",
 *     allowListDesc: "test allow list",
 *     allowListId: "acl-e7846436e1e741edbd385868fa657436",
 *     allowListName: "test",
 *     ipAddress: "100.64.0.0/10",
 *     nameRegex: ".*allowlist.*",
 * });
 * ```
 */
export declare function getAllowlists(args?: GetAllowlistsArgs, opts?: pulumi.InvokeOptions): Promise<GetAllowlistsResult>;
/**
 * A collection of arguments for invoking getAllowlists.
 */
export interface GetAllowlistsArgs {
    /**
     * The category of the postgresql allow list. Valid values: Ordinary, Default.
     */
    allowListCategory?: string;
    /**
     * The description of the postgresql allow list. Perform a fuzzy search based on the description information.
     */
    allowListDesc?: string;
    /**
     * The id of the postgresql allow list.
     */
    allowListId?: string;
    /**
     * The name of the postgresql allow list.
     */
    allowListName?: string;
    /**
     * The id of the postgresql Instance.
     */
    instanceId?: string;
    /**
     * The IP address to be added to the allow list.
     */
    ipAddress?: string;
    /**
     * A Name Regex of Resource.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by getAllowlists.
 */
export interface GetAllowlistsResult {
    /**
     * The category of the postgresql allow list.
     */
    readonly allowListCategory?: string;
    /**
     * The description of the postgresql allow list.
     */
    readonly allowListDesc?: string;
    /**
     * The id of the postgresql allow list.
     */
    readonly allowListId?: string;
    /**
     * The name of the postgresql allow list.
     */
    readonly allowListName?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * The id of the postgresql instance.
     */
    readonly instanceId?: string;
    readonly ipAddress?: string;
    readonly nameRegex?: string;
    readonly outputFile?: string;
    /**
     * The list of postgresql allowed list.
     */
    readonly postgresqlAllowLists: outputs.rds_postgresql.GetAllowlistsPostgresqlAllowList[];
    /**
     * The total count of query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of rds postgresql allowlists
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.rds_postgresql.getAllowlists({
 *     allowListCategory: "Ordinary",
 *     allowListDesc: "test allow list",
 *     allowListId: "acl-e7846436e1e741edbd385868fa657436",
 *     allowListName: "test",
 *     ipAddress: "100.64.0.0/10",
 *     nameRegex: ".*allowlist.*",
 * });
 * ```
 */
export declare function getAllowlistsOutput(args?: GetAllowlistsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAllowlistsResult>;
/**
 * A collection of arguments for invoking getAllowlists.
 */
export interface GetAllowlistsOutputArgs {
    /**
     * The category of the postgresql allow list. Valid values: Ordinary, Default.
     */
    allowListCategory?: pulumi.Input<string>;
    /**
     * The description of the postgresql allow list. Perform a fuzzy search based on the description information.
     */
    allowListDesc?: pulumi.Input<string>;
    /**
     * The id of the postgresql allow list.
     */
    allowListId?: pulumi.Input<string>;
    /**
     * The name of the postgresql allow list.
     */
    allowListName?: pulumi.Input<string>;
    /**
     * The id of the postgresql Instance.
     */
    instanceId?: pulumi.Input<string>;
    /**
     * The IP address to be added to the allow list.
     */
    ipAddress?: pulumi.Input<string>;
    /**
     * A Name Regex of Resource.
     */
    nameRegex?: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
