
Continue Failover
You can run a HALTED failover plan with the specified ID.
Request
To resume the failover plan execution process, send the POST HTTPS request to the URL of the /FailoverPlans/{id}/Continue resource:
HTTP Request
POST https://<hostname>:<port>/v1/FailoverPlans/{id}/Continue |
Request Headers
The request header must contain the authorization token for the current logon session.
Request Body
In the request body, to define whether to proceed with plan execution from the next VM or VM group included in the plan, proceed from the next plan step, retry the failed step, retry the failed VM or VM group, you must send action-specific parameters. For more information on the parameters, see section Failover Plan Action Parameters.
{ "executionContinueOptions": "<Options>" } |
Response
The server returns the following response to the client.
Response Code
A successfully completed operation returns response code 200 Success.
Response Headers
The response to this request contains the following headers. The response may also include additional standard HTTP headers.
Header | Description |
Content-length | The length of the response body. |
Content-type | The media type and syntax of the request body message: application/json; charset=utf-8 |
Example
The following example continues execution of the failover plan with the b8517d70-028d-4740-a130-787e164a3d83 ID from the failed step.
Request: POST https://uwin2012r2.n.local:9899/v1/FailoverPlans/b8517d70-028d-4740-a130-787e164a3d83/Run/Continue
Request Header: Authorization: Bearer <Access-Token>
Request Body: { "executionContinueOptions": "RetryFailedStep" }
Response: 200 Success
Response Body: no content |