Description of problem: In 3.6: params.OperatingSystem( type_='unassigned', boot=( params.Boot(dev='cdrom'), params.Boot(dev='hd'), ), ) now translates to params.OperatingSystem( type_='unassigned', boot=params.Boot( devices=params.devicesType( device=[ 'cdrom', 'hd', ], ), ) ) while I would have expected something like: params.OperatingSystem( type_='unassigned', boot=params.Boot( devices=['cdrom', 'hd'], ) ) to just store a list of strings.
In version 4 of the SDK it works like this: import ovirtsdk4.types as types types.OperatingSystem( type='unassigned', boot=types.Boot( devices=[ types.BootDevice.NETWORK, types.BootDevice.HD, ], ), ),
This bug was fixed and is slated to be in the upcoming version. As we are focusing our testing at this phase on severe bugs, this bug was closed without going through its verification step. If you think this bug should be verified by QE, please set its severity to high and move it back to ON_QA