Hello There.
I created a simple "Hello VM" workflow in vCO and added it to vcenter so it shows up in the right click menu of a virtual machine.
When i run it, the input is pre-populated with the name of the virtual machine just like i expected.
Within the script section, i'm simply executing
system.log("Hello, " + vm.displayName);
system.log("VM ID: " + vm.id);
I'm trying to figure out how I can get the cluster that this VM lives on but that property is not part of VC:VirtualMachine.
Do I need to leverage another type of input to get that data or another workflow to pull that information?
thank you.