> @@ -463,6 +520,23 @@ public CreateServerOptions networks(String... networks) {
> return networks(ImmutableSet.copyOf(networks));
> }
>
> + /**
> + * @see #getBlockDeviceMapping
> + */
> + public CreateServerOptions blockDeviceMapping(List<BlockDeviceMapping>
> blockDeviceMapping) {
> + this.blockDeviceMapping = ImmutableList.copyOf(blockDeviceMapping);
> + return this;
> + }
> +
> + /**
> + * Block volumes that should be attached to the instance at boot time.
> + *
> + * @see <a
> href="http://docs.openstack.org/trunk/openstack-ops/content/attach_block_storage.html">Attach
> Block Storage<a/>
Sources should not have external links. Please remove!
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/326/files#r16251709