Package com.vmware.aurora.vc.VmConfigUtil

Examples of com.vmware.aurora.vc.VmConfigUtil.ScsiControllerType


         detachVirtualDisk(deviceId, destroyDisk);
      }
   }

   private VirtualController attachVirtualController(DeviceId deviceId) throws Exception {
      ScsiControllerType scsiType = VmConfigUtil.ScsiControllerType.findController(deviceId.getTypeClass());
      if (scsiType != null) {
         logger.info("Adding " + deviceId.controllerType + " SCSI controller to VM " + this.getName()
               + " at bus " + deviceId.busNum);
      } else {
         logger.error("Unsupported SCSI type creation: " + deviceId.controllerType);
View Full Code Here

TOP

Related Classes of com.vmware.aurora.vc.VmConfigUtil.ScsiControllerType

Copyright © 2018 www.massapicom. 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.