Class: Aws::S3::MultipartUpload
- Inherits:
-
Object
- Object
- Aws::S3::MultipartUpload
- Extended by:
- Deprecations
- Defined in:
- lib/aws-sdk-s3/multipart_upload.rb,
lib/aws-sdk-s3/customizations/multipart_upload.rb
Defined Under Namespace
Classes: Collection
Read-Only Attributes collapse
- #bucket_name ⇒ String
- #id ⇒ String
-
#initiated ⇒ Time
Date and time at which the multipart upload was initiated.
-
#initiator ⇒ Types::Initiator
Identifies who initiated the multipart upload.
-
#key ⇒ String
Key of the object for which the multipart upload was initiated.
- #object_key ⇒ String
-
#owner ⇒ Types::Owner
Specifies the owner of the object that is part of the multipart upload.
-
#storage_class ⇒ String
The class of storage used to store the object.
-
#upload_id ⇒ String
Upload ID that identifies the multipart upload.
Actions collapse
- #abort(options = {}) ⇒ Types::AbortMultipartUploadOutput
-
#complete(options = {}) ⇒ Object
Completes the upload, requires a list of completed parts.
Associations collapse
- #identifiers ⇒ Object deprecated private Deprecated.
- #object ⇒ Object
- #part(part_number) ⇒ MultipartUploadPart
- #parts(options = {}) ⇒ MultipartUploadPart::Collection
Instance Method Summary collapse
- #basic_complete ⇒ Object
- #client ⇒ Client
-
#data ⇒ Types::MultipartUpload
Returns the data for this MultipartUpload.
-
#data_loaded? ⇒ Boolean
Returns ‘true` if this resource is loaded.
-
#initialize(*args) ⇒ MultipartUpload
constructor
A new instance of MultipartUpload.
- #load ⇒ Object (also: #reload) private
-
#wait_until(options = {}) {|resource| ... } ⇒ Resource
deprecated
Deprecated.
Use [Aws::S3::Client] #wait_until instead
Constructor Details
#initialize(bucket_name, object_key, id, options = {}) ⇒ MultipartUpload #initialize(options = {}) ⇒ MultipartUpload
Returns a new instance of MultipartUpload.
24 25 26 27 28 29 30 31 32 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 24 def initialize(*args) = Hash === args.last ? args.pop.dup : {} @bucket_name = extract_bucket_name(args, ) @object_key = extract_object_key(args, ) @id = extract_id(args, ) @data = .delete(:data) @client = .delete(:client) || Client.new() @waiter_block_warned = false end |
Instance Method Details
#abort(options = {}) ⇒ Types::AbortMultipartUploadOutput
234 235 236 237 238 239 240 241 242 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 234 def abort( = {}) = .merge( bucket: @bucket_name, key: @object_key, upload_id: @id ) resp = @client.abort_multipart_upload() resp.data end |
#basic_complete ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/aws-sdk-s3/customizations/multipart_upload.rb', line 5 def complete( = {}) = .merge( bucket: @bucket_name, key: @object_key, upload_id: @id ) resp = @client.complete_multipart_upload() Object.new( bucket_name: @bucket_name, key: @object_key, client: @client ) end |
#bucket_name ⇒ String
37 38 39 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 37 def bucket_name @bucket_name end |
#client ⇒ Client
91 92 93 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 91 def client @client end |
#complete(options = {}) ⇒ Object
Completes the upload, requires a list of completed parts. You can provide the list of parts with ‘:part_number` and `:etag` values.
upload.complete(multipart_upload: { parts: [
{ part_number: 1, etag:'etag1' },
{ part_number: 2, etag:'etag2' },
...
]})
Alternatively, you can pass **‘compute_parts: true`** and the part list will be computed by calling Client#list_parts.
upload.complete(compute_parts: true)
271 272 273 274 275 276 277 278 279 280 281 282 283 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 271 def complete( = {}) = .merge( bucket: @bucket_name, key: @object_key, upload_id: @id ) resp = @client.complete_multipart_upload() Object.new( bucket_name: @bucket_name, key: @object_key, client: @client ) end |
#data ⇒ Types::MultipartUpload
Returns the data for this Aws::S3::MultipartUpload.
106 107 108 109 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 106 def data load unless @data @data end |
#data_loaded? ⇒ Boolean
114 115 116 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 114 def data_loaded? !!@data end |
#id ⇒ String
47 48 49 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 47 def id @id end |
#identifiers ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
353 354 355 356 357 358 359 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 353 def identifiers { bucket_name: @bucket_name, object_key: @object_key, id: @id } end |
#initiated ⇒ Time
Date and time at which the multipart upload was initiated.
65 66 67 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 65 def initiated data[:initiated] end |
#initiator ⇒ Types::Initiator
Identifies who initiated the multipart upload.
84 85 86 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 84 def initiator data[:initiator] end |
#key ⇒ String
Key of the object for which the multipart upload was initiated.
59 60 61 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 59 def key data[:key] end |
#load ⇒ Object Also known as: reload
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
97 98 99 100 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 97 def load msg = "#load is not implemented, data only available via enumeration" raise NotImplementedError, msg end |
#object ⇒ Object
288 289 290 291 292 293 294 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 288 def object Object.new( bucket_name: @bucket_name, key: @object_key, client: @client ) end |
#object_key ⇒ String
42 43 44 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 42 def object_key @object_key end |
#owner ⇒ Types::Owner
Specifies the owner of the object that is part of the multipart upload.
78 79 80 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 78 def owner data[:owner] end |
#part(part_number) ⇒ MultipartUploadPart
298 299 300 301 302 303 304 305 306 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 298 def part(part_number) MultipartUploadPart.new( bucket_name: @bucket_name, object_key: @object_key, multipart_upload_id: @id, part_number: part_number, client: @client ) end |
#parts(options = {}) ⇒ MultipartUploadPart::Collection
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 325 def parts( = {}) batches = Enumerator.new do |y| = .merge( bucket: @bucket_name, key: @object_key, upload_id: @id ) resp = @client.list_parts() resp.each_page do |page| batch = [] page.data.parts.each do |p| batch << MultipartUploadPart.new( bucket_name: [:bucket], object_key: [:key], multipart_upload_id: [:upload_id], part_number: p.part_number, data: p, client: @client ) end y.yield(batch) end end MultipartUploadPart::Collection.new(batches) end |
#storage_class ⇒ String
The class of storage used to store the object.
71 72 73 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 71 def storage_class data[:storage_class] end |
#upload_id ⇒ String
Upload ID that identifies the multipart upload.
53 54 55 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 53 def upload_id data[:upload_id] end |
#wait_until(options = {}) {|resource| ... } ⇒ Resource
Use [Aws::S3::Client] #wait_until instead
The waiting operation is performed on a copy. The original resource remains unchanged.
Waiter polls an API operation until a resource enters a desired state.
## Basic Usage
Waiter will polls until it is successful, it fails by entering a terminal state, or until a maximum number of attempts are made.
# polls in a loop until condition is true
resource.wait_until() {|resource| condition}
## Example
instance.wait_until(max_attempts:10, delay:5) do |instance|
instance.state.name == 'running'
end
## Configuration
You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. The waiting condition is set by passing a block to #wait_until:
# poll for ~25 seconds
resource.wait_until(max_attempts:5,delay:5) {|resource|...}
## Callbacks
You can be notified before each polling attempt and before each delay. If you throw ‘:success` or `:failure` from these callbacks, it will terminate the waiter.
started_at = Time.now
# poll for 1 hour, instead of a number of attempts
proc = Proc.new do |attempts, response|
throw :failure if Time.now - started_at > 3600
end
# disable max attempts
instance.wait_until(before_wait:proc, max_attempts:nil) {...}
## Handling Errors
When a waiter is successful, it returns the Resource. When a waiter fails, it raises an error.
begin
resource.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
# resource did not enter the desired state in time
end
attempts attempt in seconds invoked before each attempt invoked before each wait
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/aws-sdk-s3/multipart_upload.rb', line 198 def wait_until( = {}, &block) self_copy = self.dup attempts = 0 [:max_attempts] = 10 unless .key?(:max_attempts) [:delay] ||= 10 [:poller] = Proc.new do attempts += 1 if block.call(self_copy) [:success, self_copy] else self_copy.reload unless attempts == [:max_attempts] :retry end end Aws::Waiters::Waiter.new().wait({}) end |