>
> @Override
> - public Image apply(OSImage input) {
> - return null;
> + public Image apply(OSImage image) {
> +
> + ImageBuilder builder = new ImageBuilder()
> + .id(image.label())
> + .name(image.name())
> + .description(image.description())
> + .status(Image.Status.AVAILABLE)
> + .uri(image.mediaLink())
> + .providerId(image.publisherName())
This should be the "real" ID of the image in the provider (usually the same as
the *id* field, but sometimes in jclouds we encode the region as part of the
id). Is this publisher name the *real* and *unique* id of the image in the
provider?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/117/files#r22191970