import * as $dara from '@darabonba/typescript'; export declare class ModifyInstanceNetworkOptionsRequest extends $dara.Model { /** * @remarks * The bandwidth weight. * * The supported values vary with instance types. You can query the bandwidth weights supported by the current instance type by using the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html). * * Valid values: * * * Vpc-L1: Vpc-L1. * * Vpc-L2: Vpc-L2. * * Ebs-L1: Ebs-L1. * * Ebs-L2: Ebs-L2. * * Default: the Default. * * @example * Vpc-L1 */ bandwidthWeighting?: string; /** * @remarks * The ID of the instance whose network bandwidth weight is to be modified. * * @example * i-bp67acfmxazb4p**** */ instanceId?: string; ownerId?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }