Packages

case class ServiceStatus(conditions: Optional[Vector[Condition]] = Optional.Absent, loadBalancer: Optional[LoadBalancerStatus] = Optional.Absent) extends Product with Serializable

ServiceStatus represents the current status of a service.

conditions

Current service state

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

    conditions

    Current service state

Value Members

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

    Current service state

    Current service state

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

  3. def getLoadBalancer: IO[K8sFailure, LoadBalancerStatus]

    Gets loadBalancer.

    Gets loadBalancer.

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

  4. val loadBalancer: Optional[LoadBalancerStatus]