I want to perform the following:
- Create a signed URL using
gsutil signurl
. (https://cloud.google.com/storage/docs/access-control/create-signed-urls-gsutil) - On a separate machine, issue the
gsutil rsync
command without authenticating thegsutil
tool by using the secure URL generated in step 1.
Is such a thing possible?
I know that I could programatically download files as described in the answer to Google cloud storage signed url chunked download In python?, but I am wondering if it is possible to use gsutil
in an un-authenticated manner using the created secure URL.