Sha256: 5c120f2561fdf8a2da6701f252ca2aa7ebd35b56cda67babaf73e62ae6f9d156
Contents?: true
Size: 794 Bytes
Versions: 50
Compression:
Stored size: 794 Bytes
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 end end end
Version data entries
50 entries across 50 versions & 3 rubygems