Closed
Description
The StorageService API identifies objects using a either (bucket, name) combination e.g. the reader(bucket, name) method or as using a Blob object e.g. the writer(Blob) method.
We should use a consistent representation of an object's identity. It would be nice if that also have a string representation that was consistent with how objects are identified in other tools such as gsutil.
We could use a URI for this:
URI id = URI.create("gs://bucket/path/to/object");
storage.reader(id);
storage.writer(id);