UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 794 B
import { UnitAndValueLong } from '../complexType/UnitAndValueLong'; import { Location } from './Location'; import { BackupRepositoryStateEnum } from './BackupRepositoryStateEnum'; /** 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