PodCondition class
PodCondition contains details for the current condition of this pod.
Constructors
- PodCondition({DateTime? lastProbeTime, DateTime? lastTransitionTime, String? message, String? reason, required String status, required String type})
-
Default constructor.
const
-
PodCondition.fromJson(Map<
String, dynamic> json) -
Creates a PodCondition from JSON data.
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- lastProbeTime → DateTime?
-
Last time we probed the condition.
final
- lastTransitionTime → DateTime?
-
Last time the condition transitioned from one status to another.
final
- message → String?
-
Human-readable message indicating details about last transition.
final
- reason → String?
-
Unique, one-word, CamelCase reason for the condition's last transition.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- status → String
-
Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions.
final
- type → String
-
Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, Object> - Converts a PodCondition instance to JSON data.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited