Status of the storage version migration.
| Name | Type | Description | Notes |
|---|---|---|---|
| conditions | List[V1Condition] | The latest available observations of the migration's current state. | [optional] |
| resource_version | str | ResourceVersion to compare with the GC cache for performing the migration. This is the current resource version of given group, version and resource when kube-controller-manager first observes this StorageVersionMigration resource. | [optional] |
from kubernetes.client.models.v1beta1_storage_version_migration_status import V1beta1StorageVersionMigrationStatus
# TODO update the JSON string below
json = "{}"
# create an instance of V1beta1StorageVersionMigrationStatus from a JSON string
v1beta1_storage_version_migration_status_instance = V1beta1StorageVersionMigrationStatus.from_json(json)
# print the JSON string representation of the object
print(V1beta1StorageVersionMigrationStatus.to_json())
# convert the object into a dict
v1beta1_storage_version_migration_status_dict = v1beta1_storage_version_migration_status_instance.to_dict()
# create an instance of V1beta1StorageVersionMigrationStatus from a dict
v1beta1_storage_version_migration_status_from_dict = V1beta1StorageVersionMigrationStatus.from_dict(v1beta1_storage_version_migration_status_dict)