> +/** > + * Options for attaching disks to instances. > + * > + * @author Andrew Bayer > + * @see <a > href="https://developers.google.com/compute/docs/reference/latest/instances/attachDisk"/> > + */ > +public class AttachDiskOptions { > + > + public enum DiskType { > + SCRATCH, > + PERSISTENT > + } > + > + public enum DiskMode { > + READ_WRITE, > + READ_ONLY
Do we prefer enums with or without a trailing `;`? Do I recall a change earlier where we _added_ a trailing `;`? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/16/files#r5362849
