ImageVolumeStatus represents the image-based volume status.
| Name | Type | Description | Notes |
|---|---|---|---|
| image_ref | str | ImageRef is the digest of the image used for this volume. It should have a value that's similar to the pod's status.containerStatuses[i].imageID. The ImageRef length should not exceed 256 characters. |
from kubernetes.client.models.v1_image_volume_status import V1ImageVolumeStatus
# TODO update the JSON string below
json = "{}"
# create an instance of V1ImageVolumeStatus from a JSON string
v1_image_volume_status_instance = V1ImageVolumeStatus.from_json(json)
# print the JSON string representation of the object
print(V1ImageVolumeStatus.to_json())
# convert the object into a dict
v1_image_volume_status_dict = v1_image_volume_status_instance.to_dict()
# create an instance of V1ImageVolumeStatus from a dict
v1_image_volume_status_from_dict = V1ImageVolumeStatus.from_dict(v1_image_volume_status_dict)