DbMigrationStatusResponse

data class DbMigrationStatusResponse(val appliedChanges: Int? = null, val cdcDeleteCounter: Int? = null, val cdcInsertCounter: Int? = null, val cdcUpdateCounter: Int? = null, val databaseName: String? = null, val endedOn: String? = null, val fullLoadCompletedTables: Int? = null, val fullLoadErroredTables: Int? = null, val fullLoadLoadingTables: Int? = null, val fullLoadQueuedTables: Int? = null, val incomingChanges: Int? = null, val latency: Int? = null, val message: String? = null, val migrationOperation: String? = null, val migrationState: String? = null, val startedOn: String? = null)

Migration status of an individual database

Constructors

Link copied to clipboard
constructor(appliedChanges: Int? = null, cdcDeleteCounter: Int? = null, cdcInsertCounter: Int? = null, cdcUpdateCounter: Int? = null, databaseName: String? = null, endedOn: String? = null, fullLoadCompletedTables: Int? = null, fullLoadErroredTables: Int? = null, fullLoadLoadingTables: Int? = null, fullLoadQueuedTables: Int? = null, incomingChanges: Int? = null, latency: Int? = null, message: String? = null, migrationOperation: String? = null, migrationState: String? = null, startedOn: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val appliedChanges: Int? = null

CDC applied changes counter

Link copied to clipboard
val cdcDeleteCounter: Int? = null

CDC delete counter

Link copied to clipboard
val cdcInsertCounter: Int? = null

CDC insert counter

Link copied to clipboard
val cdcUpdateCounter: Int? = null

CDC update counter

Link copied to clipboard
val databaseName: String? = null

Name of the database

Link copied to clipboard
val endedOn: String? = null

End date-time of a migration state

Link copied to clipboard

Number of tables loaded during the migration of a DB

Link copied to clipboard

Number of tables errored out during the migration of a DB

Link copied to clipboard

Number of tables loading during the migration of a DB

Link copied to clipboard

Number of tables queued for the migration of a DB

Link copied to clipboard
val incomingChanges: Int? = null

CDC incoming changes counter

Link copied to clipboard
val latency: Int? = null

Lag in seconds between source and target during online phase

Link copied to clipboard
val message: String? = null

Error message, if any, for the migration state

Link copied to clipboard

Migration operation of an individual database

Link copied to clipboard
val migrationState: String? = null

Migration db state of an individual database

Link copied to clipboard
val startedOn: String? = null

Start date-time of a migration state