Packages

case class LoadBalancerStatus(ingress: Optional[Vector[LoadBalancerIngress]] = Optional.Absent) extends Product with Serializable

LoadBalancerStatus represents the status of a load-balancer.

ingress

Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

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

    ingress

    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

Value Members

  1. def getIngress: IO[K8sFailure, Vector[LoadBalancerIngress]]

    Ingress is a list containing ingress points for the load-balancer.

    Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

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

  2. val ingress: Optional[Vector[LoadBalancerIngress]]