import * as $dara from '@darabonba/typescript'; export declare class DescribeCloudAssistantStatusRequest extends $dara.Model { /** * @remarks * The instance ID. * * @example * i-bp1iudwa5b1tqa**** */ instanceId?: string[]; /** * @remarks * The maximum number of entries per page. If you specify **InstanceId**, this parameter does not take effect. * * Valid values: 1 to 50. * * Default value: 10. * * @example * 10 */ maxResults?: number; /** * @remarks * The pagination token that is used in the next request to retrieve a new page of results. You must specify the token that is obtained from the previous query as the value of NextToken. * * @example * AAAAAdDWBF2 */ nextToken?: string; /** * @remarks * The operating system type of the instance. Valid values: * * * Windows * * Linux * * FreeBSD * * @example * Windows */ OSType?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * > This parameter will be removed in the future. We recommend that you use NextToken and MaxResults for a paged query. * * @example * 1 */ pageNumber?: number; /** * @remarks * > This parameter will be removed in the future. We recommend that you use NextToken and MaxResults for a paged query. * * @example * 10 */ pageSize?: number; /** * @remarks * The region ID of the instance. You can call [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; }); }