// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeTerminalSessionsRequest extends $dara.Model { /** * @remarks * The instance ID. * * @example * i-bp1i7gg30r52z2em**** */ instanceId?: string; /** * @remarks * The maximum number of entries per page. * * Valid values: 1 to 100. * * 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 do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of NextToken. * * @example * AAAAAdDWBF2**** */ nextToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The session ID. * * @example * s-hz023od0x9**** */ sessionId?: string; static names(): { [key: string]: string } { return { instanceId: 'InstanceId', maxResults: 'MaxResults', nextToken: 'NextToken', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', sessionId: 'SessionId', }; } static types(): { [key: string]: any } { return { instanceId: 'string', maxResults: 'number', nextToken: 'string', ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', sessionId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }