import * as $dara from '@darabonba/typescript'; export declare class EnableInstanceAccessControlRequest extends $dara.Model { /** * @remarks * The ID of the access control policy. * * This parameter is required. * * @example * acl-bp11escro2et2tioscy52 */ aclId?: string; /** * @remarks * The ACL type. Valid values: * * * black: blacklist * * white: whitelist * * This parameter is required. * * @example * black */ aclType?: string; /** * @remarks * The IP version. Valid values: **ipv4** and **ipv6**. * * @example * ipv4 */ addressIPVersion?: string; /** * @remarks * The ID of the instance. * * This parameter is required. * * @example * apigateway-cn-v6419k43xxxxx */ instanceId?: string; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }