Sha256: 6eb320aff2bac82f2f34c0cbfda419da61b2420a5b64bbdc3e944251736b18af
Contents?: true
Size: 557 Bytes
Versions: 2
Compression:
Stored size: 557 Bytes
Contents
module Fog module Aliyun class Storage class Real # Initiate a multipart upload # # @param bucket_name [String] Name of bucket to create # @param object_name [String] Name of object to create # @param options [Hash] # # @see https://help.aliyun.com/document_detail/31992.html # def initiate_multipart_upload(bucket_name, object_name, options = {}) @oss_protocol.initiate_multipart_upload(bucket_name, object_name, options) 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/initiate_multipart_upload.rb |
fog-aliyun-0.3.19 | lib/fog/aliyun/requests/storage/initiate_multipart_upload.rb |