// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateVSwitchRequest extends $dara.Model { /** * @remarks * This parameter is required. */ cidrBlock?: string; clientToken?: string; description?: string; ownerAccount?: string; ownerId?: number; regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; vSwitchName?: string; /** * @remarks * This parameter is required. */ vpcId?: string; /** * @remarks * This parameter is required. */ zoneId?: string; static names(): { [key: string]: string } { return { cidrBlock: 'CidrBlock', clientToken: 'ClientToken', description: 'Description', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', vSwitchName: 'VSwitchName', vpcId: 'VpcId', zoneId: 'ZoneId', }; } static types(): { [key: string]: any } { return { cidrBlock: 'string', clientToken: 'string', description: 'string', ownerAccount: 'string', ownerId: 'number', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', vSwitchName: 'string', vpcId: 'string', zoneId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }