Hi,
maybe you can get the information from the vcloud:vm.
Some Code to get the IP (vCO-Javascript):
var networkConnections = vm.getNetworkConnectionSection().networkConnection.enumerate(); for each (var networkConnectin in networkConnections){ System.log(networkConnection.ipAddress); //IP-Address of the VM }
You can get all network-informations from XML of the VM-NetworkConnection:
System.log(vm.getNetworkConnectionSection().toXml());