// 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 for a paged query. * * Maximum value: 100. * * Default value: 10. * * @example * 10 */ maxResults?: number; /** * @remarks * The pagination token. Set this parameter to the NextToken value returned in the previous API call. * * @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); } }