Package | Description |
---|---|
com.ibm.cloud.objectstorage.services.s3 |
Synchronous client for accessing Amazon S3.
|
com.ibm.cloud.objectstorage.services.s3.model |
Classes modeling the various types represented by Amazon S3.
|
com.ibm.cloud.objectstorage.services.s3.transfer.internal |
Modifier and Type | Method and Description |
---|---|
CompleteMultipartUploadResult |
UploadObjectObserver.onCompletion(List<PartETag> partETags)
Notified from
AmazonS3EncryptionClient.uploadObject(UploadObjectRequest) when
all parts have been successfully uploaded to S3. |
Modifier and Type | Method and Description |
---|---|
PartETag |
CopyPartResult.getPartETag()
Returns an identifier which identifies the copy part by its part number
and the entity tag computed from the part's data.
|
PartETag |
UploadPartResult.getPartETag()
Returns an identifier which identifies the upload part by its part number
and the entity tag computed from the part's data.
|
PartETag |
PartETag.withETag(String eTag)
Sets the entity tag generated from the content of the associated part,
and returns this updated PartETag object so that additional method calls
can be chained together.
|
PartETag |
PartETag.withPartNumber(int partNumber)
Sets the part number of the associated part, and returns this updated
PartETag object so that additional method calls can be chained together.
|
Modifier and Type | Method and Description |
---|---|
List<PartETag> |
CompleteMultipartUploadRequest.getPartETags()
Returns the list of part numbers and ETags that identify the individual
parts of the multipart upload to complete.
|
Modifier and Type | Method and Description |
---|---|
void |
CompleteMultipartUploadRequest.setPartETags(List<PartETag> partETags)
Sets the list of part numbers and ETags that identify the individual
parts of the multipart upload to complete.
|
CompleteMultipartUploadRequest |
CompleteMultipartUploadRequest.withPartETags(List<PartETag> partETags)
Sets the list of part numbers and ETags that identify the individual
parts of the multipart upload to complete, and returns this updated
CompleteMultipartUploadRequest object so that additional method calls can be chained.
|
Constructor and Description |
---|
CompleteMultipartUploadRequest(String bucketName,
String key,
String uploadId,
List<PartETag> partETags)
Constructs a new request to complete a multipart upload.
|
Modifier and Type | Method and Description |
---|---|
PartETag |
UploadPartCallable.call() |
PartETag |
CopyPartCallable.call() |
Constructor and Description |
---|
CompleteMultipartCopy(String uploadId,
AmazonS3 s3,
CopyObjectRequest copyObjectRequest,
List<Future<PartETag>> futures,
ProgressListenerChain progressListenerChain,
CopyMonitor monitor) |
CompleteMultipartUpload(String uploadId,
AmazonS3 s3,
PutObjectRequest putObjectRequest,
Future<List<PartETag>> partFutures,
List<PartETag> eTagsBeforeResume,
ProgressListenerChain progressListenerChain,
UploadMonitor monitor) |
CompleteMultipartUpload(String uploadId,
AmazonS3 s3,
PutObjectRequest putObjectRequest,
Future<List<PartETag>> partFutures,
List<PartETag> eTagsBeforeResume,
ProgressListenerChain progressListenerChain,
UploadMonitor monitor) |
Copyright © 2024. All rights reserved.