AddonStatusResponse

data class AddonStatusResponse(val errorMessage: String? = null, val phase: String? = null, val ready: Boolean? = null)

Status of the addon

Constructors

Link copied to clipboard
constructor(errorMessage: String? = null, phase: String? = null, ready: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val errorMessage: String? = null

ErrorMessage will be set in the event that there is a terminal problem reconciling the AddOn and will contain a more verbose string suitable for logging and human consumption.

Link copied to clipboard
val phase: String? = null

Phase represents the current phase of cluster actuation. E.g. Pending, Running, Terminating, Failed etc.

Link copied to clipboard
val ready: Boolean? = null