> + }
> + }
> + }
> +
> + @Override
> + public Iterable<ImageReference> listImages() {
> + final List<ImageReference> osImages = Lists.newArrayList();
> + getImagesFromPublisher("Microsoft.WindowsAzure.Compute", osImages);
> + getImagesFromPublisher("MicrosoftWindowsServer", osImages);
> + getImagesFromPublisher("Canonical", osImages);
> + return osImages;
> + }
> +
> + @Override
> + public ImageReference getImage(final String id) {
> + Iterable<ImageReference> images = listImages();
Listing images is often an expensive operation. Isn't there an api to get a
single image?
---
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#r63965315