import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::ALB::ACL */ export declare function getAcl(args: GetAclArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAcl. */ export interface GetAclArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getAcl. */ export interface GetAclResult { /** * Detailed information about IP entries in the access control policy group. */ readonly aclEntries: outputs.alb.GetAclAclEntry[]; /** * Number of IP entries in the access control policy group. */ readonly aclEntryCount: number; /** * Access control policy group ID. */ readonly aclId: string; /** * Name of the access control policy group. Cannot start with http:// or https://. Must start with a letter or Chinese character and can include numbers, periods (.), underscores (_), and hyphens (-). Length must be between 1 and 128 characters. If not specified, defaults to the access control policy group ID. */ readonly aclName: string; /** * Creation time of the access control policy group. */ readonly createdTime: string; /** * Description of the access control policy group. Cannot start with http:// or https://. Must start with a letter or Chinese character and can include numbers, English commas (,), periods (.), underscores (_), spaces ( ), equals signs (=), hyphens (-), Chinese commas (,), and Chinese periods (。). Length must be between 1 and 255 characters. If not specified, defaults to an empty string. */ readonly description: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Detailed information about listeners associated with the access control policy group. */ readonly listeners: outputs.alb.GetAclListener[]; /** * Name of the project to which the access control policy group belongs. */ readonly projectName: string; /** * Status of the access control policy group. Creating: being created. Active: available. Configuring: being configured. Deleting: being deleted. */ readonly status: string; /** * Tags bound to the access control policy group. */ readonly tags: outputs.alb.GetAclTag[]; /** * Most recent operation time for the access control policy group. */ readonly updatedTime: string; } /** * Data Source schema for Volcengine::ALB::ACL */ export declare function getAclOutput(args: GetAclOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAcl. */ export interface GetAclOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }