Sha256: 0b90c41b4bc3533d07e82e65f4ea2cc8d7f78a4425a75c9c26f470382c163add

Contents?: true

Size: 1.27 KB

Versions: 38

Compression:

Stored size: 1.27 KB

Contents

module Fog
  module AWS
    class Storage
      class Real

        # Delete an object from S3
        #
        # ==== Parameters
        # * bucket_name<~String> - Name of bucket containing object to delete
        # * object_name<~String> - Name of object to delete
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * status<~Integer> - 204
        #
        # ==== See Also
        # http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectDELETE.html

        def delete_object(bucket_name, object_name)
          request({
            :expects    => 204,
            :headers    => {},
            :host       => "#{bucket_name}.#{@host}",
            :idempotent => true,
            :method     => 'DELETE',
            :path       => CGI.escape(object_name)
          })
        end

      end

      class Mock # :nodoc:all

        def delete_object(bucket_name, object_name)
          response = Excon::Response.new
          if bucket = @data[:buckets][bucket_name]
            response.status = 204
            bucket[:objects].delete(object_name)
          else
            response.status = 404
            raise(Excon::Errors.status_error({:expects => 204}, response))
          end
          response
        end

      end
    end
  end
end

Version data entries

38 entries across 38 versions & 3 rubygems

Version Path
fog-0.8.1 lib/fog/storage/requests/aws/delete_object.rb
fog-0.8.0 lib/fog/storage/requests/aws/delete_object.rb
fog-0.7.2 lib/fog/storage/requests/aws/delete_object.rb
fog-0.7.1 lib/fog/storage/requests/aws/delete_object.rb
fog-0.7.0 lib/fog/storage/requests/aws/delete_object.rb
fog-0.6.0 lib/fog/storage/requests/aws/delete_object.rb
fog-0.5.3 lib/fog/storage/requests/aws/delete_object.rb
fog-0.5.2 lib/fog/storage/requests/aws/delete_object.rb
fog-0.5.1 lib/fog/storage/requests/aws/delete_object.rb
fog-0.5.0 lib/fog/storage/requests/aws/delete_object.rb
phpfog-fog-0.4.1.3 lib/fog/storage/requests/aws/delete_object.rb
phpfog-fog-0.4.1.2 lib/fog/storage/requests/aws/delete_object.rb
phpfog-fog-0.4.1.1 lib/fog/storage/requests/aws/delete_object.rb
phpfog-fog-0.4.1 lib/fog/storage/requests/aws/delete_object.rb
fog-0.4.1 lib/fog/storage/requests/aws/delete_object.rb
fog-0.4.0 lib/fog/aws/requests/storage/delete_object.rb
fog-0.3.34 lib/fog/aws/requests/storage/delete_object.rb
fog-0.3.33 lib/fog/aws/requests/storage/delete_object.rb
fog-0.3.32 lib/fog/aws/requests/storage/delete_object.rb
fog-0.3.31 lib/fog/aws/requests/storage/delete_object.rb