trevorflanagan commented on this pull request.
> + @POST
+ @Path("/deployVlan")
+ @Produces(MediaType.APPLICATION_JSON)
+ @MapBinder(BindToJsonPayload.class)
+ Response deployVlan(@PayloadParam("networkDomainId") String
networkDomainId, @PayloadParam("name") String name,
+ @PayloadParam("description") String description,
+ @PayloadParam("privateIpv4BaseAddress") String privateIpv4BaseAddress,
+ @PayloadParam("privateIpv4PrefixSize") Integer privateIpv4PrefixSize);
+
+ @Named("network:getVlan")
+ @GET
+ @Path("/vlan/{id}")
+ @Fallback(NullOnNotFoundOr404.class)
+ Vlan getVlan(@PathParam("id") String vlanId);
+
+ @Named("network:vlan")
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_r123011782