@@ -1042,6 +1042,13 @@ def download_blob(self, blob, offset=None, length=None, **kwargs):
1042
1042
:param int length:
1043
1043
Number of bytes to read from the stream. This is optional, but
1044
1044
should be supplied for optimal performance.
1045
+ :keyword str version_id:
1046
+ The version id parameter is an opaque DateTime
1047
+ value that, when present, specifies the version of the blob to download.
1048
+
1049
+ .. versionadded:: 12.4.0
1050
+ This keyword argument was introduced in API version '2019-12-12'.
1051
+
1045
1052
:keyword bool validate_content:
1046
1053
If true, calculates an MD5 hash for each chunk of the blob. The storage
1047
1054
service checks the hash of the content that has arrived with the hash
@@ -1232,6 +1239,8 @@ def delete_blobs(self, *blobs, **kwargs):
1232
1239
Soft deleted blobs or snapshots are accessible through :func:`list_blobs()` specifying `include=["deleted"]`
1233
1240
Soft-deleted blobs or snapshots can be restored using :func:`~BlobClient.undelete()`
1234
1241
1242
+ The maximum number of blobs that can be deleted in a single request is 256.
1243
+
1235
1244
:param blobs:
1236
1245
The blobs to delete. This can be a single blob, or multiple values can
1237
1246
be supplied, where each value is either the name of the blob (str) or BlobProperties.
@@ -1406,6 +1415,8 @@ def set_standard_blob_tier_blobs(
1406
1415
A block blob's tier determines Hot/Cool/Archive storage type.
1407
1416
This operation does not update the blob's ETag.
1408
1417
1418
+ The maximum number of blobs that can be updated in a single request is 256.
1419
+
1409
1420
:param standard_blob_tier:
1410
1421
Indicates the tier to be set on all blobs. Options include 'Hot', 'Cool',
1411
1422
'Archive'. The hot tier is optimized for storing data that is accessed
@@ -1474,6 +1485,8 @@ def set_premium_page_blob_tier_blobs(
1474
1485
# type: (...) -> Iterator[HttpResponse]
1475
1486
"""Sets the page blob tiers on all blobs. This API is only supported for page blobs on premium accounts.
1476
1487
1488
+ The maximum number of blobs that can be updated in a single request is 256.
1489
+
1477
1490
:param premium_page_blob_tier:
1478
1491
A page blob tier value to set the blob to. The tier correlates to the size of the
1479
1492
blob and number of allowed IOPS. This is only applicable to page blobs on
0 commit comments