// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribePhysicalConnectionsRequestFilter extends $dara.Model { key?: string; value?: string[]; static names(): { [key: string]: string } { return { key: 'Key', value: 'Value', }; } static types(): { [key: string]: any } { return { key: 'string', value: { 'type': 'array', 'itemType': 'string' }, }; } validate() { if(Array.isArray(this.value)) { $dara.Model.validateArray(this.value); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class DescribePhysicalConnectionsRequest extends $dara.Model { clientToken?: string; filter?: DescribePhysicalConnectionsRequestFilter[]; ownerAccount?: string; ownerId?: number; pageNumber?: number; pageSize?: number; /** * @remarks * This parameter is required. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; userCidr?: string; static names(): { [key: string]: string } { return { clientToken: 'ClientToken', filter: 'Filter', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', pageNumber: 'PageNumber', pageSize: 'PageSize', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', userCidr: 'UserCidr', }; } static types(): { [key: string]: any } { return { clientToken: 'string', filter: { 'type': 'array', 'itemType': DescribePhysicalConnectionsRequestFilter }, ownerAccount: 'string', ownerId: 'number', pageNumber: 'number', pageSize: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', userCidr: 'string', }; } validate() { if(Array.isArray(this.filter)) { $dara.Model.validateArray(this.filter); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }