Sha256: 9be09d7b69b4e4bb12b48d7a0a6e3f2762039e129281a985e10e0bd864d378fc

Contents?: true

Size: 1.21 KB

Versions: 19

Compression:

Stored size: 1.21 KB

Contents

module Fog
  module Storage
    class AWS
      class Real

        # Get an expiring object url from S3
        #
        # ==== Parameters
        # * bucket_name<~String> - Name of bucket containing object
        # * object_name<~String> - Name of object to get expiring url for
        # * expires<~Time> - An expiry time for this url
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~String> - url for object
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html

        def get_object_url(bucket_name, object_name, expires)
          Fog::Logger.deprecation("Fog::Storage::AWS => #get_object_url is deprecated, use #get_object_https_url instead [light_black](#{caller.first})[/]")
          get_object_https_url(bucket_name, object_name, expires)
        end

      end

      class Mock # :nodoc:all

        def get_object_url(bucket_name, object_name, expires)
          Fog::Logger.deprecation("Fog::Storage::AWS => #get_object_url is deprecated, use #get_object_https_url instead [light_black](#{caller.first})[/]")
          get_object_https_url(bucket_name, object_name, expires)
        end

      end
    end
  end
end

Version data entries

19 entries across 19 versions & 6 rubygems

Version Path
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_url.rb
michiels-fog-1.3.1 lib/fog/aws/requests/storage/get_object_url.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/aws/requests/storage/get_object_url.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_url.rb
fog-1.3.1 lib/fog/aws/requests/storage/get_object_url.rb
fog-1.3.0 lib/fog/aws/requests/storage/get_object_url.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_url.rb
fog-1.2.0 lib/fog/aws/requests/storage/get_object_url.rb
ktheory-fog-1.1.2 lib/fog/aws/requests/storage/get_object_url.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_url.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_url.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_url.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_url.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/get_object_url.rb
fog-1.1.2 lib/fog/aws/requests/storage/get_object_url.rb
fog_tractical-1.1.4 lib/fog/aws/requests/storage/get_object_url.rb
fog_tractical-1.1.3 lib/fog/aws/requests/storage/get_object_url.rb
fog-1.1.1 lib/fog/aws/requests/storage/get_object_url.rb
fog-1.1.0 lib/fog/aws/requests/storage/get_object_url.rb