// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class GatewayNetworkConfiguration extends $dara.Model { /** * @remarks * Network mode */ networkMode?: string; /** * @remarks * Virtual private cloud (VPC) ID */ vpcId?: string; vswitchIds?: string[]; static names(): { [key: string]: string } { return { networkMode: 'networkMode', vpcId: 'vpcId', vswitchIds: 'vswitchIds', }; } static types(): { [key: string]: any } { return { networkMode: 'string', vpcId: 'string', vswitchIds: { 'type': 'array', 'itemType': 'string' }, }; } validate() { if(Array.isArray(this.vswitchIds)) { $dara.Model.validateArray(this.vswitchIds); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }