Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.21 KB

File metadata and controls

28 lines (21 loc) · 1.21 KB

V1LoadBalancerStatus

LoadBalancerStatus represents the status of a load-balancer.

Properties

Name Type Description Notes
ingress List[V1LoadBalancerIngress] Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points. [optional]

Example

from kubernetes.client.models.v1_load_balancer_status import V1LoadBalancerStatus

# TODO update the JSON string below
json = "{}"
# create an instance of V1LoadBalancerStatus from a JSON string
v1_load_balancer_status_instance = V1LoadBalancerStatus.from_json(json)
# print the JSON string representation of the object
print(V1LoadBalancerStatus.to_json())

# convert the object into a dict
v1_load_balancer_status_dict = v1_load_balancer_status_instance.to_dict()
# create an instance of V1LoadBalancerStatus from a dict
v1_load_balancer_status_from_dict = V1LoadBalancerStatus.from_dict(v1_load_balancer_status_dict)

[Back to Model list] [Back to API list] [Back to README]