I have an object storage bucket on Oracle cloud, which contains a large number of archived objects. I want to restore all of them for download.
As per the documentation, I am able to select and restore individual objects via the web interface, but this would be very cumbersome to do for more than a few.
My current "best" attempt is to use the OCI CLI to list all the objects in the bucket, grep the names, and then to use a BASH script to loop through them all sending restore requests. This however, still seems very slow, and is taking many hours.
Surely there is a better way to do this. Is there no way simply to bulk restore an entire bucket? I can't find anything in the Oracle documentation that would let me do this.