Skip to content

Latest commit

History

History
38 lines (29 loc) · 1.42 KB

File metadata and controls

38 lines (29 loc) · 1.42 KB

CreateObjectVolumeRequest

Properties

NameTypeDescriptionNotes
namestr
cluster_idint
backendstr
providerObjectStorageProvider[optional]
bucketstr
regionstr
prefixstr[optional]
read_onlybool[optional] [default to False]
volume_attributesDict[str, str][optional]
mount_optionsList[str][optional]

Example

fromplatform_api_python_client.models.create_object_volume_requestimportCreateObjectVolumeRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateObjectVolumeRequest from a JSON stringcreate_object_volume_request_instance=CreateObjectVolumeRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateObjectVolumeRequest.to_json())
# convert the object into a dictcreate_object_volume_request_dict=create_object_volume_request_instance.to_dict()
# create an instance of CreateObjectVolumeRequest from a dictcreate_object_volume_request_from_dict=CreateObjectVolumeRequest.from_dict(create_object_volume_request_dict)

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