Hi,
I try to create a new WF to receive a VC:VirtualMachine object from a user and print information on the machine (ID, Name, CPU, Memory, OS type).
The wf not works well :
System.log("VM ID: " + VmName.id + "VM Name : " + VmName.name + "VM CPU : " + VmNme.cpu + "VM Memroy : " +VmName.memory + "VM OS : " + VmName.guestOS);
I got this log - [2017-09-04 12:02:35.616] [I] VM ID: vm-81VM Name : VM-SQLVM CPU : undefinedVM Memroy : undefinedVM OS : undefined
Some help...