azure-storage-blob 12.20.0__py3-none-any.whl → 12.21.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- azure/storage/blob/_blob_client.py +53 -48
- azure/storage/blob/_blob_service_client.py +11 -11
- azure/storage/blob/_container_client.py +22 -20
- azure/storage/blob/_download.py +277 -167
- azure/storage/blob/_generated/_azure_blob_storage.py +1 -1
- azure/storage/blob/_generated/_configuration.py +2 -2
- azure/storage/blob/_generated/_patch.py +2 -0
- azure/storage/blob/_generated/_serialization.py +1 -1
- azure/storage/blob/_generated/aio/_azure_blob_storage.py +1 -1
- azure/storage/blob/_generated/aio/_configuration.py +2 -2
- azure/storage/blob/_generated/aio/_patch.py +2 -0
- azure/storage/blob/_generated/aio/operations/_append_blob_operations.py +10 -5
- azure/storage/blob/_generated/aio/operations/_blob_operations.py +45 -26
- azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +12 -7
- azure/storage/blob/_generated/aio/operations/_container_operations.py +39 -20
- azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +15 -10
- azure/storage/blob/_generated/aio/operations/_patch.py +3 -0
- azure/storage/blob/_generated/aio/operations/_service_operations.py +28 -10
- azure/storage/blob/_generated/models/_patch.py +3 -0
- azure/storage/blob/_generated/operations/_append_blob_operations.py +14 -9
- azure/storage/blob/_generated/operations/_blob_operations.py +76 -51
- azure/storage/blob/_generated/operations/_block_blob_operations.py +18 -13
- azure/storage/blob/_generated/operations/_container_operations.py +64 -39
- azure/storage/blob/_generated/operations/_page_blob_operations.py +24 -19
- azure/storage/blob/_generated/operations/_patch.py +3 -0
- azure/storage/blob/_generated/operations/_service_operations.py +43 -19
- azure/storage/blob/_generated/py.typed +1 -0
- azure/storage/blob/_lease.py +5 -5
- azure/storage/blob/_models.py +1 -1
- azure/storage/blob/_serialize.py +1 -0
- azure/storage/blob/_shared/authentication.py +62 -4
- azure/storage/blob/_shared/base_client.py +1 -1
- azure/storage/blob/_shared/base_client_async.py +3 -2
- azure/storage/blob/_version.py +1 -1
- azure/storage/blob/aio/_blob_client_async.py +49 -46
- azure/storage/blob/aio/_blob_service_client_async.py +10 -10
- azure/storage/blob/aio/_container_client_async.py +22 -19
- azure/storage/blob/aio/_download_async.py +317 -209
- azure/storage/blob/aio/_lease_async.py +5 -5
- {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.21.0.dist-info}/METADATA +6 -6
- {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.21.0.dist-info}/RECORD +44 -43
- {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.21.0.dist-info}/WHEEL +1 -1
- {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.21.0.dist-info}/LICENSE +0 -0
- {azure_storage_blob-12.20.0.dist-info → azure_storage_blob-12.21.0.dist-info}/top_level.txt +0 -0
@@ -91,7 +91,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
91
91
|
|
92
92
|
For more optional configuration, please click
|
93
93
|
`here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
94
|
-
#optional-configuration>`
|
94
|
+
#optional-configuration>`__.
|
95
95
|
|
96
96
|
:param str account_url:
|
97
97
|
The URI to the storage account. In order to create a client given the full URI to the blob,
|
@@ -522,9 +522,9 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
522
522
|
:param str source_url:
|
523
523
|
A URL of up to 2 KB in length that specifies a file or blob.
|
524
524
|
The value should be URL-encoded as it would appear in a request URI.
|
525
|
-
|
526
|
-
|
527
|
-
is public, no authentication is required.
|
525
|
+
The source must either be public or must be authenticated via a shared
|
526
|
+
access signature as part of the url or using the source_authorization keyword.
|
527
|
+
If the source is public, no authentication is required.
|
528
528
|
Examples:
|
529
529
|
https://myaccount.blob.core.windows.net/mycontainer/myblob
|
530
530
|
|
@@ -541,7 +541,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
541
541
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
542
542
|
and tag values must be between 0 and 256 characters.
|
543
543
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
544
|
-
space (
|
544
|
+
space (' '), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
545
545
|
:paramtype tags: dict(str, str)
|
546
546
|
:keyword bytearray source_content_md5:
|
547
547
|
Specify the md5 that is used to verify the integrity of the source bytes.
|
@@ -589,7 +589,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
589
589
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
590
590
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
591
591
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
592
|
-
#other-client--per-operation-configuration>`
|
592
|
+
#other-client--per-operation-configuration>`__.
|
593
593
|
:keyword ~azure.storage.blob.ContentSettings content_settings:
|
594
594
|
ContentSettings object used to set blob properties. Used to set content type, encoding,
|
595
595
|
language, disposition, md5, and cache control.
|
@@ -645,7 +645,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
645
645
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
646
646
|
and tag values must be between 0 and 256 characters.
|
647
647
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
648
|
-
space (
|
648
|
+
space (' '), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
649
649
|
|
650
650
|
.. versionadded:: 12.4.0
|
651
651
|
|
@@ -751,7 +751,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
751
751
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
752
752
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
753
753
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
754
|
-
#other-client--per-operation-configuration>`
|
754
|
+
#other-client--per-operation-configuration>`__. This method may make multiple calls to the service and
|
755
755
|
the timeout will apply to each call individually.
|
756
756
|
:returns: Blob-updated property dict (Etag and last modified)
|
757
757
|
:rtype: dict[str, Any]
|
@@ -870,6 +870,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
870
870
|
value that, when present, specifies the version of the blob to download.
|
871
871
|
|
872
872
|
.. versionadded:: 12.4.0
|
873
|
+
|
873
874
|
This keyword argument was introduced in API version '2019-12-12'.
|
874
875
|
|
875
876
|
:keyword bool validate_content:
|
@@ -928,7 +929,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
928
929
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
929
930
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
930
931
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
931
|
-
#other-client--per-operation-configuration>`
|
932
|
+
#other-client--per-operation-configuration>`__. This method may make multiple calls to the service and
|
932
933
|
the timeout will apply to each call individually.
|
933
934
|
multiple calls to the Azure service and the timeout will apply to
|
934
935
|
each call individually.
|
@@ -1084,7 +1085,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1084
1085
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1085
1086
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1086
1087
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1087
|
-
#other-client--per-operation-configuration>`
|
1088
|
+
#other-client--per-operation-configuration>`__.
|
1088
1089
|
:returns: A streaming object (BlobQueryReader)
|
1089
1090
|
:rtype: ~azure.storage.blob.BlobQueryReader
|
1090
1091
|
|
@@ -1167,6 +1168,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1167
1168
|
value that, when present, specifies the version of the blob to delete.
|
1168
1169
|
|
1169
1170
|
.. versionadded:: 12.4.0
|
1171
|
+
|
1170
1172
|
This keyword argument was introduced in API version '2019-12-12'.
|
1171
1173
|
|
1172
1174
|
:keyword lease:
|
@@ -1202,7 +1204,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1202
1204
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1203
1205
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1204
1206
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1205
|
-
#other-client--per-operation-configuration>`
|
1207
|
+
#other-client--per-operation-configuration>`__.
|
1206
1208
|
:rtype: None
|
1207
1209
|
|
1208
1210
|
.. admonition:: Example:
|
@@ -1237,7 +1239,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1237
1239
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1238
1240
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1239
1241
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1240
|
-
#other-client--per-operation-configuration>`
|
1242
|
+
#other-client--per-operation-configuration>`__.
|
1241
1243
|
:rtype: None
|
1242
1244
|
|
1243
1245
|
.. admonition:: Example:
|
@@ -1269,7 +1271,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1269
1271
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1270
1272
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1271
1273
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1272
|
-
#other-client--per-operation-configuration>`
|
1274
|
+
#other-client--per-operation-configuration>`__.
|
1273
1275
|
:returns: boolean
|
1274
1276
|
:rtype: bool
|
1275
1277
|
"""
|
@@ -1304,6 +1306,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1304
1306
|
value that, when present, specifies the version of the blob to get properties.
|
1305
1307
|
|
1306
1308
|
.. versionadded:: 12.4.0
|
1309
|
+
|
1307
1310
|
This keyword argument was introduced in API version '2019-12-12'.
|
1308
1311
|
|
1309
1312
|
:keyword ~datetime.datetime if_modified_since:
|
@@ -1339,7 +1342,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1339
1342
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1340
1343
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1341
1344
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1342
|
-
#other-client--per-operation-configuration>`
|
1345
|
+
#other-client--per-operation-configuration>`__.
|
1343
1346
|
:returns: BlobProperties
|
1344
1347
|
:rtype: ~azure.storage.blob.BlobProperties
|
1345
1348
|
|
@@ -1449,7 +1452,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1449
1452
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1450
1453
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1451
1454
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1452
|
-
#other-client--per-operation-configuration>`
|
1455
|
+
#other-client--per-operation-configuration>`__.
|
1453
1456
|
:returns: Blob-updated property dict (Etag and last modified)
|
1454
1457
|
:rtype: Dict[str, Any]
|
1455
1458
|
"""
|
@@ -1540,7 +1543,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1540
1543
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1541
1544
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1542
1545
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1543
|
-
#other-client--per-operation-configuration>`
|
1546
|
+
#other-client--per-operation-configuration>`__.
|
1544
1547
|
:returns: Blob-updated property dict (Etag and last modified)
|
1545
1548
|
:rtype: Dict[str, Union[str, datetime]]
|
1546
1549
|
"""
|
@@ -1569,7 +1572,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1569
1572
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1570
1573
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1571
1574
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1572
|
-
#other-client--per-operation-configuration>`
|
1575
|
+
#other-client--per-operation-configuration>`__.
|
1573
1576
|
:returns: Key value pairs of blob tags.
|
1574
1577
|
:rtype: Dict[str, str]
|
1575
1578
|
"""
|
@@ -1591,7 +1594,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1591
1594
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1592
1595
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1593
1596
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1594
|
-
#other-client--per-operation-configuration>`
|
1597
|
+
#other-client--per-operation-configuration>`__.
|
1595
1598
|
:returns: Key value pairs of blob tags.
|
1596
1599
|
:rtype: Dict[str, str]
|
1597
1600
|
"""
|
@@ -1613,7 +1616,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1613
1616
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1614
1617
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1615
1618
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1616
|
-
#other-client--per-operation-configuration>`
|
1619
|
+
#other-client--per-operation-configuration>`__.
|
1617
1620
|
:returns: Key value pairs of blob tags.
|
1618
1621
|
:rtype: Dict[str, Union[str, datetime, bool]]
|
1619
1622
|
"""
|
@@ -1715,7 +1718,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1715
1718
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
1716
1719
|
and tag values must be between 0 and 256 characters.
|
1717
1720
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
1718
|
-
space (
|
1721
|
+
space (' '), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
1719
1722
|
|
1720
1723
|
.. versionadded:: 12.4.0
|
1721
1724
|
|
@@ -1775,7 +1778,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1775
1778
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1776
1779
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1777
1780
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1778
|
-
#other-client--per-operation-configuration>`
|
1781
|
+
#other-client--per-operation-configuration>`__.
|
1779
1782
|
:returns: Blob-updated property dict (Etag and last modified).
|
1780
1783
|
:rtype: dict[str, Any]
|
1781
1784
|
"""
|
@@ -1857,7 +1860,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1857
1860
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
1858
1861
|
and tag values must be between 0 and 256 characters.
|
1859
1862
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
1860
|
-
space (
|
1863
|
+
space (' '), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
1861
1864
|
|
1862
1865
|
.. versionadded:: 12.4.0
|
1863
1866
|
|
@@ -1913,7 +1916,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1913
1916
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1914
1917
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1915
1918
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1916
|
-
#other-client--per-operation-configuration>`
|
1919
|
+
#other-client--per-operation-configuration>`__.
|
1917
1920
|
:returns: Blob-updated property dict (Etag and last modified).
|
1918
1921
|
:rtype: dict[str, Any]
|
1919
1922
|
"""
|
@@ -2012,7 +2015,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2012
2015
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2013
2016
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2014
2017
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2015
|
-
#other-client--per-operation-configuration>`
|
2018
|
+
#other-client--per-operation-configuration>`__.
|
2016
2019
|
:returns: Blob-updated property dict (Snapshot ID, Etag, and last modified).
|
2017
2020
|
:rtype: dict[str, Any]
|
2018
2021
|
|
@@ -2171,7 +2174,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2171
2174
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
2172
2175
|
and tag values must be between 0 and 256 characters.
|
2173
2176
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
2174
|
-
space (
|
2177
|
+
space (' '), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_).
|
2175
2178
|
|
2176
2179
|
The (case-sensitive) literal "COPY" can instead be passed to copy tags from the source blob.
|
2177
2180
|
This option is only available when `incremental_copy=False` and `requires_sync=True`.
|
@@ -2243,7 +2246,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2243
2246
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2244
2247
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2245
2248
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2246
|
-
#other-client--per-operation-configuration>`
|
2249
|
+
#other-client--per-operation-configuration>`__.
|
2247
2250
|
:keyword ~azure.storage.blob.PremiumPageBlobTier premium_page_blob_tier:
|
2248
2251
|
A page blob tier value to set the blob to. The tier correlates to the size of the
|
2249
2252
|
blob and number of allowed IOPS. This is only applicable to page blobs on
|
@@ -2390,7 +2393,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2390
2393
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2391
2394
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2392
2395
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2393
|
-
#other-client--per-operation-configuration>`
|
2396
|
+
#other-client--per-operation-configuration>`__.
|
2394
2397
|
:returns: A BlobLeaseClient object.
|
2395
2398
|
:rtype: ~azure.storage.blob.BlobLeaseClient
|
2396
2399
|
|
@@ -2430,18 +2433,20 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2430
2433
|
value that, when present, specifies the version of the blob to download.
|
2431
2434
|
|
2432
2435
|
.. versionadded:: 12.4.0
|
2436
|
+
|
2433
2437
|
This keyword argument was introduced in API version '2019-12-12'.
|
2434
2438
|
:keyword str if_tags_match_condition:
|
2435
2439
|
Specify a SQL where clause on blob tags to operate only on blob with a matching value.
|
2436
2440
|
eg. ``\"\\\"tagname\\\"='my tag'\"``
|
2437
2441
|
|
2438
2442
|
.. versionadded:: 12.4.0
|
2443
|
+
|
2439
2444
|
:keyword int timeout:
|
2440
2445
|
Sets the server-side timeout for the operation in seconds. For more details see
|
2441
2446
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2442
2447
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2443
2448
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2444
|
-
#other-client--per-operation-configuration>`
|
2449
|
+
#other-client--per-operation-configuration>`__.
|
2445
2450
|
:keyword lease:
|
2446
2451
|
Required if the blob has an active lease. Value can be a BlobLeaseClient object
|
2447
2452
|
or the lease ID as a string.
|
@@ -2561,7 +2566,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2561
2566
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2562
2567
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2563
2568
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2564
|
-
#other-client--per-operation-configuration>`
|
2569
|
+
#other-client--per-operation-configuration>`__.
|
2565
2570
|
:returns: Blob property dict.
|
2566
2571
|
:rtype: dict[str, Any]
|
2567
2572
|
"""
|
@@ -2665,7 +2670,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2665
2670
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2666
2671
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2667
2672
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2668
|
-
#other-client--per-operation-configuration>`
|
2673
|
+
#other-client--per-operation-configuration>`__.
|
2669
2674
|
:keyword str source_authorization:
|
2670
2675
|
Authenticate as a service principal using a client secret to access a source blob. Ensure "bearer " is
|
2671
2676
|
the prefix of the source_authorization string.
|
@@ -2718,7 +2723,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2718
2723
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2719
2724
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2720
2725
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2721
|
-
#other-client--per-operation-configuration>`
|
2726
|
+
#other-client--per-operation-configuration>`__.
|
2722
2727
|
:returns: A tuple of two lists - committed and uncommitted blocks
|
2723
2728
|
:rtype: tuple(list(~azure.storage.blob.BlobBlock), list(~azure.storage.blob.BlobBlock))
|
2724
2729
|
"""
|
@@ -2830,7 +2835,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2830
2835
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
2831
2836
|
and tag values must be between 0 and 256 characters.
|
2832
2837
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
2833
|
-
space (
|
2838
|
+
space (' '), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
2834
2839
|
|
2835
2840
|
.. versionadded:: 12.4.0
|
2836
2841
|
|
@@ -2901,7 +2906,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2901
2906
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2902
2907
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2903
2908
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2904
|
-
#other-client--per-operation-configuration>`
|
2909
|
+
#other-client--per-operation-configuration>`__.
|
2905
2910
|
:returns: Blob-updated property dict (Etag and last modified).
|
2906
2911
|
:rtype: dict(str, Any)
|
2907
2912
|
"""
|
@@ -2936,7 +2941,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2936
2941
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2937
2942
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2938
2943
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2939
|
-
#other-client--per-operation-configuration>`
|
2944
|
+
#other-client--per-operation-configuration>`__.
|
2940
2945
|
:keyword lease:
|
2941
2946
|
Required if the blob has an active lease. Value can be a BlobLeaseClient object
|
2942
2947
|
or the lease ID as a string.
|
@@ -2988,7 +2993,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2988
2993
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
2989
2994
|
and tag values must be between 0 and 256 characters.
|
2990
2995
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
2991
|
-
space (
|
2996
|
+
space (' '), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
2992
2997
|
:type tags: dict(str, str)
|
2993
2998
|
:keyword str version_id:
|
2994
2999
|
The version id parameter is an opaque DateTime
|
@@ -3012,7 +3017,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3012
3017
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3013
3018
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3014
3019
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3015
|
-
#other-client--per-operation-configuration>`
|
3020
|
+
#other-client--per-operation-configuration>`__.
|
3016
3021
|
:returns: Blob-updated property dict (Etag and last modified)
|
3017
3022
|
:rtype: Dict[str, Any]
|
3018
3023
|
"""
|
@@ -3060,7 +3065,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3060
3065
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3061
3066
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3062
3067
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3063
|
-
#other-client--per-operation-configuration>`
|
3068
|
+
#other-client--per-operation-configuration>`__.
|
3064
3069
|
:returns: Key value pairs of blob tags.
|
3065
3070
|
:rtype: Dict[str, str]
|
3066
3071
|
"""
|
@@ -3165,7 +3170,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3165
3170
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3166
3171
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3167
3172
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3168
|
-
#other-client--per-operation-configuration>`
|
3173
|
+
#other-client--per-operation-configuration>`__.
|
3169
3174
|
:returns:
|
3170
3175
|
A tuple of two lists of page ranges as dictionaries with 'start' and 'end' keys.
|
3171
3176
|
The first element are filled page ranges, the 2nd element is cleared page ranges.
|
@@ -3257,7 +3262,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3257
3262
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3258
3263
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3259
3264
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3260
|
-
#other-client--per-operation-configuration>`
|
3265
|
+
#other-client--per-operation-configuration>`__.
|
3261
3266
|
:returns: An iterable (auto-paging) of PageRange.
|
3262
3267
|
:rtype: ~azure.core.paging.ItemPaged[~azure.storage.blob.PageRange]
|
3263
3268
|
"""
|
@@ -3340,7 +3345,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3340
3345
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3341
3346
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3342
3347
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3343
|
-
#other-client--per-operation-configuration>`
|
3348
|
+
#other-client--per-operation-configuration>`__.
|
3344
3349
|
:returns:
|
3345
3350
|
A tuple of two lists of page ranges as dictionaries with 'start' and 'end' keys.
|
3346
3351
|
The first element are filled page ranges, the 2nd element is cleared page ranges.
|
@@ -3417,7 +3422,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3417
3422
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3418
3423
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3419
3424
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3420
|
-
#other-client--per-operation-configuration>`
|
3425
|
+
#other-client--per-operation-configuration>`__.
|
3421
3426
|
:returns: Blob-updated property dict (Etag and last modified).
|
3422
3427
|
:rtype: dict(str, Any)
|
3423
3428
|
"""
|
@@ -3499,7 +3504,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3499
3504
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3500
3505
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3501
3506
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3502
|
-
#other-client--per-operation-configuration>`
|
3507
|
+
#other-client--per-operation-configuration>`__.
|
3503
3508
|
:returns: Blob-updated property dict (Etag and last modified).
|
3504
3509
|
:rtype: dict(str, Any)
|
3505
3510
|
"""
|
@@ -3644,7 +3649,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3644
3649
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3645
3650
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3646
3651
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3647
|
-
#other-client--per-operation-configuration>`
|
3652
|
+
#other-client--per-operation-configuration>`__.
|
3648
3653
|
:returns: Blob-updated property dict (Etag and last modified).
|
3649
3654
|
:rtype: dict(str, Any)
|
3650
3655
|
"""
|
@@ -3820,7 +3825,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3820
3825
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3821
3826
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3822
3827
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3823
|
-
#other-client--per-operation-configuration>`
|
3828
|
+
#other-client--per-operation-configuration>`__.
|
3824
3829
|
:keyword str source_authorization:
|
3825
3830
|
Authenticate as a service principal using a client secret to access a source blob. Ensure "bearer " is
|
3826
3831
|
the prefix of the source_authorization string.
|
@@ -3938,7 +3943,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3938
3943
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3939
3944
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3940
3945
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3941
|
-
#other-client--per-operation-configuration>`
|
3946
|
+
#other-client--per-operation-configuration>`__.
|
3942
3947
|
:returns: Blob-updated property dict (Etag and last modified).
|
3943
3948
|
:rtype: dict(str, Any)
|
3944
3949
|
"""
|
@@ -4082,7 +4087,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
4082
4087
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
4083
4088
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
4084
4089
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
4085
|
-
#other-client--per-operation-configuration>`
|
4090
|
+
#other-client--per-operation-configuration>`__.
|
4086
4091
|
:returns: Blob-updated property dict (Etag, last modified, append offset, committed block count).
|
4087
4092
|
:rtype: dict(str, Any)
|
4088
4093
|
"""
|
@@ -4250,7 +4255,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
4250
4255
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
4251
4256
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
4252
4257
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
4253
|
-
#other-client--per-operation-configuration>`
|
4258
|
+
#other-client--per-operation-configuration>`__.
|
4254
4259
|
:keyword str source_authorization:
|
4255
4260
|
Authenticate as a service principal using a client secret to access a source blob. Ensure "bearer " is
|
4256
4261
|
the prefix of the source_authorization string.
|
@@ -4330,7 +4335,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
4330
4335
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
4331
4336
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
4332
4337
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
4333
|
-
#other-client--per-operation-configuration>`
|
4338
|
+
#other-client--per-operation-configuration>`__.
|
4334
4339
|
:returns: Blob-updated property dict (Etag, last modified, append offset, committed block count).
|
4335
4340
|
:rtype: dict(str, Any)
|
4336
4341
|
"""
|
@@ -64,7 +64,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
64
64
|
|
65
65
|
For more optional configuration, please click
|
66
66
|
`here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
67
|
-
#optional-configuration>`
|
67
|
+
#optional-configuration>`__.
|
68
68
|
|
69
69
|
:param str account_url:
|
70
70
|
The URL to the blob storage account. Any other entities included
|
@@ -216,7 +216,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
216
216
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
217
217
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
218
218
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
219
|
-
#other-client--per-operation-configuration>`
|
219
|
+
#other-client--per-operation-configuration>`__.
|
220
220
|
:returns: The user delegation key.
|
221
221
|
:rtype: ~azure.storage.blob.UserDelegationKey
|
222
222
|
"""
|
@@ -282,7 +282,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
282
282
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
283
283
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
284
284
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
285
|
-
#other-client--per-operation-configuration>`
|
285
|
+
#other-client--per-operation-configuration>`__.
|
286
286
|
:returns: The blob service stats.
|
287
287
|
:rtype: Dict[str, Any]
|
288
288
|
|
@@ -314,7 +314,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
314
314
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
315
315
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
316
316
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
317
|
-
#other-client--per-operation-configuration>`
|
317
|
+
#other-client--per-operation-configuration>`__.
|
318
318
|
:returns: An object containing blob service properties such as
|
319
319
|
analytics logging, hour/minute metrics, cors rules, etc.
|
320
320
|
:rtype: Dict[str, Any]
|
@@ -385,7 +385,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
385
385
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
386
386
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
387
387
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
388
|
-
#other-client--per-operation-configuration>`
|
388
|
+
#other-client--per-operation-configuration>`__.
|
389
389
|
:rtype: None
|
390
390
|
|
391
391
|
.. admonition:: Example:
|
@@ -450,7 +450,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
450
450
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
451
451
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
452
452
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
453
|
-
#other-client--per-operation-configuration>`
|
453
|
+
#other-client--per-operation-configuration>`__.
|
454
454
|
:returns: An iterable (auto-paging) of ContainerProperties.
|
455
455
|
:rtype: ~azure.core.paging.ItemPaged[~azure.storage.blob.ContainerProperties]
|
456
456
|
|
@@ -505,7 +505,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
505
505
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
506
506
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
507
507
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
508
|
-
#other-client--per-operation-configuration>`
|
508
|
+
#other-client--per-operation-configuration>`__.
|
509
509
|
:returns: An iterable (auto-paging) response of BlobProperties.
|
510
510
|
:rtype: ~azure.core.paging.ItemPaged[~azure.storage.blob.FilteredBlob]
|
511
511
|
"""
|
@@ -555,7 +555,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
555
555
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
556
556
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
557
557
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
558
|
-
#other-client--per-operation-configuration>`
|
558
|
+
#other-client--per-operation-configuration>`__.
|
559
559
|
:returns: A container client to interact with the newly created container.
|
560
560
|
:rtype: ~azure.storage.blob.ContainerClient
|
561
561
|
|
@@ -617,7 +617,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
617
617
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
618
618
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
619
619
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
620
|
-
#other-client--per-operation-configuration>`
|
620
|
+
#other-client--per-operation-configuration>`__.
|
621
621
|
|
622
622
|
.. admonition:: Example:
|
623
623
|
|
@@ -656,7 +656,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
656
656
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
657
657
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
658
658
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
659
|
-
#other-client--per-operation-configuration>`
|
659
|
+
#other-client--per-operation-configuration>`__.
|
660
660
|
:returns: A container client for the renamed container.
|
661
661
|
:rtype: ~azure.storage.blob.ContainerClient
|
662
662
|
"""
|
@@ -692,7 +692,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
692
692
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
693
693
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
694
694
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
695
|
-
#other-client--per-operation-configuration>`
|
695
|
+
#other-client--per-operation-configuration>`__.
|
696
696
|
:returns: The undeleted ContainerClient.
|
697
697
|
:rtype: ~azure.storage.blob.ContainerClient
|
698
698
|
"""
|