// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeClassicLinkInstancesRequest extends $dara.Model { /** * @remarks * The instance ID. You can specify a maximum of 100 instance IDs in a single request. Separate the instance IDs with commas (,). * * @example * i-bp1a5zr3u7nq9cxh**** */ instanceId?: string; ownerId?: number; /** * @remarks * The page number. Pages start from page 1. * * Default value: 1. * * @example * 1 */ pageNumber?: string; /** * @remarks * The number of entries per page. Valid values: 1 to 100. * * Default value: 10. * * @example * 10 */ pageSize?: string; /** * @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 VPC ID. The ClassicLink feature must be enabled for the specified VPC. For more information, see [Establish a ClassicLink connection](https://help.aliyun.com/document_detail/65413.html). * * @example * vpc-bp1vwnn14rqpyiczj**** */ vpcId?: string; static names(): { [key: string]: string } { return { instanceId: 'InstanceId', ownerId: 'OwnerId', pageNumber: 'PageNumber', pageSize: 'PageSize', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', vpcId: 'VpcId', }; } static types(): { [key: string]: any } { return { instanceId: 'string', ownerId: 'number', pageNumber: 'string', pageSize: 'string', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', vpcId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }