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
Ordering
- Alphabetic
- By Inheritance
Inherited
- ServiceStatus
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
ServiceStatus(conditions: Optional[Vector[Condition]] = Optional.Absent, loadBalancer: Optional[LoadBalancerStatus] = Optional.Absent)
- conditions
Current service state
Value Members
- val conditions: Optional[Vector[Condition]]
-
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.
-
def
getLoadBalancer: IO[K8sFailure, LoadBalancerStatus]
Gets loadBalancer.
Gets loadBalancer.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val loadBalancer: Optional[LoadBalancerStatus]