Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.39 KB

File metadata and controls

33 lines (24 loc) · 1.39 KB

ObjectStorageUploadCreate

Properties

Name Type Description Notes
file_path str File path in object storage.
owner OwnerReference Owner of the file. Defaults to authenticated user/group. [optional]
size int Size of the file. [optional]
part_size int Multipart upload size. [optional]
copy_source ObjectStorageReference Object storage reference to copy. [optional]

Example

from saturn_api.models.object_storage_upload_create import ObjectStorageUploadCreate

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

# convert the object into a dict
object_storage_upload_create_dict = object_storage_upload_create_instance.to_dict()
# create an instance of ObjectStorageUploadCreate from a dict
object_storage_upload_create_from_dict = ObjectStorageUploadCreate.from_dict(object_storage_upload_create_dict)

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