> @@ -139,6 +139,14 @@ public RunInstancesOptions withBlockDeviceMappings(Set<?
> extends BlockDeviceMapp
> if (mapping.getEbsDeleteOnTermination() != null)
>
> formParameters.put(String.format("BlockDeviceMapping.%d.Ebs.DeleteOnTermination",
> i),
> String.valueOf(mapping.getEbsDeleteOnTermination()));
> + if (mapping.getEbsVolumeType() != null)
> +
> formParameters.put(String.format("BlockDeviceMapping.%d.Ebs.VolumeType", i),
> mapping.getEbsVolumeType());
> + if (mapping.getEbsIops() != null)
> +
> formParameters.put(String.format("BlockDeviceMapping.%d.Ebs.Iops", i),
> + String.valueOf(mapping.getEbsIops()));
> + if (mapping.getEbsEncrypted() != null && mapping.getEbsEncrypted()
> != false)
yeah because of the truthy dance
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/408/files#r13947704