Packages

case class ContainerStateWaiting(message: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent) extends Product with Serializable

ContainerStateWaiting is a waiting state of a container.

message

Message regarding why the container is not yet running.

reason

(brief) reason the container is not yet running.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ContainerStateWaiting
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ContainerStateWaiting(message: Optional[String] = Optional.Absent, reason: Optional[String] = Optional.Absent)

    message

    Message regarding why the container is not yet running.

    reason

    (brief) reason the container is not yet running.

Value Members

  1. def getMessage: IO[K8sFailure, String]

    Message regarding why the container is not yet running.

    Message regarding why the container is not yet running.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  2. def getReason: IO[K8sFailure, String]

    (brief) reason the container is not yet running.

    (brief) reason the container is not yet running.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  3. val message: Optional[String]
  4. val reason: Optional[String]