import * as $dara from '@darabonba/typescript'; export declare class ModifyIpControlRequest extends $dara.Model { /** * @remarks * The description. The description can be up to 200 characters in length. * * @example * description */ description?: string; /** * @remarks * The ID of the ACL. The ID is unique. * * This parameter is required. * * @example * 7ea91319a34d48a09b5c9c871d9768b1 */ ipControlId?: string; /** * @remarks * The name of the ACL. The name must be 4 to 50 characters in length, and can contain letters, digits, and underscores (_). The name cannot start with an underscore (_). * * @example * testControl11 */ ipControlName?: string; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }