import * as $dara from '@darabonba/typescript'; export declare class UnassignIpv6AddressesRequest extends $dara.Model { /** * @remarks * One or more IPv6 addresses to unassign. Valid values of N: 1 to 10. * * @example * 2001:db8:1234:1a00::*** */ ipv6Address?: string[]; /** * @remarks * One or more IPv6 prefixes to unassign. Valid values of N: 1 to 10. */ ipv6Prefix?: string[]; /** * @remarks * The ID of the network interface controller (NIC). * * This parameter is required. * * @example * eni-bp14v2sdd3v8ht**** */ networkInterfaceId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the network interface controller (NIC). You can invoke [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }