Describes the state of the storageVersion at a certain point.
| Name | Type | Description | Notes |
|---|---|---|---|
| last_transition_time | datetime | lastTransitionTime is the last time the condition transitioned from one status to another. | [optional] |
| message | str | message is a human readable string indicating details about the transition. | |
| observed_generation | int | observedGeneration represents the .metadata.generation that the condition was set based upon, if field is set. | [optional] |
| reason | str | reason for the condition's last transition. | |
| status | str | status of the condition, one of True, False, Unknown. | |
| type | str | type of the condition. |
from kubernetes.client.models.v1alpha1_storage_version_condition import V1alpha1StorageVersionCondition
# TODO update the JSON string below
json = "{}"
# create an instance of V1alpha1StorageVersionCondition from a JSON string
v1alpha1_storage_version_condition_instance = V1alpha1StorageVersionCondition.from_json(json)
# print the JSON string representation of the object
print(V1alpha1StorageVersionCondition.to_json())
# convert the object into a dict
v1alpha1_storage_version_condition_dict = v1alpha1_storage_version_condition_instance.to_dict()
# create an instance of V1alpha1StorageVersionCondition from a dict
v1alpha1_storage_version_condition_from_dict = V1alpha1StorageVersionCondition.from_dict(v1alpha1_storage_version_condition_dict)