trevorflanagan commented on this pull request.
> + @Named("image:list")
+ @GET
+ @Path("/customerImage")
+ @Transform(ParseCustomerImages.ToPagedIterable.class)
+ @ResponseParser(ParseCustomerImages.class)
+ @RequestFilters(DatacenterIdFilter.class)
+ @Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
+ PagedIterable<CustomerImage> listCustomerImages();
+
+ @Named("image:get")
+ @GET
+ @Path("/osImage/{id}")
+ @Fallback(Fallbacks.NullOnNotFoundOr404.class)
+ OsImage getOsImage(@PathParam("id") String id);
+
+ @Named("image:get")
Agreed, I will update to be clearer.
--
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/380#discussion_r110361855