> @@ -159,11 +159,18 @@ public static ImageType fromValue(String v) {
> private final String snapshotId;
> private final long volumeSize;
> private final boolean deleteOnTermination;
> + private final String volumeType;
> + private final Integer iops;
> + private final boolean encrypted;
I'm going to leave Iops as a non-primitive everywhere, because it's possible
(though I don't think likely) that it could have a 0 value. I'm going to move
encrypted to a primitive where it makes sense - i.e., in BlockDeviceMapping,
deleteOnTermination is a non-primitive already, so I'll stick witht he same
thing there.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/408/files#r13981341