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 acls
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.alb.getAcls({
 *     ids: ["acl-1g72w6z11ighs2zbhq4v3rvh4"],
 *     projectName: "default",
 * });
 * ```
 */
/** @deprecated volcengine.alb.Acls has been deprecated in favor of volcengine.alb.getAcls */
export declare function acls(args?: AclsArgs, opts?: pulumi.InvokeOptions): Promise<AclsResult>;
/**
 * A collection of arguments for invoking Acls.
 */
export interface AclsArgs {
    /**
     * The name of acl.
     */
    aclName?: string;
    /**
     * A list of Acl IDs.
     */
    ids?: string[];
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The name of project.
     */
    projectName?: string;
    /**
     * Tags.
     */
    tags?: inputs.alb.AclsTag[];
}
/**
 * A collection of values returned by Acls.
 */
export interface AclsResult {
    /**
     * The Name of Acl.
     */
    readonly aclName?: string;
    /**
     * The collection of Acl query.
     */
    readonly acls: outputs.alb.AclsAcl[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly ids?: string[];
    readonly outputFile?: string;
    /**
     * The project name of Acl.
     */
    readonly projectName?: string;
    /**
     * Tags.
     */
    readonly tags?: outputs.alb.AclsTag[];
    /**
     * The total count of Acl query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of alb acls
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.alb.getAcls({
 *     ids: ["acl-1g72w6z11ighs2zbhq4v3rvh4"],
 *     projectName: "default",
 * });
 * ```
 */
/** @deprecated volcengine.alb.Acls has been deprecated in favor of volcengine.alb.getAcls */
export declare function aclsOutput(args?: AclsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<AclsResult>;
/**
 * A collection of arguments for invoking Acls.
 */
export interface AclsOutputArgs {
    /**
     * The name of acl.
     */
    aclName?: pulumi.Input<string>;
    /**
     * A list of Acl IDs.
     */
    ids?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The name of project.
     */
    projectName?: pulumi.Input<string>;
    /**
     * Tags.
     */
    tags?: pulumi.Input<pulumi.Input<inputs.alb.AclsTagArgs>[]>;
}
