Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.58 KB

File metadata and controls

29 lines (22 loc) · 1.58 KB

V1beta1StorageVersionMigrationStatus

Status of the storage version migration.

Properties

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]

Example

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)

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