Package com.vmware.vim.binding.vim.vm.device

Examples of com.vmware.vim.binding.vim.vm.device.VirtualSCSIController


    * @param busNum
    * @return virtual device spec of the controller
    */
   public static VirtualDeviceSpec createControllerDevice(
         ScsiControllerType type, int busNum) {
      VirtualSCSIController controller = type.createController();
      controller.setBusNumber(busNum);
      controller.setHotAddRemove(true);
      controller.setKey(-1);
      controller.setSharedBus(Sharing.noSharing);
      return addDeviceSpec(controller);
   }
View Full Code Here

TOP

Related Classes of com.vmware.vim.binding.vim.vm.device.VirtualSCSIController

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.