trevorflanagan commented on this pull request.
> + @ResponseParser(ParseNatRules.class)
+ @Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
+ PagedIterable<NatRule> listNatRules(@QueryParam("networkDomainId") String
networkDomainId);
+
+ @Named("server:getNatRule")
+ @GET
+ @Path("/natRule/{id}")
+ @Fallback(NullOnNotFoundOr404.class)
+ NatRule getNatRule(@PathParam("id") String natRuleId);
+
+ @Named("network:deleteNatRule")
+ @POST
+ @Path("/deleteNatRule")
+ @Produces(MediaType.APPLICATION_JSON)
+ @MapBinder(BindToJsonPayload.class)
+ Response deleteNatRule(@PayloadParam("id") String natRuleId);
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_r123012230