Sha256: e423622b3d922cfd803e87f2740ca2f4f0fea75883bb33970d042fdb29b7e7fe
Contents?: true
Size: 1.05 KB
Versions: 39
Compression:
Stored size: 1.05 KB
Contents
module Fog module Storage class Rackspace class Real # Delete an existing object # # ==== Parameters # * container<~String> - Name of container to delete # * object<~String> - Name of object to delete # @raise [Fog::Storage::Rackspace::NotFound] - HTTP 404 # @raise [Fog::Storage::Rackspace::BadRequest] - HTTP 400 # @raise [Fog::Storage::Rackspace::InternalServerError] - HTTP 500 # @raise [Fog::Storage::Rackspace::ServiceError] def delete_object(container, object) request( :expects => 204, :method => 'DELETE', :path => "#{Fog::Rackspace.escape(container)}/#{Fog::Rackspace.escape(object)}" ) end end class Mock def delete_object(container, object) c = mock_container! container c.mock_object! object c.remove_object object response = Excon::Response.new response.status = 204 response end end end end end
Version data entries
39 entries across 37 versions & 6 rubygems