@GET
@Path("detail")
public Hypervisors listHypervisorsDetail() throws CloudException {
checkDomainAdmin();
Hypervisors response = new Hypervisors();
response.hypervisors = Lists.newArrayList();
for (SchedulerHost host : scheduler.getAllHosts()) {
response.hypervisors.add(toModel(host));
}