> @@ -463,6 +494,21 @@ public CreateServerOptions networks(String... networks) { > return networks(ImmutableSet.copyOf(networks)); > } > > + /** > + * Block volumes that should be attached to the instance at boot time > + */ > + public List<BlockDevice> getBlockDeviceMapping() { > + return blockDeviceMapping; > + } > + > + /** > + * @see #getBlockDeviceMapping > + */ > + public CreateServerOptions blockDeviceMapping(List<BlockDevice> > blockDeviceMapping) { > + this.blockDeviceMapping = blockDeviceMapping;
`ImmutableList.copyOf(blockDeviceMapping)` --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/326/files#r10999736