* @return List of supported storage devices. This list has only the default
* information for the storage devices, such as the management and
* iscsi ports, or the default credentials to access the device.
*/
public Iterable<StorageDeviceMetadata> listSupportedStorageDevices() {
StorageDevicesMetadataDto devices = context.getApi().getInfrastructureApi().listSupportedStorageDevices(target);
return wrap(context, StorageDeviceMetadata.class, devices.getCollection());
}