Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. System.log(" Name: " + " " + vm.summary.config.name);
  2. System.log(" Hostname: " + " " + vm.summary.guest.hostName);
  3. System.log(" IP Address: " + " " + vm.summary.guest.ipAddress);
  4. System.log(" Description for VM: " + " " + vm.summary.config.annotation);
  5. System.log(" Number of CPU: " + " " + vm.summary.config.numCpu);
  6. System.log(" Amount of Memory in MB: " + " " + vm.summary.config.memorySizeMB);
  7. System.log(" Number of Network Adapters: " + " " + vm.summary.config.numEthernetCards);
  8. System.log(" Number of Disks: " + " " + vm.summary.config.numVirtualDisks);
  9. System.log(" Guest OS: " + " " + vm.summary.config.guestFullName);
  10. System.log("Is template: " + " " + vm.summary.config.template);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement