Sha256: 5deeca7c00f9f99f5938b29d570b3b3f8a73b2751e39dbf154b5b87eae671d12
Contents?: true
Size: 772 Bytes
Versions: 29
Compression:
Stored size: 772 Bytes
Contents
module Fog module Storage class HP class Real # Delete a shared object # # ==== Parameters # * shared_object_url<~String> - Url of the shared object # def delete_shared_object(shared_object_url) # split up the shared object url uri = URI.parse(shared_object_url) path = uri.path response = shared_request( :expects => 204, :method => 'DELETE', :path => path ) response end end class Mock # :nodoc:all def delete_shared_object(shared_object_url) response = Excon::Response.new response.status = 204 response end end end end end
Version data entries
29 entries across 29 versions & 4 rubygems