ContainerStateTerminatedPatch

data class ContainerStateTerminatedPatch(val containerID: String? = null, val exitCode: Int? = null, val finishedAt: String? = null, val message: String? = null, val reason: String? = null, val signal: Int? = null, val startedAt: String? = null)

ContainerStateTerminated is a terminated state of a container.

Constructors

Link copied to clipboard
constructor(containerID: String? = null, exitCode: Int? = null, finishedAt: String? = null, message: String? = null, reason: String? = null, signal: Int? = null, startedAt: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val containerID: String? = null

Container's ID in the format '://'

Link copied to clipboard
val exitCode: Int? = null

Exit status from the last termination of the container

Link copied to clipboard
val finishedAt: String? = null

Time at which the container last terminated

Link copied to clipboard
val message: String? = null

Message regarding the last termination of the container

Link copied to clipboard
val reason: String? = null

(brief) reason from the last termination of the container

Link copied to clipboard
val signal: Int? = null

Signal from the last termination of the container

Link copied to clipboard
val startedAt: String? = null

Time at which previous execution of the container started