How do I retrieve a file(s) or directory listing from Google Cloud Storage (GCS) if I have the gs:// URI?
For example, gs://dataflow-samples/shakespeare/* is used by the Google DataFlow example app MinimalWordCount. I assume it is publicly accessible because my app can read it. But how can I download the file(s) without writing a DataFlow app to do it?
I did see this post, but it only addresses hows to identify the matching files, and it is also doing it programatically in the DataFlow app, which is not what I am looking for.
Ideally, I would like to be able to download (or browse the directory) using my browser. Are there any plugins? Or is there a way to convert the gs URI into a http(s) URL?
If I can't do it via a Browser, then what are my alternatives for download? Is it possible to download via my console using my account?