trevorflanagan commented on this pull request.
> + @MapBinder(BindToJsonPayload.class)
+ void applyTags(@PayloadParam("assetId") String assetId,
@PayloadParam("assetType") String assetType,
+ @PayloadParam("tagById") List<TagInfo> tagById);
+
+ @Named("tag:removeTags")
+ @POST
+ @Path("/removeTags")
+ @Fallback(Fallbacks.NullOnNotFoundOr404.class)
+ @MapBinder(BindToJsonPayload.class)
+ void removeTags(@PayloadParam("assetId") String assetId,
@PayloadParam("assetType") String assetType,
+ @PayloadParam("tagKeyId") List<String> tagKeyName);
+
+ @Named("tag:tagKey")
+ @GET
+ @Path("/tagKey")
+ @Fallback(Fallbacks.NullOnNotFoundOr404.class)
You are right this is consistent with the other feature api's we have all
pushed. I made some additional changes to add more tests for pagination for the
list interface methods.
--
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/425#discussion_r155542991