> +import com.google.common.base.Objects;
> +
> +/**
> + * A representation of a block device that should be attached to the Nova
> instance to be launched
> + *
> + */
> +public class BlockDeviceMapping {
> +
> + @Named("delete_on_termination")
> + String deleteOnTermination = "0";
> + @Named("device_name")
> + String deviceName = null;
> + @Named("volume_id")
> + String volumeId = null;
> + @Named("volume_size")
> + String volumeSize = "";
3 space indent for lines 35-42
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/326/files#r17753942