* @param id
* the ID of the storage system.
* @return the list of storage system connectivity.
*/
public List<StorageSystemConnectivityRestRep> getConnectivity(URI id) {
StorageSystemConnectivityList response = client.get(StorageSystemConnectivityList.class, getIdUrl()
+ "/connectivity", id);
return defaultList(response.getConnections());
}