import * as $dara from '@darabonba/typescript'; export declare class DescribeInstanceStatusRequest extends $dara.Model { /** * @remarks * The ID of the cluster to which the ECS instances belong. * * > This parameter is deprecated. We recommend that you do not use this parameter. * * @example * cls-bp67acfmxazb4p**** */ clusterId?: string; /** * @remarks * The IDs of ECS instances. You can specify 1 to 100 instance IDs. * * Example: ["i-bp1j4i2jdf3owlhe\\*\\*\\*\\*", "i-bp1j4i2jdf3o1234\\*\\*\\*\\*"]. * * @example * i-bp1j4i2jdf3owlhe**** */ instanceId?: string[]; ownerAccount?: string; ownerId?: number; /** * @remarks * The page number. * * Pages start from page 1. * * Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. Valid values: 1 to 50. * * Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The region ID of the instances. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The zone ID of the instances. You can call the [DescribeZones](https://help.aliyun.com/document_detail/25610.html) operation to query the most recent zone list. * * @example * cn-hangzhou-d */ zoneId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }