ContainerStateTerminatedArgs

data class ContainerStateTerminatedArgs(val containerID: Output<String>? = null, val exitCode: Output<Int>, val finishedAt: Output<String>? = null, val message: Output<String>? = null, val reason: Output<String>? = null, val signal: Output<Int>? = null, val startedAt: Output<String>? = null) : ConvertibleToJava<ContainerStateTerminatedArgs>

ContainerStateTerminated is a terminated state of a container.

Constructors

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

Properties

Link copied to clipboard
val containerID: Output<String>? = null

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

Link copied to clipboard
val exitCode: Output<Int>

Exit status from the last termination of the container

Link copied to clipboard
val finishedAt: Output<String>? = null

Time at which the container last terminated

Link copied to clipboard
val message: Output<String>? = null

Message regarding the last termination of the container

Link copied to clipboard
val reason: Output<String>? = null

(brief) reason from the last termination of the container

Link copied to clipboard
val signal: Output<Int>? = null

Signal from the last termination of the container

Link copied to clipboard
val startedAt: Output<String>? = null

Time at which previous execution of the container started

Functions

Link copied to clipboard
open override fun toJava(): ContainerStateTerminatedArgs