Reply to Message

View discussion in a popup

Replying to:
AlexJudge
VMware Employee
VMware Employee

Essentially, the  virtualMachineAddOrUpdateProperties property needs to be an output parameter of your vRO workflow. The workflow would be called via EBS during the BuildingMachine phase. As long as this parameter is an output of the workflow, vRA will pick it up and use it.

In terms of structure, the virtualMachineAddOrUpdateProperties property is a vRO 'properties' object. It holds a set of value key pairs. The code snippet below should help get you started.

virtualMachineAddOrUpdateProperties = new Properties () ;

virtualMachineAddOrUpdateProperties.put(‘MyCloud.OU, 'dc=corp,dc-local') ;


In your case, the .put would look something like:

virtualMachineAddOrUpdateProperties.put('hostname','<your host name>');


View solution in original post

Reply
0 Kudos