NamespaceStatus is information about the current status of a Namespace.
| 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] |
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)