aistore.sdk.obj.multipart_upload
aistore.sdk.obj.multipart_upload
Module Contents
Classes
API
Provides methods for multipart upload operations in AIS.
Parameters:
client
Client used for all http requests.
object_path
Path to the object being uploaded.
parts
Abort the multipart upload.
Returns: Response
HTTP response from the server.
Add a part to the multipart upload.
Parameters:
part_number
The part number for this part.
Returns: ObjectWriter
Writer for uploading the part content.
Raises:
ValueError: If multipart upload has not been created or if part_number is not a positive integer.
Complete the multipart upload.
Returns: Response
HTTP response from the server.
Create a multipart upload session.
Returns: MultipartUpload
Self for method chaining.