UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

22 lines 580 B
import { StateEnum } from './disk/StateEnum'; import { TypeEnum } from './disk/TypeEnum'; /** Information about a disk of a VPS Virtual Machine */ export interface Disk { /** */ bandwidthLimit: number; /** */ id: number; /** The low disk free space threshold in MiB */ lowFreeSpaceThreshold?: number; /** The monitoring state of this disk */ monitoring?: boolean; /** Service name */ serviceName?: string; /** */ size: number; /** */ state: StateEnum; /** */ type: TypeEnum; } //# sourceMappingURL=Disk.d.ts.map