This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
Implemented put_block and exported options
Pre-release
Pre-release
Implemented features:
- Added support for
put_block
inBlob
. - Added support for
filter
inBlob::list
. Now you can filter the blobs to find specifying the starting string. - Added support for
timeout
inBlob::list
. - Added support for
timeout
,prefix
andmax_results
inContainer::list
. - Added support for
max_results
inContainer::list
. Now you can limit how many containers could be returned by a single call. - Added support for
next_marker
inContainer::list
. Now you can continue enumerating your containers in subsequent calls.
Refactoring:
- Moved
Container::list
options in a separate structure (azure::storage::container::ListContainerOptions
). - Moved
Blob::put_page
options in a separate structure (azure::storage::blob::PutPageOptions
).
Bugfixes:
- Corrected the format bug in
azure::core::range::Range
andazure::core::range::ba512_range::BA512Range
. Previously the string returned was
formatted as{}/{}
which is invalid for thex-ms-range
header. Now the format isbytes={}-{}
as expected. I still need to figure out if
I need to change theFromStr
trait too to match the change.
Removed methods:
- Removed
ListBlobOptions::new
as it was just useless boilerplate.