Hi,
I want to set priority of Highly Available VM as High via python SDK.
I provided information as shown below:
vm = self.vms_service.add(
vm = types.Vm (
high_availability = types.HighAvailability(
enabled = True,
priority = 1, ),
),
)
As see above priority we have to provide as number but in GUI we can choose drop down menu as ("LOW", "MID" and "HIGH").