Interface ClusterService.UpgradeResponse

  • All Superinterfaces:
    Response
    Enclosing interface:
    ClusterService

    public static interface ClusterService.UpgradeResponse
    extends Response
    Start, update or finish upgrade process for the cluster based on the action value. This action marks the cluster for upgrade, updates the progress, or clears the upgrade running flag on the cluster based on the action value which takes values of `start`, `stop` or `update_progress`. [source] ---- POST /ovirt-engine/api/clusters/123/upgrade ---- With a request body like this to mark the cluster for upgrade: [source,xml] ---- start ---- After starting the upgrade, use a request body like this to update the progress to 15%: [source,xml] ---- update_progress 15 ----