return new ImageUnmarshaller().unmarshall(response, new Image());
}
@Override
public List<Instance> listInstances() throws DeltaCloudClientException {
InputStream inputStream = request(new ListInstancesRequest(baseUrl));
List<Instance> instances = new ArrayList<Instance>();
new InstancesUnmarshaller().unmarshall(inputStream, instances);
return instances;
}