> + String deviceName = null;
> +
> + /**
> + * @param volumeId ID of the volume within the block store that you
> wish to attach
> + */
> + 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";
@demobox @jdaggett Since I'm moving BlockDeviceMapping to its on class, is it
now worth it to create a custom mapping for the strings here and instead use
true/false internally within JClouds?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/326/files#r16900706