Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

CreateFilesystemVolumeRequest

Properties

NameTypeDescriptionNotes
namestr
cluster_idint
backendstr
size_gbint[optional] [default to 100]
storage_classstr[optional]

Example

fromplatform_api_python_client.models.create_filesystem_volume_requestimportCreateFilesystemVolumeRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateFilesystemVolumeRequest from a JSON stringcreate_filesystem_volume_request_instance=CreateFilesystemVolumeRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateFilesystemVolumeRequest.to_json())
# convert the object into a dictcreate_filesystem_volume_request_dict=create_filesystem_volume_request_instance.to_dict()
# create an instance of CreateFilesystemVolumeRequest from a dictcreate_filesystem_volume_request_from_dict=CreateFilesystemVolumeRequest.from_dict(create_filesystem_volume_request_dict)

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