import * as $dara from '@darabonba/typescript'; export declare class ModifyVirtualBorderRouterAttributeRequest extends $dara.Model { /** * @remarks * The circuit code of the Express Connect circuit. The circuit code is provided by your connectivity provider. */ circuitCode?: string; /** * @remarks * A client-generated token that ensures the request is idempotent. The token must be unique for each request, contain only ASCII characters, and not exceed 64 characters in length. */ clientToken?: string; /** * @remarks * The description of the VBR. * * The description must be 2 to 256 characters long. It must start with a letter and cannot start with `http://` or `https://`. */ description?: string; /** * @remarks * The local gateway IP address for the BGP session. */ localGatewayIp?: string; /** * @remarks * The name of the VBR. * * The name must be 2 to 128 characters long. It must start with a letter and can contain letters, digits, underscores (_), and hyphens (-). */ name?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The peer gateway IP address for the BGP session. */ peerGatewayIp?: string; /** * @remarks * The subnet mask for the `LocalGatewayIp` and `PeerGatewayIp`. */ peeringSubnetMask?: string; /** * @remarks * The ID of the region where the virtual border router (VBR) is deployed. * * To get a list of the latest regions, call the `DescribeRegions` operation. * * This parameter is required. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The CIDR block of the on-premises network that is connected to the VBR. */ userCidr?: string; /** * @remarks * The ID of the VBR to modify. * * This parameter is required. */ vbrId?: string; /** * @remarks * The VLAN ID of the VBR. The VLAN ID must be unique on the physical connection. * * Valid values: 0 to 4095. * * A value of 0 indicates that the VBR does not use a VLAN. */ vlanId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }