> + for (int e = 0; e < dependsOn.size(); e++) {
> + if
> (dependsOn.get(e).resourceType().equals("Microsoft.Network/publicIPAddresses"))
> {
> + String resourceName = dependsOn.get(e).resourceName();
> + PublicIPAddress ip =
> api.getPublicIPAddressApi(resourceGroup).get(resourceName);
> + list.add(ip);
> + }
> + }
> + }
> + }
> + }
> + return list;
> + }
> +
> + @Override
> + public Iterable<VMDeployment> listNodes() {
> + System.out.println("listNodes");
Remove this
---
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#r63965784