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
Ordering
- Alphabetic
- By Inheritance
Inherited
- LoadBalancerStatus
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
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
-
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.
- val ingress: Optional[Vector[LoadBalancerIngress]]