Sha256: 74a57b7d1f7a83f65189f842e4b9818f97bf0e7c42f06544c97fe2dafc7f37e6

Contents?: true

Size: 1.34 KB

Versions: 20

Compression:

Stored size: 1.34 KB

Contents

module Fog
  module Storage
    class AWS
      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, options = {})
          headers = options
          request({
            :expects    => 204,
            :headers    => 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, options = {})
          response = Excon::Response.new
          if bucket = self.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

20 entries across 20 versions & 5 rubygems

Version Path
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/delete_object.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/delete_object.rb
fog-1.1.2 lib/fog/aws/requests/storage/delete_object.rb
fog_tractical-1.1.4 lib/fog/aws/requests/storage/delete_object.rb
fog_tractical-1.1.3 lib/fog/aws/requests/storage/delete_object.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/delete_object.rb
fog-1.1.1 lib/fog/aws/requests/storage/delete_object.rb
fog-1.1.0 lib/fog/aws/requests/storage/delete_object.rb
brightbox-cli-0.15.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/delete_object.rb
tag-fog-1.0.1 lib/fog/aws/requests/storage/delete_object.rb
brightbox-cli-0.14.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/delete_object.rb
brightbox-cli-0.14.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/delete_object.rb
fog-1.0.0 lib/fog/aws/requests/storage/delete_object.rb
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/storage/requests/aws/delete_object.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/storage/requests/aws/delete_object.rb
fog-0.11.0 lib/fog/storage/requests/aws/delete_object.rb
fog-0.10.0 lib/fog/storage/requests/aws/delete_object.rb
fog4encbs-0.9.0.1 lib/fog/storage/requests/aws/delete_object.rb
fog4encbs-0.9.0 lib/fog/storage/requests/aws/delete_object.rb
fog-0.9.0 lib/fog/storage/requests/aws/delete_object.rb