/** @since SDK5.1 */ public Task dVPortgroupRollback_Task(EntityBackupConfig entityBackup) throws RollbackFailure, DvsFault, RuntimeFault, RemoteException { ManagedObjectReference mor = getVimService().dVPortgroupRollback_Task(getMOR(), entityBackup); return new Task(getServerConnection(), mor); }
/** @since SDK5.1 */ public Task dVSManagerImportEntity_Task(EntityBackupConfig[] entityBackup, String importType) throws DvsFault, NotFound, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().dVSManagerImportEntity_Task(getMOR(), entityBackup, importType); return new Task(getServerConnection(), taskMor); }
/** @since SDK5.1 */ public Task dVSRollback_Task(EntityBackupConfig spec) throws RollbackFailure, DvsFault, RuntimeFault, RemoteException { ManagedObjectReference taskMor = getVimService().dVSRollback_Task(getMOR(), spec); return new Task(getServerConnection(), taskMor); }
/** * @since SDK5.1 */ Task dVSManagerImportEntityTask(List<EntityBackupConfig> entityBackup, String importType) throws DvsFault, NotFound, RuntimeFault, RemoteException;