vcenter vm hardware boot: update spec
The
update_spec
structure describes the updates to the settings used when booting a virtual machine.Representation:
{
"delay" : 1,
"efi_legacy_boot" : true,
"retry_delay" : 1,
"enter_setup_mode" : true,
"type" : "BIOS",
"network_protocol" : "IPV4",
"retry" : true
}
"delay" : 1,
"efi_legacy_boot" : true,
"retry_delay" : 1,
"enter_setup_mode" : true,
"type" : "BIOS",
"network_protocol" : "IPV4",
"retry" : true
}
Attributes:
Name | Type | Description |
---|---|---|
Optional | ||
type | string | Firmware type to be used by the virtual machine. Optional. If unset, the value is unchanged. |
efi_legacy_boot | boolean | Flag indicating whether to use EFI legacy boot mode. Optional. It is only relevant when type has value EFI. If unset, the value is unchanged. |
network_protocol | string | Protocol to use when attempting to boot the virtual machine over the network. Optional. It is only relevant when type has value EFI. If unset, the value is unchanged. |
delay | long | Delay in milliseconds before beginning the firmware boot process when the virtual machine is powered on. This delay may be used to provide a time window for users to connect to the virtual machine console and enter BIOS setup mode. Optional. If unset, the value is unchanged. |
retry | boolean | Flag indicating whether the virtual machine should automatically retry the boot process after a failure. Optional. If unset, the value is unchanged. |
retry_delay | long | Delay in milliseconds before retrying the boot process after a failure; applicable only when vcenter.vm.hardware.boot.info.retry is true. Optional. If unset, the value is unchanged. |
enter_setup_mode | boolean | Flag indicating whether the firmware boot process should automatically enter setup mode the next time the virtual machine boots. Note that this flag will automatically be reset to false once the virtual machine enters setup mode. Optional. If unset, the value is unchanged. |