Has anyone gotten this working?
When i attempt to submit the workflow against an IaaS Blueprint that has just one vSphere machine element the following entries cause a 400 BAD_REQUEST error:
- provider-VirtualMachine.Memory.Size
- provider-VirtualMachine.CPU.Count
I have tried populating the values for these properties several ways, all of them result in the same 400 BAD_REQUEST error:
inputs.put("provider-VirtualMachine.Memory.Size", "1024"); //STRING inputs.put("provider-VirtualMachine.Memory.Size", 1024); //NUMBER inputs.put("provider-VirtualMachine.Memory.Size", new vCACCAFEIntegerLiteral(1024).getValue()); //INT inputs.put("provider-VirtualMachine.Memory.Size", new vCACCAFEDecimalLiteral(1024).getValue()); //DEC
If i leave those two properties out the process works and just get created with 1 vCPU and 1024MB of memory.
This process works fine in my 6.2 environments.