Sha256: e27362fa3f4546e05490b537ba9f8b213c9af81981a4e475394d111f37c9ad2d
Contents?: true
Size: 777 Bytes
Versions: 61
Compression:
Stored size: 777 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
61 entries across 61 versions & 6 rubygems