class BucketClient::Bucket

Public Instance Methods

get_uri(key) click to toggle source

Obtains the URI of the blob from key of the blob Does not raise exception even if blob does not exist

uri = bucket.get_uri(“image.png”) #=>

@param [String] key the blob id or name @return [String]

# File lib/bucket_client/bucket.rb, line 384
def get_uri(key)
        raise NotImplementedError key
end