* @param args
* the path arguments.
* @return the list of vCenter references.
*/
protected List<NamedRelatedResourceRep> getList(String path, Object... args) {
VcenterList response = client.get(VcenterList.class, path, args);
return ResourceUtils.defaultList(response.getVcenters());
}