* @param varrayId
* the ID of the virtual array.
* @return the list of storage pool references.
*/
public List<NamedRelatedResourceRep> listByVirtualArray(URI varrayId) {
StoragePoolList response = client.get(StoragePoolList.class, String.format(ID_URL_FORMAT, VARRAY_URL) + "/storage-pools", varrayId);
return defaultList(response.getPools());
}