trevorflanagan commented on this pull request.


> +
+   @Named("network:publicIpBlock")
+   @GET
+   @Path("/publicIpBlock")
+   @Transform(ParsePublicIpBlocks.ToPagedIterable.class)
+   @ResponseParser(ParsePublicIpBlocks.class)
+   @Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
+   PagedIterable<PublicIpBlock> 
listPublicIPv4AddressBlocks(@QueryParam("networkDomainId") String 
networkDomainId);
+
+   @Named("network:removePublicIpBlock")
+   @POST
+   @Path("/removePublicIpBlock")
+   @Produces(MediaType.APPLICATION_JSON)
+   @MapBinder(BindToJsonPayload.class)
+   @Fallback(NullOnNotFoundOr404.class)
+   Response removePublicIpBlock(@PayloadParam("id") String publicIpBlockId);

Done

-- 
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/389#discussion_r123012168

Reply via email to