ServiceStatus class

ServiceStatus represents the current status of a service.

Constructors

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

Properties

conditions List<Condition>?
Current service state.
final
hashCode int
The hash code for this object.
no setterinherited
loadBalancer LoadBalancerStatus?
LoadBalancer contains the current status of the load-balancer, if one is present.
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 ServiceStatus 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<ServiceStatus>
Creates a list of ServiceStatus from JSON data.