> + @ResponseParser(StatusCodeParser.class)
> + String generalize(@PathParam("name") String name);
> +
> + /**
> + * Capture the virtual machine image
> + */
> + @Named("capture")
> + @POST
> +
> @Payload("%7B\"vhdPrefix\":\"{vhdPrefix}\",\"destinationContainerName\":\"{destinationContainerName}\",\"overwriteVhds\":\"true\"%7D")
> + @MapBinder(BindToJsonPayload.class)
> + @Path("/{name}/capture")
> + @ResponseParser(URIParser.class)
> + URI capture(@PathParam("name") String name,
> + @PayloadParam("vhdPrefix") String vhdPrefix,
> + @PayloadParam("destinationContainerName") String
> destinationContainerName);
> +
Add the Mock and Live tests for the new methods.
---
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/291/files/8a39037237f5cccc7d100bc58a9a82bdb89924b1#r67890499