> + List<VMDeployment> vmDeployments = new ArrayList<VMDeployment>();
> +
> + for (Deployment d : deployments){
> + VMDeployment vmDeployment = new VMDeployment();
> + vmDeployment.deployment = d;
> + vmDeployment.vm =
> api.getVirtualMachineApi(getGroupId()).getInstanceDetails(d.name());
> + List<PublicIPAddress> list = getIPAddresses(d);
> + vmDeployment.ipAddressList = list;
> + vmDeployments.add(vmDeployment);
> + }
> + return vmDeployments;
> + }
> +
> + @Override
> + public Iterable<VMDeployment> listNodesByIds(final Iterable<String> ids) {
> + System.out.println("listNodesByIds");
Remove
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/267/files/bae5d6dfcdb26e31057db4551c5996836666a31b#r63965857