* @param id
* the ID of the network system.
* @return the list of SAN fabric names.
*/
public List<String> getSanFabrics(URI id) {
Fabrics response = client.get(Fabrics.class, getIdUrl() + "/san-fabrics", id);
return defaultList(response.getFabricIds());
}