Interface VmService.StopRequest

  • All Superinterfaces:
    Request<VmService.StopRequest,​VmService.StopResponse>
    Enclosing interface:
    VmService

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