LoadBalancerStatus class

LoadBalancerStatus represents the status of a load-balancer.

Constructors

LoadBalancerStatus({List<LoadBalancerIngress>? ingress})
The main constructor.
const
LoadBalancerStatus.fromJson(Map<String, dynamic> json)
Creates a LoadBalancerStatus from JSON data.

Properties

hashCode int
The hash code for this object.
no setterinherited
ingress List<LoadBalancerIngress>?
Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object>
Converts a LoadBalancerStatus instance to JSON data.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

listFromJson(Iterable<Map<String, dynamic>> list) List<LoadBalancerStatus>
Creates a list of LoadBalancerStatus from JSON data.