final case class ContainerStatus(name: String, state: Option[ContainerState] = None, image: String, restartCount: Int, ready: Boolean, lastState: Option[ContainerState] = None, imageID: String, containerID: Option[String] = None, started: Option[Boolean] = None) extends Product with Serializable
ContainerStatus contains details for the current status of this container.
- Source
- ContainerStatus.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ContainerStatus
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new ContainerStatus(name: String, state: Option[ContainerState] = None, image: String, restartCount: Int, ready: Boolean, lastState: Option[ContainerState] = None, imageID: String, containerID: Option[String] = None, started: Option[Boolean] = None)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- val containerID: Option[String]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val image: String
- val imageID: String
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val lastState: Option[ContainerState]
- val name: String
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val ready: Boolean
- val restartCount: Int
- val started: Option[Boolean]
- val state: Option[ContainerState]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def withContainerID(value: String): ContainerStatus
- def withImage(value: String): ContainerStatus
- def withImageID(value: String): ContainerStatus
- def withLastState(value: ContainerState): ContainerStatus
- def withName(value: String): ContainerStatus
- def withReady(value: Boolean): ContainerStatus
- def withRestartCount(value: Int): ContainerStatus
- def withStarted(value: Boolean): ContainerStatus
- def withState(value: ContainerState): ContainerStatus