Examples of detachVolumeFromServer()


Examples of org.jclouds.openstack.nova.v2_0.extensions.VolumeAttachmentApi.detachVolumeFromServer()

      return;
    }
   
    RestContext<NovaApi, NovaAsyncApi> nova = context.unwrap();
        VolumeAttachmentApi api = nova.getApi().getVolumeAttachmentExtensionForZone(region).get();
        if (api.detachVolumeFromServer(volumeId, instanceId)) {
          log.info("Detachment of Volume [id]: "+volumeId+" from instance [id]: "+instanceId
            +" was successful. [region] : " + region
            + " of Iaas : " + iaasInfo);
        }
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.