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 alb customized cfgs
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const foo = volcengine.alb.getCustomizedCfgs({});
 * ```
 */
export declare function getCustomizedCfgs(args?: GetCustomizedCfgsArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomizedCfgsResult>;
/**
 * A collection of arguments for invoking getCustomizedCfgs.
 */
export interface GetCustomizedCfgsArgs {
    /**
     * The name of the CustomizedCfg.
     */
    customizedCfgName?: string;
    /**
     * A list of CustomizedCfg IDs.
     */
    ids?: string[];
    /**
     * The id of the listener.
     */
    listenerId?: string;
    /**
     * A Name Regex of CustomizedCfg.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The project name of the CustomizedCfg.
     */
    projectName?: string;
    /**
     * Tags.
     */
    tags?: inputs.alb.GetCustomizedCfgsTag[];
}
/**
 * A collection of values returned by getCustomizedCfgs.
 */
export interface GetCustomizedCfgsResult {
    /**
     * The collection of CustomizedCfg query.
     */
    readonly cfgs: outputs.alb.GetCustomizedCfgsCfg[];
    /**
     * The name of CustomizedCfg.
     */
    readonly customizedCfgName?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly ids?: string[];
    /**
     * The ID of Listener.
     */
    readonly listenerId?: string;
    readonly nameRegex?: string;
    readonly outputFile?: string;
    /**
     * The project name of CustomizedCfg.
     */
    readonly projectName?: string;
    /**
     * Tags.
     */
    readonly tags?: outputs.alb.GetCustomizedCfgsTag[];
    /**
     * The total count of CustomizedCfg query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of alb customized cfgs
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const foo = volcengine.alb.getCustomizedCfgs({});
 * ```
 */
export declare function getCustomizedCfgsOutput(args?: GetCustomizedCfgsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCustomizedCfgsResult>;
/**
 * A collection of arguments for invoking getCustomizedCfgs.
 */
export interface GetCustomizedCfgsOutputArgs {
    /**
     * The name of the CustomizedCfg.
     */
    customizedCfgName?: pulumi.Input<string>;
    /**
     * A list of CustomizedCfg IDs.
     */
    ids?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * The id of the listener.
     */
    listenerId?: pulumi.Input<string>;
    /**
     * A Name Regex of CustomizedCfg.
     */
    nameRegex?: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The project name of the CustomizedCfg.
     */
    projectName?: pulumi.Input<string>;
    /**
     * Tags.
     */
    tags?: pulumi.Input<pulumi.Input<inputs.alb.GetCustomizedCfgsTagArgs>[]>;
}
