Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.91 KB

File metadata and controls

30 lines (23 loc) · 1.91 KB

V1alpha1StorageVersionStatus

API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend.

Properties

Name Type Description Notes
common_encoding_version str commonEncodingVersion is set to an encoding storage version if all API server instances share that same version. If they don't share one storage version, this field is left empty. API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality. [optional]
conditions List[V1alpha1StorageVersionCondition] conditions lists the latest available observations of the storageVersion's state. [optional]
storage_versions List[V1alpha1ServerStorageVersion] storageVersions lists the reported versions per API server instance. [optional]

Example

from kubernetes.client.models.v1alpha1_storage_version_status import V1alpha1StorageVersionStatus

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

# convert the object into a dict
v1alpha1_storage_version_status_dict = v1alpha1_storage_version_status_instance.to_dict()
# create an instance of V1alpha1StorageVersionStatus from a dict
v1alpha1_storage_version_status_from_dict = V1alpha1StorageVersionStatus.from_dict(v1alpha1_storage_version_status_dict)

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