UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 539 B
import { UnitAndValueLong } from '../../../complexType/UnitAndValueLong'; /** A structure describing quota associated to the current container */ export interface BackupQuota { /** Volume r/w bandwidth limit: read/write volume offered per month on the container. */ maxBandwidth?: UnitAndValueLong; /** Container max size. */ maxStorage?: UnitAndValueLong; /** Volume usage. */ storageUsed?: UnitAndValueLong; /** Volume usage in percent */ usagePercent?: number; } //# sourceMappingURL=BackupQuota.d.ts.map