Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.02 KB

File metadata and controls

28 lines (21 loc) · 1.02 KB

V1VolumeStatus

VolumeStatus represents the status of a mounted volume. At most one of its members must be specified.

Properties

Name Type Description Notes
image V1ImageVolumeStatus [optional]

Example

from kubernetes.client.models.v1_volume_status import V1VolumeStatus

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

# convert the object into a dict
v1_volume_status_dict = v1_volume_status_instance.to_dict()
# create an instance of V1VolumeStatus from a dict
v1_volume_status_from_dict = V1VolumeStatus.from_dict(v1_volume_status_dict)

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