@GET
public DomainList listDomains() throws CloudException {
Project project = getProject();
DomainList response = new DomainList();
response.domain_entries = Lists.newArrayList();
for (DnsService.Zone domain : dnsService.listZones(project)) {
response.domain_entries.add(toModel(domain));
}