Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.07 KB

File metadata and controls

36 lines (27 loc) · 1.07 KB

Volume

Properties

Name Type Description Notes
volume_id str [optional]
volume_name str [optional]
description str [optional]
environment_efs_id str [optional]
created_at str [optional]
root_directory str [optional]
access_point_id str [optional]
access_point_arn str [optional]

Example

from quantcdn.models.volume import Volume

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

# convert the object into a dict
volume_dict = volume_instance.to_dict()
# create an instance of Volume from a dict
volume_from_dict = Volume.from_dict(volume_dict)

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