Listing Multipart Uploads in Object Storage
View a list of the in-progress multipart uploads for an Object Storage bucket.
- On the Buckets list page, select the Object Storage bucket that you want to work with. If you need help finding the list page or the bucket, see Listing Buckets.
- On the details page, select Management and find the Uncommitted multipart uploads section.
Default filter is applied to hide uploads newer than 7 days. Remove the applied filter to view the complete list. Use the oci os multipart list command and required parameters to list the in-progress multipart uploads in a bucket:
oci os multipart list --bucket-name bucket_name [OPTIONS]For example:
oci os multipart list --namespace MyNamespace --bucket-name MyBucket{ "data": [ { "bucket": "MyBucket", "namespace": "MyNamespace", "object": "MyObject", "time-created": "2019-07-25T21:55:21.973000+00:00", "upload-id": "0b7abd48-9ff2-9d5f-2034-63a02fdd7afa" }, { "bucket": "MyBucket", "namespace": "MyNamespace", "object": "MyObject", "time-created": "2019-07-25T21:53:09.246000+00:00", "upload-id": "1293ac9d-83f8-e055-a5a7-d1e13277b5c0" }, { "bucket": "MyBucket", "namespace": "MyNamespace", "object": "MyObject", "time-created": "2019-07-25T21:46:34.981000+00:00", "upload-id": "33e7a875-9e94-c3bc-6577-2ee5d8226b53" } ...For a complete list of parameters and values for CLI commands, see the CLI Command Reference.
Run the ListMultipartUploads operation to list the in-progress multipart uploads in a bucket.
See Using the Multipart API for more information.