trevorflanagan commented on this pull request.
> + @Named("network:getNetworkDomain")
+ @GET
+ @Path("/networkDomain/{id}")
+ @Fallback(NullOnNotFoundOr404.class)
+ NetworkDomain getNetworkDomain(@PathParam("id") String networkDomainId);
+
+ @Named("network:listNetworkDomainsWithName")
+ @GET
+ @Path("/networkDomain")
+ @Transform(ParseNetworkDomains.ToPagedIterable.class)
+ @ResponseParser(ParseNetworkDomains.class)
+ @Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
+ PagedIterable<NetworkDomain> listNetworkDomainsWithDatacenterIdAndName(
+ @QueryParam("datacenterId") String datacenterId, @QueryParam("name")
String name);
+
+ @Named("network:list")
I have updated to use the networkDomain prefix where appropriate.
--
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_r123011333