Replication Cycle Response
data class ReplicationCycleResponse(val cycleNumber: Int, val endTime: String, val error: StatusResponse, val name: String, val progress: Int, val progressPercent: Int, val startTime: String, val state: String, val steps: List<CycleStepResponse>, val totalPauseDuration: String, val warnings: List<MigrationWarningResponse>)
ReplicationCycle contains information about the current replication cycle status.
Constructors
Link copied to clipboard
constructor(cycleNumber: Int, endTime: String, error: StatusResponse, name: String, progress: Int, progressPercent: Int, startTime: String, state: String, steps: List<CycleStepResponse>, totalPauseDuration: String, warnings: List<MigrationWarningResponse>)
Properties
Link copied to clipboard
The cycle's ordinal number.
Link copied to clipboard
Provides details on the state of the cycle in case of an error.
Link copied to clipboard
The current progress in percentage of this cycle. Was replaced by 'steps' field, which breaks down the cycle progression more accurately.
Link copied to clipboard
The cycle's steps list representing its progress.
Link copied to clipboard
The accumulated duration the replication cycle was paused.
Link copied to clipboard
Warnings that occurred during the cycle.