import * as $dara from '@darabonba/typescript'; export declare class CreateAccessControlListRequest extends $dara.Model { /** * @remarks * The name of the ACL. The name must be 1 to 30 characters in length, and can contain letters, digits, periods (.), hyphens (-), forward slashes (/), and underscores (_). The name must be unique within the region. * * This parameter is required. * * @example * testAcl */ aclName?: string; /** * @remarks * The IP protocol version of the ACL. Valid values: * * * **IPv4** * * **IPv6** * * @example * ipv4 */ addressIPVersion?: string; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }