> + @Named("container:inspect")
> + @GET
> + @Path("/containers/{id}/json")
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + Container inspectContainer(@PathParam("id") String containerId);
> +
> + /**
> + * Delete the container.
> + *
> + * @return the container.
> + */
> + @Named("container:delete")
> + @DELETE
> + @Path("/containers/{id}")
> + void removeContainer(@PathParam("id") String containerId,
> @QueryParam("v") boolean v);
What is this `v` parameter? Can we use a more descriptive name and document it
in the javadoc?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r10838747