Hello all,
I'm diving in head first and trying to construct some work flows for our deployments here. The Javascript doesn't seem to be to hard, the biggest thing I'm struggeling with it to find a good list of object properties. For example:
1. var vms = System.getModule("com.vmware.library.vc.vm").getAllVMs()
2. var i = 0;
3.
4. for each (vm in vms){
5. System.log("VM Number " + i + " " + vm.name);
6. i++;
7. }
In line 5 here we have the object "vm". Well when I develop using the C# API Visual studio gives me all the methods and properties that I can use based on the object I'm working with. Not knowing your methods and properties for an object is VERY frustrating and slows down development emensly.
Are the methods and properties of these objects listed any where?
Thank you kindly,
Steven