Sha256: 843f3b97c4a50632b7e1a496b923e1e92286db9bf18aea51733f690dd79a5cce
Contents?: true
Size: 695 Bytes
Versions: 13
Compression:
Stored size: 695 Bytes
Contents
unless Fog.mocking? module Fog module Rackspace class Files # Delete an existing container # # ==== Parameters # * container<~String> - Name of container to delete # * object<~String> - Name of object to delete # def delete_object(container, object) response = storage_request( :expects => 204, :method => 'DELETE', :path => "#{CGI.escape(container)}/#{CGI.escape(object)}" ) response end end end end else module Fog module Rackspace class Servers def delete_object end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems