> +      checkNotNull(from, "Null image");
> +
> +      String desc = from.name();
> +      OsFamily osFamily = parseOsFamily(desc);
> +
> +      OperatingSystem os = OperatingSystem.builder()
> +           .description(osFamily.value())
> +           .family(osFamily)
> +           .version(parseVersion(desc))
> +           .is64Bit(is64Bit(desc))
> +           .build();
> +
> +      return new ImageBuilder()
> +           .ids(from.id())
> +           .name(desc)
> +           .location(mapLocation(from.location()))

Images are available in all regions by default? (Just asking as the mapLocation 
function always sets the PROVIDER scope.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/145/files#r25732915

Reply via email to