ExecInspectResponse

@Serializable
data class ExecInspectResponse(val canRemove: Boolean? = null, val detachKeys: String? = null, val ID: String? = null, val running: Boolean? = null, val exitCode: Int? = null, val processConfig: ProcessConfig? = null, val openStdin: Boolean? = null, val openStderr: Boolean? = null, val openStdout: Boolean? = null, val containerID: String? = null, val pid: Int? = null)

Parameters

canRemove
detachKeys
ID
running
exitCode
processConfig
openStdin
openStderr
openStdout
containerID
pid

The system process ID for the exec process.

Constructors

Link copied to clipboard
constructor(canRemove: Boolean? = null, detachKeys: String? = null, ID: String? = null, running: Boolean? = null, exitCode: Int? = null, processConfig: ProcessConfig? = null, openStdin: Boolean? = null, openStderr: Boolean? = null, openStdout: Boolean? = null, containerID: String? = null, pid: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "CanRemove")
val canRemove: Boolean?
Link copied to clipboard
@SerialName(value = "ContainerID")
val containerID: String?
Link copied to clipboard
@SerialName(value = "DetachKeys")
val detachKeys: String?
Link copied to clipboard
@SerialName(value = "ExitCode")
val exitCode: Int?
Link copied to clipboard
@SerialName(value = "ID")
val ID: String?
Link copied to clipboard
@SerialName(value = "OpenStderr")
val openStderr: Boolean?
Link copied to clipboard
@SerialName(value = "OpenStdin")
val openStdin: Boolean?
Link copied to clipboard
@SerialName(value = "OpenStdout")
val openStdout: Boolean?
Link copied to clipboard
@SerialName(value = "Pid")
val pid: Int?
Link copied to clipboard
@SerialName(value = "ProcessConfig")
val processConfig: ProcessConfig?
Link copied to clipboard
@SerialName(value = "Running")
val running: Boolean?