ReplicationCycleResponse

data class ReplicationCycleResponse(val cycleNumber: Int, val endTime: String, val error: StatusResponse, val name: String, 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
fun ReplicationCycleResponse(cycleNumber: Int, endTime: String, error: StatusResponse, name: String, progressPercent: Int, startTime: String, state: String, steps: List<CycleStepResponse>, totalPauseDuration: String, warnings: List<MigrationWarningResponse>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The cycle's ordinal number.

Link copied to clipboard

The time the replication cycle has ended.

Link copied to clipboard

Provides details on the state of the cycle in case of an error.

Link copied to clipboard

The identifier of the ReplicationCycle.

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 time the replication cycle has started.

Link copied to clipboard

State of the ReplicationCycle.

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.