* @param fabric
* the name of the fabric.
* @return the list of SAN zones.
*/
public List<SanZone> getSanZones(URI id, String fabric) {
SanZones response = client.get(SanZones.class, getIdUrl() + "/san-fabrics/{fabric}", id, fabric);
return defaultList(response.getZones());
}