andreaturli commented on this pull request.


> +              transform(listLocations(), new Function<Region, String>() {
+                 @Override
+                 public String apply(Region location) {
+                    return location.id();
+                 }
+              }));
+
+      for (String regionId : availableLocationNames) {
+         instanceTypeIds.addAll(getInstanceTypeId(regionId));
+      }
+
+      List<InstanceType> instanceTypes = 
FluentIterable.from(api.instanceApi().listTypes())
+              .filter(new Predicate<InstanceType>() {
+                 @Override
+                 public boolean apply(@Nullable InstanceType input) {
+                    return contains(instanceTypeIds.build(), 
input.instanceTypeId());

thx

-- 
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/443#discussion_r207133342

Reply via email to