Examples of markAsTemplate()


Examples of com.vmware.aurora.vc.VcVirtualMachine.markAsTemplate()

         VcSnapshot snap2 = vm.getSnapshotByName("snap2");
         AuAssert.check(snap2 != null);
         System.out.println("snap1: " + snap1 + " snap2: " + snap2);

         System.out.println("Mark the VM as template");
         vm.markAsTemplate();
         System.out.println(dc.getVirtualMachine(vmName).getInfo());

         /*
          * Test file operations using data.vmdk
          */
 
View Full Code Here

Examples of com.vmware.vim.binding.vim.VirtualMachine.markAsTemplate()

    */
   @Override
   public void markAsTemplate() throws Exception {
      AuAssert.check(VcContext.isInTaskSession());
      VirtualMachine vm = getManagedObject();
      vm.markAsTemplate();
      update();
   }

   /*
    * (non-Javadoc)
 
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.