import { UnitAndValueLong } from '../complexType/UnitAndValueLong';
import { BackupRepositoryStateEnum } from './BackupRepositoryStateEnum';
import { Location } from './Location';
/** Veeam backup repository */
export interface BackupRepository {
    /** The inventory name of your backup repository */
    inventoryName: string;
    /** The quota allowed on this Backup repository */
    quota: UnitAndValueLong;
    /** The quota used on this Backup repository */
    quotaUsed?: UnitAndValueLong;
    /** The replication zone of your repository */
    replicationZone?: Location;
    /** The state of your backup repository */
    state: BackupRepositoryStateEnum;
    /** The usage in percent of this backup repository */
    usage?: number;
}
//# sourceMappingURL=BackupRepository.d.ts.map