Clone Job Response
data class CloneJobResponse(val computeEngineTargetDetails: ComputeEngineTargetDetailsResponse, val createTime: String, val endTime: String, val error: StatusResponse, val name: String, val state: String, val stateTime: String, val steps: List<CloneStepResponse>)
CloneJob describes the process of creating a clone of a MigratingVM to the requested target based on the latest successful uploaded snapshots. While the migration cycles of a MigratingVm take place, it is possible to verify the uploaded VM can be started in the cloud, by creating a clone. The clone can be created without any downtime, and it is created using the latest snapshots which are already in the cloud. The cloneJob is only responsible for its work, not its products, which means once it is finished, it will never touch the instance it created. It will only delete it in case of the CloneJob being cancelled or upon failure to clone.
Constructors
Link copied to clipboard
fun CloneJobResponse(computeEngineTargetDetails: ComputeEngineTargetDetailsResponse, createTime: String, endTime: String, error: StatusResponse, name: String, state: String, stateTime: String, steps: List<CloneStepResponse>)