multipart_uploads

Glacier.Vault.multipart_uploads

A collection of MultipartUpload resources.A MultipartUpload Collection will include all resources by default, and extreme caution should be taken when performing actions on all resources.

all()

Creates an iterable of all MultipartUpload resources in the collection.

See also: AWS API Documentation

Request Syntax

multipart_upload_iterator = vault.multipart_uploads.all()
Return type
list(glacier.MultipartUpload)
Returns
A list of MultipartUpload resources
filter(**kwargs)

Creates an iterable of all MultipartUpload resources in the collection filtered by kwargs passed to method. A MultipartUpload collection will include all resources by default if no filters are provided, and extreme caution should be taken when performing actions on all resources.

See also: AWS API Documentation

Request Syntax

multipart_upload_iterator = vault.multipart_uploads.filter(
    marker='string',
    limit='string'
)
Parameters
  • marker (string) -- An opaque string used for pagination. This value specifies the upload at which the listing of uploads should begin. Get the marker value from a previous List Uploads response. You need only include the marker if you are continuing the pagination of results started in a previous List Uploads request.
  • limit (string) -- Specifies the maximum number of uploads returned in the response body. If this value is not specified, the List Uploads operation returns up to 50 uploads.
Return type

list(glacier.MultipartUpload)

Returns

A list of MultipartUpload resources

limit(**kwargs)

Creates an iterable up to a specified amount of MultipartUpload resources in the collection.

See also: AWS API Documentation

Request Syntax

multipart_upload_iterator = vault.multipart_uploads.limit(
    count=123
)
Parameters
count (integer) -- The limit to the number of resources in the iterable.
Return type
list(glacier.MultipartUpload)
Returns
A list of MultipartUpload resources
page_size(**kwargs)

Creates an iterable of all MultipartUpload resources in the collection, but limits the number of items returned by each service call by the specified amount.

See also: AWS API Documentation

Request Syntax

multipart_upload_iterator = vault.multipart_uploads.page_size(
    count=123
)
Parameters
count (integer) -- The number of items returned by each service call
Return type
list(glacier.MultipartUpload)
Returns
A list of MultipartUpload resources