* > http://community.abiquo.com/display/ABI20/StoragePoolResource#
* StoragePoolResource- Retrievestoragepools</a>
* @return Synchronized list of storage pools in this device.
*/
public Iterable<StoragePool> listRemoteStoragePools() {
StoragePoolsDto storagePools = context.getApi().getInfrastructureApi()
.listStoragePools(target, StoragePoolOptions.builder().sync(true).build());
Iterable<StoragePool> storagePoolList = wrap(context, StoragePool.class, storagePools.getCollection());
for (StoragePool storagePool : storagePoolList) {
storagePool.storageDevice = this;
}