Resuming REC Session
POST /copysession/{copysession_id}/resume
Introduction
Resumes the specified REC Session.
Resumes duplexing of the source and destination data.
Copies the changes that have been made since the transition to Suspend state was completed and restores the equality status.
When the REC Session has resumed duplexing, the Job becomes Success.
The physical data is copied in the background.
You can check the progress of the background copy of the physical data in "GET /copysession/{copysession_id}".
The update part to the copy source during Suspend is reflected to the copy destination when duplexing is resumed.
On the other hand, the update part of the copy destination during Suspend is overwritten by the copy source data when duplexing is restarted.
Therefore, updates to the destination during Suspend will be discarded when duplexing is restarted.
For tenant users, REC Sessions cannot be resumed if the volume in the local storage system does not belong to the tenant of the current user.
Request Examples
- This is an example for resuming the Copy Session whose Copy Session ID is 2.
$ curl -i -H "Authorization: Bearer g17e4umvwYoHuhkG7yCSee.." -X POST "https://192.168.1.1:5665/api/v1/copysession/2/resume"
Response Examples
{
"job_id": 8192001,
"job_href": "/api/v1/job/8192001"
}
Parameters
PATH PARAMETERS
| copysession_id (required) |
integer Copy Session ID. |
Responses
If the job registration is successful, the HTTP status code will be 202 (Accepted) and the response body will respond.
RESPONSE BODY
| job_id | integer Job ID. |
| job_href | string Resource link of the job. |

