Sha256: 6613ecbd82eaf435d5110121a8c1b79a5067ca92b2c9ba141f8305e9e80b89ed
Contents?: true
Size: 629 Bytes
Versions: 2
Compression:
Stored size: 629 Bytes
Contents
module Fog module Aliyun class Storage class Real # # Abort a multipart upload # # @param [String] bucket_name Name of bucket to abort multipart upload on # @param [String] object_name Name of object to abort multipart upload on # @param [String] upload_id Id of upload to add part to # # @see https://help.aliyun.com/document_detail/31996.html # def abort_multipart_upload(bucket_name, object_name, upload_id) @oss_protocol.abort_multipart_upload(bucket_name, object_name, upload_id) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-aliyun-0.4.0 | lib/fog/aliyun/requests/storage/abort_multipart_upload.rb |
fog-aliyun-0.3.19 | lib/fog/aliyun/requests/storage/abort_multipart_upload.rb |