I use following code to change it's os information
```
vmService.update().
vm(
vm()
.os(
operatingSystem()
.type("other")
)
)
.send();
```
then I get an error like following:
Exception in thread "main" org.ovirt.engine.sdk4.Error: Fault reason is
"Operation Failed". Fault detail is "[Cannot edit VM. Invalid time zone for
given OS type., Attribute: vmStatic]". HTTP response code is "400". HTTP
response message is "Bad Request".
In my test, I find for the virtual machine which is in "down" status, it's
running as same as I expect.But with those alive virtual machine with current os is not
"other" ,it will make the mistake as above.
Could someone know what's the problem is and how to change the os type for alive
virtual machine?