Sha256: 103e1c0761a32377c23b9c663a0d2d01b92292fc6e1a24bd9a825a30e8d696b7
Contents?: true
Size: 543 Bytes
Versions: 4
Compression:
Stored size: 543 Bytes
Contents
module Fog module Storage class HuaweiCloud class Real # Delete an existing object # # ==== Parameters # * container<~String> - Name of container to delete # * object<~String> - Name of object to delete # def delete_object(container, object) request( :expects => 204, :method => 'DELETE', :path => "#{Fog::HuaweiCloud.escape(container)}/#{Fog::HuaweiCloud.escape(object)}" ) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems