UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

10 lines 707 B
import { UnitAndValueLong } from '../../complexType/UnitAndValueLong'; import { BurstStatusEnum } from './BurstStatusEnum'; /** Server bandwidth burst details */ export interface ServerBurst { /** Bandwidth busrt capacity */ capacity?: UnitAndValueLong; /** indicates whether burstable bandwidth is currently active, allowing it to temporarily exceed the normally included bandwidth.OvhToInternet amount, within the limits indicated by the burst.capacity item. It can also be inactiveLocked when temporarily disabled due to overuse, capping it to the included non-burstable bandwidth capacity of bandwidth.OvhToInternet */ status: BurstStatusEnum; } //# sourceMappingURL=ServerBurst.d.ts.map