Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.07 KB

File metadata and controls

28 lines (21 loc) · 1.07 KB

V1PodReadinessGate

PodReadinessGate contains the reference to a pod condition

Properties

Name Type Description Notes
condition_type str ConditionType refers to a condition in the pod's condition list with matching type.

Example

from kubernetes.client.models.v1_pod_readiness_gate import V1PodReadinessGate

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

# convert the object into a dict
v1_pod_readiness_gate_dict = v1_pod_readiness_gate_instance.to_dict()
# create an instance of V1PodReadinessGate from a dict
v1_pod_readiness_gate_from_dict = V1PodReadinessGate.from_dict(v1_pod_readiness_gate_dict)

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