> + @Named("networks:list")
> + @GET
> + @Fallback(EmptyListOnNotFoundOr404.class)
> + List<Network> listNetworks();
> +
> + /**
> + * @param network the network’s configuration (@see BindToJsonPayload)
> + * @return a new network
> + */
> + @Named("network:create")
> + @POST
> + @Path("/create")
> + Network createNetwork(@BinderParam(BindToJsonPayload.class) Network
> network);
> +
> + /**
> + * Return low-level information on the container id
s/container/network/
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/221/files#r44467420