@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 493 B
TypeScript
import { BackupContainer } from './backup/BackupContainer';
import { BackupStatus } from './backup/BackupStatus';
/** Backup Cloud assigned to this server */
export interface BackupCloud {
/** Agreement ids waiting for validation */
agreements?: number[];
/** Archive space info. */
archive?: BackupContainer;
/** Status of the container. */
status: BackupStatus;
/** Storage space info. */
storage?: BackupContainer;
}
//# sourceMappingURL=BackupCloud.d.ts.map