SqlServerInstanceJobStatusResponse

data class SqlServerInstanceJobStatusResponse(val backgroundJob: BackgroundJobResponse? = null, val id: String? = null, val instanceName: String? = null, val jobException: String? = null, val jobStatus: String? = null, val sequencerActions: List<SequencerActionResponse>? = null)

The status of the job running on the SQL Server instance.

Constructors

Link copied to clipboard
constructor(backgroundJob: BackgroundJobResponse? = null, id: String? = null, instanceName: String? = null, jobException: String? = null, jobStatus: String? = null, sequencerActions: List<SequencerActionResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The background job details.

Link copied to clipboard
val id: String? = null

The unique identifier of the job.

Link copied to clipboard
val instanceName: String? = null

The name of the SQL Server instance.

Link copied to clipboard
val jobException: String? = null

The exception message if the job failed.

Link copied to clipboard
val jobStatus: String? = null

The status of the job.

Link copied to clipboard

The list of sequencer actions.