> + VirtualMachine vm = api.getVirtualMachineApi(group).get(id);
> + String location = vm.location();
> + final VMImage ref = new VMImage(CUSTOM_IMAGE_PREFIX + group,
> CUSTOM_IMAGE_PREFIX + storageAccountName, disks[0], disks[1], location);
> +
> + return userExecutor.submit(new Callable<Image>() {
> + @Override
> + public Image call() throws Exception {
> + return imageReferenceToImage.apply(ref);
> + }
> + });
> +
> + }
> +
> + @Override
> + public boolean deleteImage(String id) {
> + return false;
So, when the user creates an image from an existing VM, that VM can still be
powered on/off, etc? Or it becomes completely unusable?
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/291/files/8a39037237f5cccc7d100bc58a9a82bdb89924b1#r68013824