> + public BlockDeviceMapping volumeId(String volumeId){
> + this.volumeId = volumeId;
> + return this;
> + }
> +
> + /**
> + * @param deleteOnTermination True if this volume should be deleted
> when the instance is terminated
> + */
> + public BlockDeviceMapping deleteOnTermination(boolean
> deleteOnTermination){
> + // Nova expects this to be a string
> + this.deleteOnTermination = deleteOnTermination ? "1" : "0";
> + return this;
> + }
> +
> + /**
> + * Set the name of the device on which to mount this block volume.
[minor] "Sets..."
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/326/files#r16819195