azure-storage-blob 12.26.0b1__py3-none-any.whl → 12.27.0b1__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.
Files changed (64) hide show
  1. azure/storage/blob/__init__.py +3 -2
  2. azure/storage/blob/_blob_client.py +43 -38
  3. azure/storage/blob/_blob_client_helpers.py +4 -3
  4. azure/storage/blob/_blob_service_client.py +16 -13
  5. azure/storage/blob/_container_client.py +25 -22
  6. azure/storage/blob/_deserialize.py +1 -1
  7. azure/storage/blob/_download.py +7 -7
  8. azure/storage/blob/_encryption.py +177 -184
  9. azure/storage/blob/_generated/_azure_blob_storage.py +3 -2
  10. azure/storage/blob/_generated/_configuration.py +2 -2
  11. azure/storage/blob/_generated/_utils/__init__.py +6 -0
  12. azure/storage/blob/_generated/{_serialization.py → _utils/serialization.py} +4 -22
  13. azure/storage/blob/_generated/aio/_azure_blob_storage.py +3 -2
  14. azure/storage/blob/_generated/aio/_configuration.py +2 -2
  15. azure/storage/blob/_generated/aio/operations/_append_blob_operations.py +6 -10
  16. azure/storage/blob/_generated/aio/operations/_blob_operations.py +35 -39
  17. azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +9 -13
  18. azure/storage/blob/_generated/aio/operations/_container_operations.py +20 -24
  19. azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +13 -17
  20. azure/storage/blob/_generated/aio/operations/_service_operations.py +10 -14
  21. azure/storage/blob/_generated/models/_models_py3.py +30 -9
  22. azure/storage/blob/_generated/operations/_append_blob_operations.py +11 -15
  23. azure/storage/blob/_generated/operations/_blob_operations.py +60 -64
  24. azure/storage/blob/_generated/operations/_block_blob_operations.py +16 -20
  25. azure/storage/blob/_generated/operations/_container_operations.py +39 -43
  26. azure/storage/blob/_generated/operations/_page_blob_operations.py +23 -27
  27. azure/storage/blob/_generated/operations/_service_operations.py +19 -23
  28. azure/storage/blob/_lease.py +1 -0
  29. azure/storage/blob/_list_blobs_helper.py +1 -1
  30. azure/storage/blob/_quick_query_helper.py +3 -3
  31. azure/storage/blob/_serialize.py +1 -0
  32. azure/storage/blob/_shared/__init__.py +7 -7
  33. azure/storage/blob/_shared/authentication.py +49 -32
  34. azure/storage/blob/_shared/avro/avro_io.py +44 -42
  35. azure/storage/blob/_shared/avro/avro_io_async.py +42 -41
  36. azure/storage/blob/_shared/avro/datafile.py +24 -21
  37. azure/storage/blob/_shared/avro/datafile_async.py +15 -15
  38. azure/storage/blob/_shared/avro/schema.py +196 -217
  39. azure/storage/blob/_shared/base_client.py +81 -59
  40. azure/storage/blob/_shared/base_client_async.py +58 -51
  41. azure/storage/blob/_shared/constants.py +1 -1
  42. azure/storage/blob/_shared/models.py +94 -92
  43. azure/storage/blob/_shared/parser.py +3 -3
  44. azure/storage/blob/_shared/policies.py +186 -147
  45. azure/storage/blob/_shared/policies_async.py +53 -65
  46. azure/storage/blob/_shared/request_handlers.py +50 -45
  47. azure/storage/blob/_shared/response_handlers.py +54 -45
  48. azure/storage/blob/_shared/shared_access_signature.py +65 -73
  49. azure/storage/blob/_shared/uploads.py +56 -49
  50. azure/storage/blob/_shared/uploads_async.py +70 -58
  51. azure/storage/blob/_version.py +1 -1
  52. azure/storage/blob/aio/__init__.py +3 -2
  53. azure/storage/blob/aio/_blob_client_async.py +53 -40
  54. azure/storage/blob/aio/_blob_service_client_async.py +13 -11
  55. azure/storage/blob/aio/_container_client_async.py +28 -25
  56. azure/storage/blob/aio/_download_async.py +7 -7
  57. azure/storage/blob/aio/_lease_async.py +1 -0
  58. azure/storage/blob/aio/_quick_query_helper_async.py +3 -3
  59. {azure_storage_blob-12.26.0b1.dist-info → azure_storage_blob-12.27.0b1.dist-info}/METADATA +3 -4
  60. azure_storage_blob-12.27.0b1.dist-info/RECORD +86 -0
  61. azure_storage_blob-12.26.0b1.dist-info/RECORD +0 -85
  62. {azure_storage_blob-12.26.0b1.dist-info → azure_storage_blob-12.27.0b1.dist-info}/LICENSE +0 -0
  63. {azure_storage_blob-12.26.0b1.dist-info → azure_storage_blob-12.27.0b1.dist-info}/WHEEL +0 -0
  64. {azure_storage_blob-12.26.0b1.dist-info → azure_storage_blob-12.27.0b1.dist-info}/top_level.txt +0 -0
@@ -186,7 +186,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
186
186
  :keyword str audience: The audience to use when requesting tokens for Azure Active Directory
187
187
  authentication. Only has an effect when credential is of type TokenCredential. The value could be
188
188
  https://storage.azure.com/ (default) or https://<account>.blob.core.windows.net.
189
- :returns: A container client.
189
+ :return: A container client.
190
190
  :rtype: ~azure.storage.blob.ContainerClient
191
191
  """
192
192
  try:
@@ -239,7 +239,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
239
239
  :keyword str audience: The audience to use when requesting tokens for Azure Active Directory
240
240
  authentication. Only has an effect when credential is of type TokenCredential. The value could be
241
241
  https://storage.azure.com/ (default) or https://<account>.blob.core.windows.net.
242
- :returns: A container client.
242
+ :return: A container client.
243
243
  :rtype: ~azure.storage.blob.ContainerClient
244
244
 
245
245
  .. admonition:: Example:
@@ -286,7 +286,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
286
286
  This value is not tracked or validated on the client. To configure client-side network timesouts
287
287
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
288
288
  #other-client--per-operation-configuration>`__.
289
- :returns: A dictionary of response headers.
289
+ :return: A dictionary of response headers.
290
290
  :rtype: Dict[str, Union[str, datetime]]
291
291
 
292
292
  .. admonition:: Example:
@@ -331,7 +331,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
331
331
  This value is not tracked or validated on the client. To configure client-side network timesouts
332
332
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
333
333
  #other-client--per-operation-configuration>`__.
334
- :returns: The renamed container.
334
+ :return: The renamed container.
335
335
  :rtype: ~azure.storage.blob.ContainerClient
336
336
  """
337
337
  lease = kwargs.pop('lease', None)
@@ -385,6 +385,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
385
385
  This value is not tracked or validated on the client. To configure client-side network timesouts
386
386
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
387
387
  #other-client--per-operation-configuration>`__.
388
+ :return: None
388
389
  :rtype: None
389
390
 
390
391
  .. admonition:: Example:
@@ -451,7 +452,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
451
452
  This value is not tracked or validated on the client. To configure client-side network timesouts
452
453
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
453
454
  #other-client--per-operation-configuration>`__.
454
- :returns: A BlobLeaseClient object, that can be run in a context manager.
455
+ :return: A BlobLeaseClient object, that can be run in a context manager.
455
456
  :rtype: ~azure.storage.blob.aio.BlobLeaseClient
456
457
 
457
458
  .. admonition:: Example:
@@ -476,7 +477,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
476
477
  The information can also be retrieved if the user has a SAS to a container or blob.
477
478
  The keys in the returned dictionary include 'sku_name' and 'account_kind'.
478
479
 
479
- :returns: A dict of account information (SKU and account type).
480
+ :return: A dict of account information (SKU and account type).
480
481
  :rtype: dict(str, str)
481
482
  """
482
483
  try:
@@ -536,7 +537,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
536
537
  This value is not tracked or validated on the client. To configure client-side network timesouts
537
538
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
538
539
  #other-client--per-operation-configuration>`__.
539
- :returns: boolean
540
+ :return: boolean
540
541
  :rtype: bool
541
542
  """
542
543
  try:
@@ -578,7 +579,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
578
579
  This value is not tracked or validated on the client. To configure client-side network timesouts
579
580
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
580
581
  #other-client--per-operation-configuration>`__.
581
- :returns: Container-updated property dict (Etag and last modified).
582
+ :return: Container-updated property dict (Etag and last modified).
582
583
  :rtype: Dict[str, Union[str, datetime]]
583
584
 
584
585
  .. admonition:: Example:
@@ -613,7 +614,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
613
614
 
614
615
  Defaults to current container's credentials.
615
616
 
616
- :returns: A BlobServiceClient.
617
+ :return: A BlobServiceClient.
617
618
  :rtype: ~azure.storage.blob.BlobServiceClient
618
619
 
619
620
  .. admonition:: Example:
@@ -656,7 +657,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
656
657
  This value is not tracked or validated on the client. To configure client-side network timesouts
657
658
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
658
659
  #other-client--per-operation-configuration>`__.
659
- :returns: Access policy information in a dict.
660
+ :return: Access policy information in a dict.
660
661
  :rtype: dict[str, Any]
661
662
 
662
663
  .. admonition:: Example:
@@ -723,7 +724,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
723
724
  This value is not tracked or validated on the client. To configure client-side network timesouts
724
725
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
725
726
  #other-client--per-operation-configuration>`__.
726
- :returns: Container-updated property dict (Etag and last modified).
727
+ :return: Container-updated property dict (Etag and last modified).
727
728
  :rtype: dict[str, str or ~datetime.datetime]
728
729
 
729
730
  .. admonition:: Example:
@@ -787,7 +788,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
787
788
  This value is not tracked or validated on the client. To configure client-side network timesouts
788
789
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
789
790
  #other-client--per-operation-configuration>`__.
790
- :returns: An iterable (auto-paging) response of BlobProperties.
791
+ :return: An iterable (auto-paging) response of BlobProperties.
791
792
  :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.storage.blob.BlobProperties]
792
793
 
793
794
  .. admonition:: Example:
@@ -840,7 +841,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
840
841
  This value is not tracked or validated on the client. To configure client-side network timesouts
841
842
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
842
843
  #other-client--per-operation-configuration>`__.
843
- :returns: An iterable (auto-paging) response of blob names as strings.
844
+ :return: An iterable (auto-paging) response of blob names as strings.
844
845
  :rtype: ~azure.core.async_paging.AsyncItemPaged[str]
845
846
  """
846
847
  if kwargs.pop('prefix', None):
@@ -873,7 +874,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
873
874
  include: Optional[Union[List[str], str]] = None,
874
875
  delimiter: str = "/",
875
876
  **kwargs: Any
876
- ) -> AsyncItemPaged[BlobProperties]:
877
+ ) -> AsyncItemPaged[Union[BlobProperties, BlobPrefix]]:
877
878
  """Returns a generator to list the blobs under the specified container.
878
879
  The generator will lazily follow the continuation tokens returned by
879
880
  the service. This operation will list blobs in accordance with a hierarchy,
@@ -898,8 +899,9 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
898
899
  This value is not tracked or validated on the client. To configure client-side network timesouts
899
900
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
900
901
  #other-client--per-operation-configuration>`__.
901
- :returns: An iterable (auto-paging) response of BlobProperties.
902
- :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.storage.blob.BlobProperties]
902
+ :return: An iterable (auto-paging) response of BlobProperties.
903
+ :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.storage.blob.BlobProperties or
904
+ ~azure.storage.blob.aio.BlobPrefix]
903
905
  """
904
906
  if kwargs.pop('prefix', None):
905
907
  raise ValueError("Passing 'prefix' has no effect on filtering, " +
@@ -944,7 +946,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
944
946
  This value is not tracked or validated on the client. To configure client-side network timesouts
945
947
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
946
948
  #other-client--per-operation-configuration>`__.
947
- :returns: An iterable (auto-paging) response of FilteredBlob.
949
+ :return: An iterable (auto-paging) response of FilteredBlob.
948
950
  :rtype: ~azure.core.paging.ItemPaged[~azure.storage.blob.BlobProperties]
949
951
  """
950
952
  results_per_page = kwargs.pop('results_per_page', None)
@@ -1071,7 +1073,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
1071
1073
  function(current: int, total: Optional[int]) where current is the number of bytes transferred
1072
1074
  so far, and total is the size of the blob or None if the size is unknown.
1073
1075
  :paramtype progress_hook: Callable[[int, Optional[int]], Awaitable[None]]
1074
- :returns: A BlobClient to interact with the newly uploaded blob.
1076
+ :return: A BlobClient to interact with the newly uploaded blob.
1075
1077
  :rtype: ~azure.storage.blob.aio.BlobClient
1076
1078
 
1077
1079
  .. admonition:: Example:
@@ -1121,7 +1123,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
1121
1123
  and retains the blob or snapshot for specified number of days.
1122
1124
  After specified number of days, blob's data is removed from the service during garbage collection.
1123
1125
  Soft deleted blobs or snapshots are accessible through :func:`list_blobs()` specifying `include=["deleted"]`
1124
- Soft-deleted blob or snapshot can be restored using :func:`~azure.storage.blob.aio.BlobClient.undelete()`
1126
+ Soft-deleted blob or snapshot can be restored using :func:`~azure.storage.blob.aio.BlobClient.undelete_blob()`
1125
1127
 
1126
1128
  :param str blob: The blob with which to interact.
1127
1129
  :param str delete_snapshots:
@@ -1169,6 +1171,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
1169
1171
  This value is not tracked or validated on the client. To configure client-side network timesouts
1170
1172
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
1171
1173
  #other-client--per-operation-configuration>`__.
1174
+ :return: None
1172
1175
  :rtype: None
1173
1176
  """
1174
1177
  if isinstance(blob, BlobProperties):
@@ -1295,7 +1298,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
1295
1298
  the timeout will apply to each call individually.
1296
1299
  multiple calls to the Azure service and the timeout will apply to
1297
1300
  each call individually.
1298
- :returns: A streaming object. (StorageStreamDownloader)
1301
+ :return: A streaming object. (StorageStreamDownloader)
1299
1302
  :rtype: ~azure.storage.blob.aio.StorageStreamDownloader
1300
1303
  """
1301
1304
  if isinstance(blob, BlobProperties):
@@ -1327,7 +1330,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
1327
1330
  and retains the blobs or snapshots for specified number of days.
1328
1331
  After specified number of days, blobs' data is removed from the service during garbage collection.
1329
1332
  Soft deleted blobs or snapshots are accessible through :func:`list_blobs()` specifying `include=["deleted"]`
1330
- Soft-deleted blobs or snapshots can be restored using :func:`~azure.storage.blob.aio.BlobClient.undelete()`
1333
+ Soft-deleted blobs or snapshots can be restored using :func:`~azure.storage.blob.aio.BlobClient.undelete_blob()`
1331
1334
 
1332
1335
  The maximum number of blobs that can be deleted in a single request is 256.
1333
1336
 
@@ -1393,7 +1396,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
1393
1396
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
1394
1397
  #other-client--per-operation-configuration>`__.
1395
1398
  :return: An async iterator of responses, one for each blob in order
1396
- :rtype: asynciterator[~azure.core.pipeline.transport.AsyncHttpResponse]
1399
+ :rtype: AsyncIterator[~azure.core.pipeline.transport.AsyncHttpResponse]
1397
1400
 
1398
1401
  .. admonition:: Example:
1399
1402
 
@@ -1485,7 +1488,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
1485
1488
  is raised even if there is a single operation failure. For optimal performance,
1486
1489
  this should be set to False.
1487
1490
  :return: An async iterator of responses, one for each blob in order
1488
- :rtype: asynciterator[~azure.core.pipeline.transport.AsyncHttpResponse]
1491
+ :rtype: AsyncIterator[~azure.core.pipeline.transport.AsyncHttpResponse]
1489
1492
  """
1490
1493
  if self._is_localhost:
1491
1494
  kwargs['url_prepend'] = self.account_name
@@ -1546,7 +1549,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
1546
1549
  is raised even if there is a single operation failure. For optimal performance,
1547
1550
  this should be set to False.
1548
1551
  :return: An async iterator of responses, one for each blob in order
1549
- :rtype: asynciterator[~azure.core.pipeline.transport.AsyncHttpResponse]
1552
+ :rtype: AsyncIterator[~azure.core.pipeline.transport.AsyncHttpResponse]
1550
1553
  """
1551
1554
  if self._is_localhost:
1552
1555
  kwargs['url_prepend'] = self.account_name
@@ -1577,7 +1580,7 @@ class ContainerClient(AsyncStorageAccountHostsMixin, StorageAccountHostsMixin, S
1577
1580
  or the response returned from :func:`~BlobClient.create_snapshot()`.
1578
1581
  :keyword str version_id: The version id parameter is an opaque DateTime value that, when present,
1579
1582
  specifies the version of the blob to operate on.
1580
- :returns: A BlobClient.
1583
+ :return: A BlobClient.
1581
1584
  :rtype: ~azure.storage.blob.aio.BlobClient
1582
1585
 
1583
1586
  .. admonition:: Example:
@@ -449,7 +449,7 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
449
449
 
450
450
  NOTE: If the stream has been partially read, some data may be re-downloaded by the iterator.
451
451
 
452
- :returns: An async iterator of the chunks in the download stream.
452
+ :return: An async iterator of the chunks in the download stream.
453
453
  :rtype: AsyncIterator[bytes]
454
454
 
455
455
  .. admonition:: Example:
@@ -523,7 +523,7 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
523
523
  The number of chars to download from the stream. Leave unspecified
524
524
  or set negative to download all chars. Note, this can only be used
525
525
  when encoding is specified on `download_blob`.
526
- :returns:
526
+ :return:
527
527
  The requested data as bytes or a string if encoding was specified. If
528
528
  the return value is empty, there is no more data to read.
529
529
  :rtype: T
@@ -676,7 +676,7 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
676
676
  Read the entire contents of this blob.
677
677
  This operation is blocking until all data is downloaded.
678
678
 
679
- :returns: The requested data as bytes or a string if encoding was specified.
679
+ :return: The requested data as bytes or a string if encoding was specified.
680
680
  :rtype: T
681
681
  """
682
682
  return await self.read()
@@ -688,7 +688,7 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
688
688
  The stream to download to. This can be an open file-handle,
689
689
  or any writable stream. The stream must be seekable if the download
690
690
  uses more than one parallel connection.
691
- :returns: The number of bytes read.
691
+ :return: The number of bytes read.
692
692
  :rtype: int
693
693
  """
694
694
  if self._text_mode:
@@ -805,7 +805,7 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
805
805
 
806
806
  :param int max_concurrency:
807
807
  The number of parallel connections with which to download.
808
- :returns: The contents of the file as bytes.
808
+ :return: The contents of the file as bytes.
809
809
  :rtype: bytes
810
810
  """
811
811
  warnings.warn(
@@ -830,7 +830,7 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
830
830
  The number of parallel connections with which to download.
831
831
  :param str encoding:
832
832
  Test encoding to decode the downloaded bytes. Default is UTF-8.
833
- :returns: The content of the file as a str.
833
+ :return: The content of the file as a str.
834
834
  :rtype: str
835
835
  """
836
836
  warnings.warn(
@@ -856,7 +856,7 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
856
856
  uses more than one parallel connection.
857
857
  :param int max_concurrency:
858
858
  The number of parallel connections with which to download.
859
- :returns: The properties of the downloaded blob.
859
+ :return: The properties of the downloaded blob.
860
860
  :rtype: Any
861
861
  """
862
862
  warnings.warn(
@@ -107,6 +107,7 @@ class BlobLeaseClient(): # pylint: disable=client-accepts-api-version-keyword
107
107
  This value is not tracked or validated on the client. To configure client-side network timesouts
108
108
  see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
109
109
  #other-client--per-operation-configuration>`__.
110
+ :return: None
110
111
  :rtype: None
111
112
  """
112
113
  mod_conditions = get_modify_conditions(kwargs)
@@ -88,7 +88,7 @@ class BlobQueryReader: # pylint: disable=too-many-instance-attributes
88
88
 
89
89
  This operation is blocking until all data is downloaded.
90
90
 
91
- :returns: The query results.
91
+ :return: The query results.
92
92
  :rtype: bytes
93
93
  """
94
94
  stream = BytesIO()
@@ -104,7 +104,7 @@ class BlobQueryReader: # pylint: disable=too-many-instance-attributes
104
104
  :param IO stream:
105
105
  The stream to download to. This can be an open file-handle,
106
106
  or any writable stream.
107
- :returns: None
107
+ :return: None
108
108
  """
109
109
  async for record in self._aiter_stream():
110
110
  stream.write(record)
@@ -114,7 +114,7 @@ class BlobQueryReader: # pylint: disable=too-many-instance-attributes
114
114
 
115
115
  Records will be returned line by line.
116
116
 
117
- :returns: A record generator for the query result.
117
+ :return: A record generator for the query result.
118
118
  :rtype: AsyncIterable[bytes]
119
119
  """
120
120
  delimiter = self.record_delimiter.encode('utf-8')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: azure-storage-blob
3
- Version: 12.26.0b1
3
+ Version: 12.27.0b1
4
4
  Summary: Microsoft Azure Blob Storage Client Library for Python
5
5
  Home-page: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
6
6
  Author: Microsoft Corporation
@@ -11,13 +11,12 @@ Classifier: Development Status :: 4 - Beta
11
11
  Classifier: Programming Language :: Python
12
12
  Classifier: Programming Language :: Python :: 3 :: Only
13
13
  Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.8
15
14
  Classifier: Programming Language :: Python :: 3.9
16
15
  Classifier: Programming Language :: Python :: 3.10
17
16
  Classifier: Programming Language :: Python :: 3.11
18
17
  Classifier: Programming Language :: Python :: 3.12
19
18
  Classifier: License :: OSI Approved :: MIT License
20
- Requires-Python: >=3.8
19
+ Requires-Python: >=3.9
21
20
  Description-Content-Type: text/markdown
22
21
  License-File: LICENSE
23
22
  Requires-Dist: azure-core>=1.30.0
@@ -49,7 +48,7 @@ Blob storage is ideal for:
49
48
  ## Getting started
50
49
 
51
50
  ### Prerequisites
52
- * Python 3.8 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
51
+ * Python 3.9 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
53
52
  * You must have an [Azure subscription](https://azure.microsoft.com/free/) and an
54
53
  [Azure storage account](https://learn.microsoft.com/azure/storage/common/storage-account-overview) to use this package.
55
54
 
@@ -0,0 +1,86 @@
1
+ azure/storage/blob/__init__.py,sha256=qMEQQraI16CG_sdWoBlUHgwhweekEPoNKLC7QmoD2Hc,10698
2
+ azure/storage/blob/_blob_client.py,sha256=z3gMwL3OzvoY-sKONwFKEEw4bjjPZNZ4TRd2z9PiNvo,189993
3
+ azure/storage/blob/_blob_client_helpers.py,sha256=KJA38guXr_JqezdTt2vpphAni-9Ay53FIwP8qC5D9Q0,52903
4
+ azure/storage/blob/_blob_service_client.py,sha256=9CEPUxJ-3FxRczYDUpHS5mHCSRjPEMN-MbvMOx-nLl0,40383
5
+ azure/storage/blob/_blob_service_client_helpers.py,sha256=8jNCrF5rsgdJyAJQTdRR_mcOYuDCw4Nt9AirZk2RYUY,997
6
+ azure/storage/blob/_container_client.py,sha256=Xf6OUEgaeNA6U_foilbkYIneoZS0MuSvM-dlLnDemRY,84746
7
+ azure/storage/blob/_container_client_helpers.py,sha256=nwn2c_RBAurLq3hgI5m_mb545rJVtCMHGGxePmVKrCs,12458
8
+ azure/storage/blob/_deserialize.py,sha256=-WzPDCNRcLYjCe1VK4Dn2PSr4Lj-J25VOZt9zECk8F8,9864
9
+ azure/storage/blob/_download.py,sha256=NpyFs4NotM0ORIdfoswwpWnC23cjDg9vO2q6Nyznt3s,40081
10
+ azure/storage/blob/_encryption.py,sha256=Kvwdqgmj6c9yuykqSfQz5ppNHgLc5Ra4hE-q_gJe3p0,46716
11
+ azure/storage/blob/_lease.py,sha256=B676Jgkm_SWgr331OZ6W_yXAJRVhVOO_Dp5_vyDkdog,18358
12
+ azure/storage/blob/_list_blobs_helper.py,sha256=RIf9JJqcFXAe_ZexVUKfKFB5YOyp5qvPLKDGlLaXIa0,13130
13
+ azure/storage/blob/_models.py,sha256=6LOfUKH9PARguI3T9Vd17GiCK4ZWFljuzZOR2pCVaIk,65926
14
+ azure/storage/blob/_quick_query_helper.py,sha256=FajtJXZFymxzJ9Fp1piBERP2_bDZk_1YSf2vzRYUKcU,6404
15
+ azure/storage/blob/_serialize.py,sha256=rXz7eUSF26vEdQJh-hCE6eWarNq346VRCQXWBNm7Biw,8218
16
+ azure/storage/blob/_shared_access_signature.py,sha256=x-Jy1Bajer4z2VN9O1iQ1uDmadKR9MywVLPIlNnsQ8Q,35504
17
+ azure/storage/blob/_upload_helpers.py,sha256=-ZpqzST-wFdWqCm_I4oWGLTMQ5N0aYb3RHxaMvmf9Q4,14688
18
+ azure/storage/blob/_version.py,sha256=jwh2R7x9WGSr0QM8nG5_T-3CvJP4nxLnpHgUiL4Ln9E,333
19
+ azure/storage/blob/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ azure/storage/blob/_generated/__init__.py,sha256=ynWf8-mGV7ImRKnke9UPzyisLsuiM-NrFWKk0sN78bY,989
21
+ azure/storage/blob/_generated/_azure_blob_storage.py,sha256=awyXR-EXJkWQrruraLo94Z_3inv_dPuZk10jHNLcVwY,5744
22
+ azure/storage/blob/_generated/_configuration.py,sha256=oTekwI9E81_HlMvzZxpJsqgLpH9e9crENcoiGISRBFo,2552
23
+ azure/storage/blob/_generated/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
24
+ azure/storage/blob/_generated/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
25
+ azure/storage/blob/_generated/_utils/__init__.py,sha256=sbjmEEjeH9Sr8xo3lkmUvyHuZkKo3xPbPehsxe7iQjE,452
26
+ azure/storage/blob/_generated/_utils/serialization.py,sha256=M0xRh7CzsPyQfr0h-Nbb14qAdUTjk2eMqxSGpBEWujI,81966
27
+ azure/storage/blob/_generated/aio/__init__.py,sha256=ynWf8-mGV7ImRKnke9UPzyisLsuiM-NrFWKk0sN78bY,989
28
+ azure/storage/blob/_generated/aio/_azure_blob_storage.py,sha256=EAFc7XHOwo2syC2eAyAH1Lrfu8qiMXmA2CLXOe0-gTY,5887
29
+ azure/storage/blob/_generated/aio/_configuration.py,sha256=VBVAboqwzEt5CH-B_6uhdfFNG9I3cbN5BtyqYTy35aM,2562
30
+ azure/storage/blob/_generated/aio/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
31
+ azure/storage/blob/_generated/aio/operations/__init__.py,sha256=135lckGNaMIThoRPTOBXgX6wLz_jZq-ZlvOIIzxbTGg,1415
32
+ azure/storage/blob/_generated/aio/operations/_append_blob_operations.py,sha256=jlecUmUF6eoG17Si75BnsBgkd7EnXq4m22HkJqt3XtQ,38216
33
+ azure/storage/blob/_generated/aio/operations/_blob_operations.py,sha256=51Q_YxAMb9NyBOCfQ4D9MQPsua0JqNdgpWE6CkoM9bM,168087
34
+ azure/storage/blob/_generated/aio/operations/_block_blob_operations.py,sha256=fz2KPrbJI05AJIXvatU8XMOev_5d7O96l8zXHcTra7M,62576
35
+ azure/storage/blob/_generated/aio/operations/_container_operations.py,sha256=Cfl9vjSaXwiN_-HeSnkFZKkwNj0SqCCtShZ0RPu1jks,89317
36
+ azure/storage/blob/_generated/aio/operations/_page_blob_operations.py,sha256=WeGjvvM4-aN-K-dwpHS0Lm6YBuBUtdUUgOvMYtQBp-c,75472
37
+ azure/storage/blob/_generated/aio/operations/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
38
+ azure/storage/blob/_generated/aio/operations/_service_operations.py,sha256=8LdagIy03l2qLBM59hJcoCOe3wLeeuhjdfH7vBUbCbE,35567
39
+ azure/storage/blob/_generated/models/__init__.py,sha256=ae4-_RoCsUSVVEdgfxkWU_7LS_9POVjgx4E59RtGp6Y,4662
40
+ azure/storage/blob/_generated/models/_azure_blob_storage_enums.py,sha256=sxv4FzZDdO0c94hneLhBKTueJiJ3jvuXWeN1SqRizxs,13277
41
+ azure/storage/blob/_generated/models/_models_py3.py,sha256=P6Ta9ps6_Y0r8Fb4nbXWTQVPTv2Ise219FRHUmgdcl8,111450
42
+ azure/storage/blob/_generated/models/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
43
+ azure/storage/blob/_generated/operations/__init__.py,sha256=135lckGNaMIThoRPTOBXgX6wLz_jZq-ZlvOIIzxbTGg,1415
44
+ azure/storage/blob/_generated/operations/_append_blob_operations.py,sha256=six1ce4RdPosjPPS6Uhvy_CGojlCsiRHqxvktVEXVWw,57761
45
+ azure/storage/blob/_generated/operations/_blob_operations.py,sha256=GF8CASrt1gnyG-XtO3OLkFkt9O-rTM3H4rVjvQ71IMk,236608
46
+ azure/storage/blob/_generated/operations/_block_blob_operations.py,sha256=B4nnDBCvUFmYfCC8iB9yaORmxlsjfmGhGrqww14Jjnk,94989
47
+ azure/storage/blob/_generated/operations/_container_operations.py,sha256=MB7LOXCbrsB7vDSP15QWlKCIAIb39WDHOrLEdCl0CbU,127550
48
+ azure/storage/blob/_generated/operations/_page_blob_operations.py,sha256=fKMgIO0OgnCf_Ngwgna0d4Egr0Ajhb6217Xa0hHeb-0,113879
49
+ azure/storage/blob/_generated/operations/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
50
+ azure/storage/blob/_generated/operations/_service_operations.py,sha256=694qu9NnP34K-hXDH8V-DhPHy-EhWJYuFReLPeWO8mE,49497
51
+ azure/storage/blob/_shared/__init__.py,sha256=z6c_3OzuEq1nAxh_KeniG-Tx35LTrBngqtTkHpMMb-U,1478
52
+ azure/storage/blob/_shared/authentication.py,sha256=TLaOA5g7sQrl3XUUFhxeNxMJd1sJoC_ujdQBjYOkYco,9678
53
+ azure/storage/blob/_shared/base_client.py,sha256=wsJ-M1z7ehEKICvxqdV_Uc7X9cMbsT5DBVqEf3uXxNo,18920
54
+ azure/storage/blob/_shared/base_client_async.py,sha256=kd2f-JlJ-rGTHevnaBVNP_LVBXTXmknGMKXZJclTcb0,11750
55
+ azure/storage/blob/_shared/constants.py,sha256=gUybHtz9Co4ZDLcB67ZeH5CIA7jcQn3fkMebkWTNRVg,620
56
+ azure/storage/blob/_shared/models.py,sha256=q_E87FzMoHmtpf3pSdhHQmUkMMec0xZuncwSx5oFN_o,25110
57
+ azure/storage/blob/_shared/parser.py,sha256=uzlJETfut-8rzaCdurNHIc5u8Sv6hBhKR6bZRxvIwOs,1728
58
+ azure/storage/blob/_shared/policies.py,sha256=PHE8Hb-IFw9BWl8AYC2G_n_x8WmJ21esyoUzde3K9Yk,32462
59
+ azure/storage/blob/_shared/policies_async.py,sha256=qQLqCmLsX_e1hNB7pBaU57mT1_hvnTV07-10dlRIFK4,13185
60
+ azure/storage/blob/_shared/request_handlers.py,sha256=o9jlv7NdtrJVL_T2LWKkE8jdzDbYNaNgWJVx1OozO_g,9700
61
+ azure/storage/blob/_shared/response_handlers.py,sha256=hBaTA6dkQg9YLecB9Mk9PoXIUk2nfAAIASRxEb63KkQ,9388
62
+ azure/storage/blob/_shared/shared_access_signature.py,sha256=nyGQslZa8LHHbgkjvWzenlRdaE_O0qgSW6ZfryVeCB0,11119
63
+ azure/storage/blob/_shared/uploads.py,sha256=iARzb28bcqIkAdZx0-Fc74i_hP01w91KriOmmxQR0tA,21966
64
+ azure/storage/blob/_shared/uploads_async.py,sha256=IiOW3nOE0WyIRxjzhaFtoxCgNKqeU9C02y4RsXmUFrI,16667
65
+ azure/storage/blob/_shared/avro/__init__.py,sha256=Ch-mWS2_vgonM9LjVaETdaW51OL6LfG23X-0tH2AFjw,310
66
+ azure/storage/blob/_shared/avro/avro_io.py,sha256=gporDgp95QcUO66w00Szjn9XkZ5O-vouU-nrdlf7h4I,16076
67
+ azure/storage/blob/_shared/avro/avro_io_async.py,sha256=satwljG9pn3ywGrQXHRQjSEjf_cJ9U80G75TX_0TC4E,16224
68
+ azure/storage/blob/_shared/avro/datafile.py,sha256=KxPaO2_UMH-pIvCQrCh4oHCAuyRfk9Q6wLA-R3JuiXA,8468
69
+ azure/storage/blob/_shared/avro/datafile_async.py,sha256=wOXKRFM94UEox11L1XWWwq5CtEubSWslykmfqikFvcI,7288
70
+ azure/storage/blob/_shared/avro/schema.py,sha256=4qW8kWcb50MjVXX9TcvUMh1akzQuG_Wh6Z7NPYCqz1g,35803
71
+ azure/storage/blob/aio/__init__.py,sha256=mL90T6OZV478o9FydAdBmfu1X0B375K4HvQHtv2q3eg,8348
72
+ azure/storage/blob/aio/_blob_client_async.py,sha256=JrQwzNzKSF1unKxxFqclN1hyri8xZat99FiwqyYrK5E,192646
73
+ azure/storage/blob/aio/_blob_service_client_async.py,sha256=lfMni2WmWolr2iLJLmLzhdijCP2m3Rb42g-wICXJ2T8,41212
74
+ azure/storage/blob/aio/_container_client_async.py,sha256=X6caQDkMdv6jEQQTwTZJAsh7DdQnHrbF21Z5zPAJZj4,85395
75
+ azure/storage/blob/aio/_download_async.py,sha256=51X6Y_RCilZ7qStHFIxlKJfp7VIJr8lvW93vNntxIS0,38138
76
+ azure/storage/blob/aio/_encryption_async.py,sha256=spbWeycNMj38H5ynZ03FRtRu0L0tnl1lQn5UJT6HMAY,2518
77
+ azure/storage/blob/aio/_lease_async.py,sha256=YPwwyKkCRQGcaUu-pj-6WmEljfzdfMDFl3QS00O8MZs,18633
78
+ azure/storage/blob/aio/_list_blobs_helper.py,sha256=Cz8Cs76xu4j67OmKpED0RborDqTxcqBId7MlF5aRVVw,9851
79
+ azure/storage/blob/aio/_models.py,sha256=RQzmFX9SMRL-Wg2LxzI2Fjhjvrpn6yUJBEoIb-mgCAI,8057
80
+ azure/storage/blob/aio/_quick_query_helper_async.py,sha256=zeDi4M_U03sOGE8WIYBUxgxygNfko0d5MPz2TldcnRs,6730
81
+ azure/storage/blob/aio/_upload_helpers.py,sha256=zROsVN6PK2Cn59Ysq08Ide5T1IGG2yH7oK9ZCn5uQXs,14038
82
+ azure_storage_blob-12.27.0b1.dist-info/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
83
+ azure_storage_blob-12.27.0b1.dist-info/METADATA,sha256=v_AJz3WvumHC-yZw2W8aGidFG48yjMgJSMYq0nobbAY,26177
84
+ azure_storage_blob-12.27.0b1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
85
+ azure_storage_blob-12.27.0b1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
86
+ azure_storage_blob-12.27.0b1.dist-info/RECORD,,
@@ -1,85 +0,0 @@
1
- azure/storage/blob/__init__.py,sha256=2i-4BEmEBQ_qSjF2BfwSyrZXr2s75WgoZlQ6BY8loxI,10694
2
- azure/storage/blob/_blob_client.py,sha256=Lf2FbqpiUlIxzgK-FY3hZU90MAQLN08PEVEr1nwJnyo,189901
3
- azure/storage/blob/_blob_client_helpers.py,sha256=QiTLy7UFqKXdFBDLPl37DpU2fay3oXRVKAA3it07VSA,52885
4
- azure/storage/blob/_blob_service_client.py,sha256=R2LlyarEBRKMSxkijtysTtBdERQHS05S5rf4e918yQ4,40331
5
- azure/storage/blob/_blob_service_client_helpers.py,sha256=8jNCrF5rsgdJyAJQTdRR_mcOYuDCw4Nt9AirZk2RYUY,997
6
- azure/storage/blob/_container_client.py,sha256=y4YVT03RbBDx1KnKLCR7krunnZASfpNe1oJYkDRJvrI,84635
7
- azure/storage/blob/_container_client_helpers.py,sha256=nwn2c_RBAurLq3hgI5m_mb545rJVtCMHGGxePmVKrCs,12458
8
- azure/storage/blob/_deserialize.py,sha256=H-sF-bq8JSq_CCgueu5NvP5b2SeppDBpMDjHKxOnjs8,9865
9
- azure/storage/blob/_download.py,sha256=kJeMTL9r1ByaT2rxHBCA48gck3UmfX120h9edBMe6Kc,40088
10
- azure/storage/blob/_encryption.py,sha256=BCqaCshIu1QmsOfcUTmyorO76QS2p80A59LrmJBYBVw,47521
11
- azure/storage/blob/_lease.py,sha256=ReF0nVfZE8p_clUGpebZPprBdXJ7lOGEqXmJUhvsX5U,18336
12
- azure/storage/blob/_list_blobs_helper.py,sha256=ElFspHiqQ2vbRvwI9DLY7uKHgDCj1NTQ40icuCOmF0I,13124
13
- azure/storage/blob/_models.py,sha256=6LOfUKH9PARguI3T9Vd17GiCK4ZWFljuzZOR2pCVaIk,65926
14
- azure/storage/blob/_quick_query_helper.py,sha256=18rDrpaths9VrhU0BdX65DMpTczYm8MCYl9Eaf1sZLc,6407
15
- azure/storage/blob/_serialize.py,sha256=WVPWpCrFVBKb8PoyZEUjmVIrVwVOyODF1N40QQ5SCpQ,8200
16
- azure/storage/blob/_shared_access_signature.py,sha256=x-Jy1Bajer4z2VN9O1iQ1uDmadKR9MywVLPIlNnsQ8Q,35504
17
- azure/storage/blob/_upload_helpers.py,sha256=-ZpqzST-wFdWqCm_I4oWGLTMQ5N0aYb3RHxaMvmf9Q4,14688
18
- azure/storage/blob/_version.py,sha256=n30B3GOA3U3tioh0qMt1VrjXmykkFXn0NnbsFgPqZ5Q,333
19
- azure/storage/blob/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- azure/storage/blob/_generated/__init__.py,sha256=ynWf8-mGV7ImRKnke9UPzyisLsuiM-NrFWKk0sN78bY,989
21
- azure/storage/blob/_generated/_azure_blob_storage.py,sha256=XngUaedU_ZmNvZ-BK-acbtVR4ejVrvwnSjIJYIL9JW8,5737
22
- azure/storage/blob/_generated/_configuration.py,sha256=rh2Z7OZYt0iDLPWFmv_81kG4bm4Pz0to9z4ZtwGidOk,2552
23
- azure/storage/blob/_generated/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
24
- azure/storage/blob/_generated/_serialization.py,sha256=vN_jYB0jHUw2hVIWB6M9n6_0AvFw9mFa3ndcz2y6gaQ,82802
25
- azure/storage/blob/_generated/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
26
- azure/storage/blob/_generated/aio/__init__.py,sha256=ynWf8-mGV7ImRKnke9UPzyisLsuiM-NrFWKk0sN78bY,989
27
- azure/storage/blob/_generated/aio/_azure_blob_storage.py,sha256=1IL6YNFj6VFNzF8Es0ec2XJGEjxdnRZWmv7193Nnk5Q,5880
28
- azure/storage/blob/_generated/aio/_configuration.py,sha256=v6IzBhKMYcLVwWwCmB77HyHfPdPZpY_YX1zq-7Tno1k,2562
29
- azure/storage/blob/_generated/aio/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
30
- azure/storage/blob/_generated/aio/operations/__init__.py,sha256=135lckGNaMIThoRPTOBXgX6wLz_jZq-ZlvOIIzxbTGg,1415
31
- azure/storage/blob/_generated/aio/operations/_append_blob_operations.py,sha256=9Nc-IbNzuhEfeoLLEZcqe1ngWri_hbjp5sQ6erIW1qU,38388
32
- azure/storage/blob/_generated/aio/operations/_blob_operations.py,sha256=ycL27HLKgZqiS4NmfbpyoUsh61lKVzOKWE_jC7pZ1gA,168781
33
- azure/storage/blob/_generated/aio/operations/_block_blob_operations.py,sha256=9VP-FwnlN29EkDS-luoxrWZ0MuOywGCbjoHDYAaqKhA,62802
34
- azure/storage/blob/_generated/aio/operations/_container_operations.py,sha256=dFUJe_gw19cFwkbYWtqGmgmotUlh9mrcwohI5VCshlo,89741
35
- azure/storage/blob/_generated/aio/operations/_page_blob_operations.py,sha256=uWttQQreK87fo9QkGcinAft78t3nkPlA3eKjW2QWYDM,75770
36
- azure/storage/blob/_generated/aio/operations/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
37
- azure/storage/blob/_generated/aio/operations/_service_operations.py,sha256=43GKSf0sZmu6_UtaFBBAPb10NGtmKmzzv5B1KMhOa_c,35811
38
- azure/storage/blob/_generated/models/__init__.py,sha256=ae4-_RoCsUSVVEdgfxkWU_7LS_9POVjgx4E59RtGp6Y,4662
39
- azure/storage/blob/_generated/models/_azure_blob_storage_enums.py,sha256=sxv4FzZDdO0c94hneLhBKTueJiJ3jvuXWeN1SqRizxs,13277
40
- azure/storage/blob/_generated/models/_models_py3.py,sha256=zC5S3_2lT7H0BIOjSSQvZF5roOGtCPGk77ZqXeKkreE,110425
41
- azure/storage/blob/_generated/models/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
42
- azure/storage/blob/_generated/operations/__init__.py,sha256=135lckGNaMIThoRPTOBXgX6wLz_jZq-ZlvOIIzxbTGg,1415
43
- azure/storage/blob/_generated/operations/_append_blob_operations.py,sha256=Rat7a4UUtVfqohF5w_FupQ99rWyRA0xPY13gz8xR3vw,57925
44
- azure/storage/blob/_generated/operations/_blob_operations.py,sha256=i0TKFh1mog7D4UiAswkwN30zzS35ZcKZRDmonZRFlvg,237294
45
- azure/storage/blob/_generated/operations/_block_blob_operations.py,sha256=RVawehH06b4LghZnnt9ofwFWx4JOupdrTeaeFX5AtnU,95207
46
- azure/storage/blob/_generated/operations/_container_operations.py,sha256=fbuaUdq8yZdFCKb-1ygP3QHzVeENWQQwwpZVbdEtomc,127966
47
- azure/storage/blob/_generated/operations/_page_blob_operations.py,sha256=5hR3nKTPwOyMgUm13D2SHCa-SxSnbl9fcyVL7iJ621E,114169
48
- azure/storage/blob/_generated/operations/_patch.py,sha256=P7PMm3Gbjlk56lI6B_Ra43hSW5qGMEmN3cNYGH5uZ3s,674
49
- azure/storage/blob/_generated/operations/_service_operations.py,sha256=gDkjjCo7q9v5K9CYzm0o_oF8pi8RVi2sY7Ed0Vp7-TQ,49733
50
- azure/storage/blob/_shared/__init__.py,sha256=Ohb4NSCuB9VXGEqjU2o9VZ5L98-a7c8KWZvrujnSFk8,1477
51
- azure/storage/blob/_shared/authentication.py,sha256=RNKYwbK-IbeZ2rPzeW5PX677NB4GZdwxmyVhb8KmskU,9445
52
- azure/storage/blob/_shared/base_client.py,sha256=xp5p0Xf0AOf4oaaDlsePLdivMQS13TNarjChF7y6NEY,18558
53
- azure/storage/blob/_shared/base_client_async.py,sha256=cBL9V19-da0yX2KTJ8TMeg97IuYaKdk-6bGiDVpaD4Y,11850
54
- azure/storage/blob/_shared/constants.py,sha256=0TnhBNEaZpVq0vECmLoXWSzCajtn9WOlfOfzbMApRb4,620
55
- azure/storage/blob/_shared/models.py,sha256=hhTqxdmwoQgSFwM6MVxefW1MINquwP7hVg2wwgYc8io,25142
56
- azure/storage/blob/_shared/parser.py,sha256=ysFCyANxeSML7FMp_vJhIJABkvKVXAwb9K5jwWAR1Xk,1730
57
- azure/storage/blob/_shared/policies.py,sha256=efaZtY3M0fzJj-bwBGCGrToOkZi-0DEk_FZ8DPgMVNs,30777
58
- azure/storage/blob/_shared/policies_async.py,sha256=-wzjJt621uowea0dCgr90NTBbPCRu52DB-6oWt5TA8U,13507
59
- azure/storage/blob/_shared/request_handlers.py,sha256=iccEwX77CCi0KwytBbMyPRvaOc1iPZXZlhijNGAT4_E,9739
60
- azure/storage/blob/_shared/response_handlers.py,sha256=S8S8RU2GCh5EtLdO_CjenzpDKexxa3y9FN60mXmML9o,9206
61
- azure/storage/blob/_shared/shared_access_signature.py,sha256=bNvQTHZDPoV64TaM_IGs7Lbni2poCIRsqiNthT9JcE8,11334
62
- azure/storage/blob/_shared/uploads.py,sha256=sNjyP-WqhDTbKHHJHezbY6Rac6KdhbUCqDGn1xD72Vk,22017
63
- azure/storage/blob/_shared/uploads_async.py,sha256=yOL2mba3QQN9DyIE-0GGMNzHIpwVLdk8YAX3_r5TcLw,16666
64
- azure/storage/blob/_shared/avro/__init__.py,sha256=Ch-mWS2_vgonM9LjVaETdaW51OL6LfG23X-0tH2AFjw,310
65
- azure/storage/blob/_shared/avro/avro_io.py,sha256=ATtDzDD8JkZf1ChKCkzUzxP5K30N2pT5LgHmf0GRXu8,16099
66
- azure/storage/blob/_shared/avro/avro_io_async.py,sha256=6XhOzcsx6j0odhLQ4d2gxFyqg7EIfO9QayYfYHe-Wac,16239
67
- azure/storage/blob/_shared/avro/datafile.py,sha256=L0xC3Na0Zyg-I6lZjW8Qp6R4wvEnGms35CAmNjh9oPU,8461
68
- azure/storage/blob/_shared/avro/datafile_async.py,sha256=0fSi427XEDPXbFQNrVQq70EAhpy2-jo1Ay-k4fDHO3Q,7294
69
- azure/storage/blob/_shared/avro/schema.py,sha256=ULeGU6lwC2Onzprt2nSnOwsjC3HJH-3S24eyPs6L6Us,36227
70
- azure/storage/blob/aio/__init__.py,sha256=tVgeGWdfxG32uyJxAE32waysCOGt93S_EeuQLJz7vEM,8344
71
- azure/storage/blob/aio/_blob_client_async.py,sha256=Ee95HkHlGgCU-AsSCC9bgOH1eKM2nGYq2zig1bOZEwc,192382
72
- azure/storage/blob/aio/_blob_service_client_async.py,sha256=D-y0VfSlg_K44VKgIGsYuySxkG1RBDF5ymz17D3P8CM,41179
73
- azure/storage/blob/aio/_container_client_async.py,sha256=1D5ixfete8Y5uovMOreSgClHs6KqOSe38yhpZloMA84,85290
74
- azure/storage/blob/aio/_download_async.py,sha256=bZC7sSrh2BWSbOttuBFUkWk7eSJ_-t7diZIr-DlwQWQ,38145
75
- azure/storage/blob/aio/_encryption_async.py,sha256=spbWeycNMj38H5ynZ03FRtRu0L0tnl1lQn5UJT6HMAY,2518
76
- azure/storage/blob/aio/_lease_async.py,sha256=T31Augs9Rp-UdwsOOHzE5U_lUGcCD-fXnpnTHAZNE3A,18611
77
- azure/storage/blob/aio/_list_blobs_helper.py,sha256=Cz8Cs76xu4j67OmKpED0RborDqTxcqBId7MlF5aRVVw,9851
78
- azure/storage/blob/aio/_models.py,sha256=RQzmFX9SMRL-Wg2LxzI2Fjhjvrpn6yUJBEoIb-mgCAI,8057
79
- azure/storage/blob/aio/_quick_query_helper_async.py,sha256=URxdRkzIszmWliSEB-jqMNNeBjQs-SKTNH9Agop21Bs,6733
80
- azure/storage/blob/aio/_upload_helpers.py,sha256=zROsVN6PK2Cn59Ysq08Ide5T1IGG2yH7oK9ZCn5uQXs,14038
81
- azure_storage_blob-12.26.0b1.dist-info/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
82
- azure_storage_blob-12.26.0b1.dist-info/METADATA,sha256=pUq0-xe7tKfQyp8_nRW8gGl71vRproXmWhjiZQJhvwU,26227
83
- azure_storage_blob-12.26.0b1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
84
- azure_storage_blob-12.26.0b1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
85
- azure_storage_blob-12.26.0b1.dist-info/RECORD,,