import * as $dara from '@darabonba/typescript'; export declare class DescribeHaVipsRequestFilter extends $dara.Model { /** * @remarks * The filter key. Valid values: * * `HaVipId`: The ID of the high-availability virtual IP (HAVIP). * * `HaVipName`: The name of the HAVIP. * * `VpcId`: The ID of the VPC to which the HAVIP belongs. * * `VSwitchId`: The ID of the vSwitch to which the HAVIP belongs. * * `IpAddress`: The IP address of the HAVIP. * * `AssociatedInstanceType`: The type of instance associated with the HAVIP. The value must be `EcsInstance`. * * `AssociatedInstanceId`: The ID of the instance associated with the HAVIP. */ key?: string; /** * @remarks * A list of 1 to 20 values. */ value?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeHaVipsRequest extends $dara.Model { /** * @remarks * The query filters. You can specify 1 to 20 filters. * * This parameter is required. */ filter?: DescribeHaVipsRequestFilter[]; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number. Default value: 1. */ pageNumber?: number; /** * @remarks * The number of entries per page. Maximum value: 50. Default value: 10. */ pageSize?: number; /** * @remarks * The ID of the region. * * This parameter is required. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }