module Fog::Storage::GoogleXML::GetObjectHttpsUrl

Public Instance Methods

get_object_https_url(bucket_name, object_name, expires, options = {}) click to toggle source
# File lib/fog/storage/google_xml/requests/get_object_https_url.rb, line 5
def get_object_https_url(bucket_name, object_name, expires, options = {})
  raise ArgumentError.new("bucket_name is required") unless bucket_name
  raise ArgumentError.new("object_name is required") unless object_name

  https_url(options.merge(:headers  => {},
                          :host     => @host,
                          :method   => "GET",
                          :path     => "#{bucket_name}/#{object_name}"),
            expires)
end