import * as $dara from '@darabonba/typescript'; export declare class DescribeAccessControlListsRequest extends $dara.Model { /** * @remarks * The name of the access control policy. * * @example * testAcl */ aclName?: string; /** * @remarks * IP版本,可以设置为**ipv4**或者**ipv6**。 * * @example * ipv6 */ addressIPVersion?: string; /** * @remarks * The page number of the current page. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. * * @example * 10 */ pageSize?: number; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }