import * as $dara from '@darabonba/typescript'; export declare class GetInstanceConsoleOutputRequest extends $dara.Model { /** * @remarks * The instance ID. * * This parameter is required. * * @example * i-bp1c1xhsrac2coiw**** */ instanceId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the instance. 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; /** * @remarks * Specifies whether to remove formatting symbols from the returned command output. Valid values: * * * true * * false * * Default value: false. * * @example * false */ removeSymbols?: boolean; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }