@@ -1042,6 +1042,13 @@ def download_blob(self, blob, offset=None, length=None, **kwargs):
10421042 :param int length:
10431043 Number of bytes to read from the stream. This is optional, but
10441044 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+
10451052 :keyword bool validate_content:
10461053 If true, calculates an MD5 hash for each chunk of the blob. The storage
10471054 service checks the hash of the content that has arrived with the hash
@@ -1232,6 +1239,8 @@ def delete_blobs(self, *blobs, **kwargs):
12321239 Soft deleted blobs or snapshots are accessible through :func:`list_blobs()` specifying `include=["deleted"]`
12331240 Soft-deleted blobs or snapshots can be restored using :func:`~BlobClient.undelete()`
12341241
1242+ The maximum number of blobs that can be deleted in a single request is 256.
1243+
12351244 :param blobs:
12361245 The blobs to delete. This can be a single blob, or multiple values can
12371246 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(
14061415 A block blob's tier determines Hot/Cool/Archive storage type.
14071416 This operation does not update the blob's ETag.
14081417
1418+ The maximum number of blobs that can be updated in a single request is 256.
1419+
14091420 :param standard_blob_tier:
14101421 Indicates the tier to be set on all blobs. Options include 'Hot', 'Cool',
14111422 'Archive'. The hot tier is optimized for storing data that is accessed
@@ -1474,6 +1485,8 @@ def set_premium_page_blob_tier_blobs(
14741485 # type: (...) -> Iterator[HttpResponse]
14751486 """Sets the page blob tiers on all blobs. This API is only supported for page blobs on premium accounts.
14761487
1488+ The maximum number of blobs that can be updated in a single request is 256.
1489+
14771490 :param premium_page_blob_tier:
14781491 A page blob tier value to set the blob to. The tier correlates to the size of the
14791492 blob and number of allowed IOPS. This is only applicable to page blobs on
0 commit comments