Interface MorpheusBackupService

All Superinterfaces:
MorpheusDataService<Backup,BackupIdentityProjection>, MorpheusIdentityService<BackupIdentityProjection>

Context methods for interacting with Backups in Morpheus
Since:
0.13.4
  • Method Details

    • getType

      Returns the MorpheusBackupTypeContext used for performing updates/queries on BackupType related assets within Morpheus.
      Returns:
      An instance of the BackupTypeContext to be used for calls by various backup providers
    • getBackupJob

      MorpheusBackupJobService getBackupJob()
      Returns the BackupJobContext used for performing updates or queries on BackupJob related assets within Morpheus. Typically this would be called by a BackupProvider
      Returns:
      An instance of the Backup Job Context to be used for calls by various backup providers
    • getBackupResult

      MorpheusBackupResultService getBackupResult()
      Returns the BackupResultContext used for performing updates or queries on BackupResult related assets within Morpheus. Typically this would be called by a BackupProvider.
      Returns:
      An instance of the Backup Result Context to be used for calls by various backup providers
    • getBackupRestore

      MorpheusBackupRestoreService getBackupRestore()
      Returns the BackupRestoreContext used for performing updates or queries on BackupRestore related assets within Morpheus. Typically this would be called by a BackupProvider.
      Returns:
      An instance of the Backup Restore Context to be used for calls by various backup providers
    • getReplication

      MorpheusReplicationService getReplication()
      Returns the MorpheusReplicationContext used for performing updates/queries on Replication related assets within Morpheus.
      Returns:
      An instance of the MorpheusReplicationContext to be used for calls by various backup providers
    • listIdentityProjections

      @Deprecated(since="0.15.3", forRemoval=true) io.reactivex.rxjava3.core.Observable<BackupIdentityProjection> listIdentityProjections(BackupProvider backupProvider)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Lists all backup projection objects for a specified backup provider id. The projection is a subset of the properties on a full Backup object for sync matching.
      Parameters:
      backupProvider - the AbstractBackupProvider identifier associated to the backups to be listed.
      Returns:
      an RxJava Observable stream of result projection objects.
    • listIdentityProjections

      @Deprecated(since="0.15.3", forRemoval=true) io.reactivex.rxjava3.core.Observable<BackupIdentityProjection> listIdentityProjections(Cloud cloud)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Lists all backup projection objects for a specified cloud. The projection is a subset of the properties on a full Backup object for sync matching.
      Parameters:
      cloud - the Cloud identifier associated to the domains to be listed.
      Returns:
      an RxJava Observable stream of result projection objects.
    • listById

      @Deprecated(since="0.15.3", forRemoval=true) io.reactivex.rxjava3.core.Observable<Backup> listById(Collection<Long> ids)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Lists all Backup objects by a list of Identifiers. This is commonly used in sync / caching logic.
      Parameters:
      ids - list of Backup ids to fetch.
      Returns:
      an RxJava Observable stream of Backup objects for subscription.
    • listByBackupJobIdAndActive

      @Deprecated(since="0.15.3", forRemoval=true) io.reactivex.rxjava3.core.Observable<Backup> listByBackupJobIdAndActive(Long backupJobId, Boolean active)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Lists all Backup objects by a specified BackupJob and active status.
      Parameters:
      backupJobId - ID of a BackupJob
      active - filter the active or inactive state of the backup results
      Returns:
      an RxJava Observable stream of Backup objects for subscription.
    • listByAccountIdAndBackupJobIdAndActive

      @Deprecated(since="0.15.3", forRemoval=true) io.reactivex.rxjava3.core.Observable<Backup> listByAccountIdAndBackupJobIdAndActive(Long accountId, Long backupJobId, Boolean active)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Lists all Backup objects by a specified Account and BackupJob and active status.
      Parameters:
      accountId - ID of an Account
      backupJobId - ID of a BackupJob
      active - filter the active or inactive state of the backup results
      Returns:
      an RxJava Observable stream of Backup objects for subscription.
    • executeBackup

      io.reactivex.rxjava3.core.Single<Boolean> executeBackup(Long backupId)
      Initiates the execution of a backup Backup. Be mindful this is an RxJava implementation and must be subscribed to for any action to actually take place.
      Parameters:
      backupId - the ID of the Backup to begin execution.
      Returns:
      the Single Observable containing the success or failure of the backup execution call