import * as $dara from '@darabonba/typescript'; export declare class ModifyVSwitchAttributeRequest extends $dara.Model { /** * @remarks * The new description for the vSwitch.\\ * The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.\\ */ description?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the region where the vSwitch is located. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The ID of the vSwitch to modify. * * This parameter is required. */ vSwitchId?: string; /** * @remarks * The new name for the vSwitch.\\ * The name must be 2 to 128 characters in length. It must start with a letter and can contain letters, digits, underscores (_), and hyphens (-).\\ */ vSwitchName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }