Interface VmService.RebootRequest

  • All Superinterfaces:
    Request<VmService.RebootRequest,​VmService.RebootResponse>
    Enclosing interface:
    VmService

    public static interface VmService.RebootRequest
    extends Request<VmService.RebootRequest,​VmService.RebootResponse>
    Sends a reboot request to a virtual machine. For example: [source] ---- POST /ovirt-engine/api/vms/123/reboot ---- The reboot action does not take any action specific parameters; therefore, the request body should contain an empty `action`: [source,xml] ---- ---- To reboot the VM even if a backup is running for it, the action should include the 'force' element. For example, to force reboot virtual machine `123`: ---- POST /ovirt-engine/api/vms/123/reboot ---- [source,xml] ---- true ----