Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.28 KB

File metadata and controls

29 lines (22 loc) · 1.28 KB

V1NamespaceStatus

NamespaceStatus is information about the current status of a Namespace.

Properties

Name Type Description Notes
conditions List[V1NamespaceCondition] Represents the latest available observations of a namespace's current state. [optional]
phase str Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/ [optional]

Example

from kubernetes.client.models.v1_namespace_status import V1NamespaceStatus

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

# convert the object into a dict
v1_namespace_status_dict = v1_namespace_status_instance.to_dict()
# create an instance of V1NamespaceStatus from a dict
v1_namespace_status_from_dict = V1NamespaceStatus.from_dict(v1_namespace_status_dict)

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