Packages

case class ComponentStatus(conditions: Optional[Vector[ComponentCondition]] = Optional.Absent, metadata: Optional[ObjectMeta] = Optional.Absent) extends Product with Serializable

ComponentStatus (and ComponentStatusList) holds the cluster validation info. Deprecated: This API is deprecated in v1.19+

conditions

List of component conditions observed

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ComponentStatus
  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 ComponentStatus(conditions: Optional[Vector[ComponentCondition]] = Optional.Absent, metadata: Optional[ObjectMeta] = Optional.Absent)

    conditions

    List of component conditions observed

Value Members

  1. val conditions: Optional[Vector[ComponentCondition]]
  2. def getConditions: IO[K8sFailure, Vector[ComponentCondition]]

    List of component conditions observed

    List of component conditions observed

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

  3. def getMetadata: IO[K8sFailure, ObjectMeta]

    Gets metadata.

    Gets metadata.

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

  4. val metadata: Optional[ObjectMeta]