* > http://community.abiquo.com/display/ABI20/StorageDeviceResource#
* StorageDeviceResource- Retrievethelistofstoragedevices</a>
* @return List of storage devices in this datacenter.
*/
public Iterable<StorageDevice> listStorageDevices() {
StorageDevicesDto devices = context.getApi().getInfrastructureApi().listStorageDevices(target);
return wrap(context, StorageDevice.class, devices.getCollection());
}