import * as $dara from '@darabonba/typescript'; export declare class ModifyVRouterAttributeRequest extends $dara.Model { /** * @remarks * The description of the virtual router. The description must be 2 to 256 characters long and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`. */ description?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the region where the virtual router is deployed. You can call the `DescribeRegions` operation to obtain the most recent list of regions. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The ID of the VRouter to modify. * * This parameter is required. */ VRouterId?: string; /** * @remarks * The name of the virtual router. The name must be 2 to 128 characters long and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter and cannot start with `http://` or `https://`. */ VRouterName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }