Container State Patch
data class ContainerStatePatch(val running: ContainerStateRunningPatch? = null, val terminated: ContainerStateTerminatedPatch? = null, val waiting: ContainerStateWaitingPatch? = null)
ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.
Constructors
Link copied to clipboard
constructor(running: ContainerStateRunningPatch? = null, terminated: ContainerStateTerminatedPatch? = null, waiting: ContainerStateWaitingPatch? = null)