import * as $dara from '@darabonba/typescript'; export declare class EnableNetworkInterfaceQoSRequestQoS extends $dara.Model { /** * @remarks * The maximum inbound internal bandwidth. * * Unit: kbit/s, step size: 1000 (1Mbps), value range: [50000, +♾️) * * @example * 50000 */ bandwidthRx?: number; /** * @remarks * The maximum outbound internal bandwidth. * * Unit: kbit/s, step size: 1000 (1Mbps), value range: [50000, +♾️) * * @example * 50000 */ bandwidthTx?: number; /** * @remarks * Maximum Number of Sessions * * Step size: 10000, value range: [10000, +♾️) * * @example * 50000 */ concurrentConnections?: number; /** * @remarks * The inbound packet forwarding rate over the internal network. * * Unit: pps, step size: 10000, value range: [10000, +♾️) * * @example * 50000 */ ppsRx?: number; /** * @remarks * The outbound packet forwarding rate over the internal network. * * Unit: pps, step size: 10000, value range: [10000, +♾️) * * @example * 50000 */ ppsTx?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class EnableNetworkInterfaceQoSRequest extends $dara.Model { /** * @remarks * This parameter is required. * * @example * eni-2zeh9atclduxvf1z**** */ networkInterfaceId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * QoS Speed Limit Settings */ qoS?: EnableNetworkInterfaceQoSRequestQoS; /** * @remarks * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }