Skip to content

Latest commit

History

History
43 lines (34 loc) · 1.56 KB

File metadata and controls

43 lines (34 loc) · 1.56 KB

GetObjectVolumeResponse

Properties

NameTypeDescriptionNotes
idint
namestr
cluster_idint
backendstr
access_modeVolumeAccessMode
statusVolumeStatus
pvc_namestr
created_atdatetime
providerObjectStorageProvider
bucketstr
regionstr
prefixstr[optional]
read_onlybool
volume_attributesDict[str, str][optional]
mount_optionsList[str][optional]

Example

fromplatform_api_python_client.models.get_object_volume_responseimportGetObjectVolumeResponse# TODO update the JSON string belowjson="{}"# create an instance of GetObjectVolumeResponse from a JSON stringget_object_volume_response_instance=GetObjectVolumeResponse.from_json(json)
# print the JSON string representation of the objectprint(GetObjectVolumeResponse.to_json())
# convert the object into a dictget_object_volume_response_dict=get_object_volume_response_instance.to_dict()
# create an instance of GetObjectVolumeResponse from a dictget_object_volume_response_from_dict=GetObjectVolumeResponse.from_dict(get_object_volume_response_dict)

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