CompletePresignMultipartUpload
Properties
Name |
Type |
Description |
Notes |
physical_address |
str |
|
|
parts |
List[UploadPart] |
List of uploaded parts, should be ordered by ascending part number |
|
user_metadata |
Dict[str, str] |
|
[optional] |
content_type |
str |
Object media type |
[optional] |
Example
from lakefs_sdk.models.complete_presign_multipart_upload import CompletePresignMultipartUpload
# TODO update the JSON string below
json = "{}"
# create an instance of CompletePresignMultipartUpload from a JSON string
complete_presign_multipart_upload_instance = CompletePresignMultipartUpload.from_json(json)
# print the JSON string representation of the object
print CompletePresignMultipartUpload.to_json()
# convert the object into a dict
complete_presign_multipart_upload_dict = complete_presign_multipart_upload_instance.to_dict()
# create an instance of CompletePresignMultipartUpload from a dict
complete_presign_multipart_upload_form_dict = complete_presign_multipart_upload.from_dict(complete_presign_multipart_upload_dict)
[Back to Model list] [Back to API list] [Back to README]