import * as $dara from '@darabonba/typescript'; export declare class ModifyRouterInterfaceAttributeRequest extends $dara.Model { /** * @remarks * The new description of the router interface. The description must be 2 to 256 characters long and cannot start with `http://` or `https://`. */ description?: string; /** * @remarks * The source IP address used for the health check. */ healthCheckSourceIp?: string; /** * @remarks * The destination IP address used for the health check. */ healthCheckTargetIp?: string; /** * @remarks * The new name of the router interface. The name must be 2 to 128 characters long and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter. */ name?: string; /** * @remarks * The ID of the opposite router interface. */ oppositeInterfaceId?: string; /** * @remarks * The ID of the Alibaba Cloud account that owns the opposite router interface. */ oppositeInterfaceOwnerId?: number; /** * @remarks * The ID of the opposite router. */ oppositeRouterId?: string; /** * @remarks * The type of the opposite router. Valid values: `VRouter` and `VBR`. The default value is `VRouter`. */ oppositeRouterType?: string; ownerId?: number; /** * @remarks * The ID of the region where the router interface is deployed. * * This parameter is required. */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The ID of the router interface that you want to modify. * * This parameter is required. */ routerInterfaceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }