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