trevorflanagan commented on this pull request.
> + @Named("network:listVlansWithNetworkDomainIdAndName")
+ @GET
+ @Path("/vlan")
+ @Transform(ParseVlans.ToPagedIterable.class)
+ @ResponseParser(ParseVlans.class)
+ @Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
+ PagedIterable<Vlan>
listVlansWithNetworkDomainIdAndName(@QueryParam("networkDomainId") String
networkDomainId,
+ @QueryParam("name") String name);
+
+ @Named("network:deleteVlan")
+ @POST
+ @Path("/deleteVlan")
+ @Produces(MediaType.APPLICATION_JSON)
+ @MapBinder(BindToJsonPayload.class)
+ @Fallback(NullOnNotFoundOr404.class)
+ Response deleteVlan(@PayloadParam("id") String vlanId);
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_r123011966