Sha256: 69afb90299ad57c0b1a1524579319cbd3c18fba1aa173abeaba1c6662a476490
Contents?: true
Size: 910 Bytes
Versions: 46
Compression:
Stored size: 910 Bytes
Contents
module Fog module Storage class AWS class Real # Abort a multipart upload # # ==== Parameters # * bucket_name<~String> - Name of bucket to abort multipart upload on # * object_name<~String> - Name of object to abort multipart upload on # * upload_id<~String> - Id of upload to add part to # # ==== See Also # http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadAbort.html # def abort_multipart_upload(bucket_name, object_name, upload_id) request({ :expects => 204, :headers => {}, :host => "#{bucket_name}.#{@host}", :method => 'DELETE', :path => CGI.escape(object_name), :query => {'uploadId' => upload_id} }) end end # Real end # Storage end # AWS end # Fog
Version data entries
46 entries across 46 versions & 15 rubygems