azure-storage-blob 12.24.0b1__py3-none-any.whl → 12.24.1__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 (30) hide show
  1. azure/storage/blob/_blob_client.py +6 -3
  2. azure/storage/blob/_download.py +2 -2
  3. azure/storage/blob/_generated/aio/operations/_append_blob_operations.py +4 -4
  4. azure/storage/blob/_generated/aio/operations/_blob_operations.py +33 -33
  5. azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +7 -7
  6. azure/storage/blob/_generated/aio/operations/_container_operations.py +18 -18
  7. azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +11 -11
  8. azure/storage/blob/_generated/aio/operations/_service_operations.py +8 -8
  9. azure/storage/blob/_generated/operations/_append_blob_operations.py +4 -4
  10. azure/storage/blob/_generated/operations/_blob_operations.py +33 -33
  11. azure/storage/blob/_generated/operations/_block_blob_operations.py +7 -7
  12. azure/storage/blob/_generated/operations/_container_operations.py +18 -18
  13. azure/storage/blob/_generated/operations/_page_blob_operations.py +11 -11
  14. azure/storage/blob/_generated/operations/_service_operations.py +8 -8
  15. azure/storage/blob/_models.py +1 -1
  16. azure/storage/blob/_shared/authentication.py +1 -1
  17. azure/storage/blob/_shared/base_client.py +1 -1
  18. azure/storage/blob/_shared/parser.py +2 -10
  19. azure/storage/blob/_shared/policies_async.py +2 -2
  20. azure/storage/blob/_shared/request_handlers.py +3 -4
  21. azure/storage/blob/_shared/response_handlers.py +2 -2
  22. azure/storage/blob/_shared/shared_access_signature.py +2 -2
  23. azure/storage/blob/_version.py +1 -1
  24. azure/storage/blob/aio/_blob_client_async.py +6 -3
  25. azure/storage/blob/aio/_download_async.py +3 -3
  26. {azure_storage_blob-12.24.0b1.dist-info → azure_storage_blob-12.24.1.dist-info}/METADATA +20 -20
  27. {azure_storage_blob-12.24.0b1.dist-info → azure_storage_blob-12.24.1.dist-info}/RECORD +30 -30
  28. {azure_storage_blob-12.24.0b1.dist-info → azure_storage_blob-12.24.1.dist-info}/WHEEL +1 -1
  29. {azure_storage_blob-12.24.0b1.dist-info → azure_storage_blob-12.24.1.dist-info}/LICENSE +0 -0
  30. {azure_storage_blob-12.24.0b1.dist-info → azure_storage_blob-12.24.1.dist-info}/top_level.txt +0 -0
@@ -540,8 +540,9 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
540
540
  value specified in this header, the request will fail with
541
541
  MaxBlobSizeConditionNotMet error (HTTP status code 412 - Precondition Failed).
542
542
  :keyword int max_concurrency:
543
- Maximum number of parallel connections to use when the blob size exceeds
544
- 64MB.
543
+ Maximum number of parallel connections to use when transferring the blob in chunks.
544
+ This option does not affect the underlying connection pool, and may
545
+ require a separate configuration of the connection pool.
545
546
  :keyword ~azure.storage.blob.CustomerProvidedEncryptionKey cpk:
546
547
  Encrypts the data on the service-side with the given key.
547
548
  Use of customer-provided keys must be done over HTTPS.
@@ -695,7 +696,9 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
695
696
  As the encryption key itself is provided in the request,
696
697
  a secure connection must be established to transfer the key.
697
698
  :keyword int max_concurrency:
698
- The number of parallel connections with which to download.
699
+ Maximum number of parallel connections to use when transferring the blob in chunks.
700
+ This option does not affect the underlying connection pool, and may
701
+ require a separate configuration of the connection pool.
699
702
  :keyword Optional[str] encoding:
700
703
  Encoding to decode the downloaded bytes. Default is None, i.e. no decoding.
701
704
  :keyword progress_hook:
@@ -116,7 +116,7 @@ class _ChunkDownloader(object): # pylint: disable=too-many-instance-attributes
116
116
 
117
117
  # For a parallel download, the stream is always seekable, so we note down the current position
118
118
  # in order to seek to the right place when out-of-order chunks come in
119
- self.stream_start = stream.tell() if parallel else None
119
+ self.stream_start = stream.tell() if parallel else 0
120
120
 
121
121
  # Download progress so far
122
122
  self.progress_total = current_progress
@@ -656,7 +656,7 @@ class StorageStreamDownloader(Generic[T]): # pylint: disable=too-many-instance-
656
656
  output_stream: Union[BytesIO, StringIO]
657
657
  if self._text_mode:
658
658
  output_stream = StringIO()
659
- size = chars if chars else sys.maxsize
659
+ size = sys.maxsize if chars is None or chars <= 0 else chars
660
660
  else:
661
661
  output_stream = BytesIO()
662
662
  size = size if size > 0 else sys.maxsize
@@ -83,7 +83,7 @@ class AppendBlobOperations:
83
83
  :type content_length: int
84
84
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
85
85
  :code:`<a
86
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
86
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
87
87
  Timeouts for Blob Service Operations.</a>`. Default value is None.
88
88
  :type timeout: int
89
89
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -273,7 +273,7 @@ class AppendBlobOperations:
273
273
  :type body: IO[bytes]
274
274
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
275
275
  :code:`<a
276
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
276
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
277
277
  Timeouts for Blob Service Operations.</a>`. Default value is None.
278
278
  :type timeout: int
279
279
  :param transactional_content_md5: Specify the transactional md5 for the body, to be validated
@@ -471,7 +471,7 @@ class AppendBlobOperations:
471
471
  :type source_contentcrc64: bytes
472
472
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
473
473
  :code:`<a
474
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
474
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
475
475
  Timeouts for Blob Service Operations.</a>`. Default value is None.
476
476
  :type timeout: int
477
477
  :param transactional_content_md5: Specify the transactional md5 for the body, to be validated
@@ -646,7 +646,7 @@ class AppendBlobOperations:
646
646
 
647
647
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
648
648
  :code:`<a
649
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
649
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
650
650
  Timeouts for Blob Service Operations.</a>`. Default value is None.
651
651
  :type timeout: int
652
652
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -103,7 +103,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
103
103
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
104
104
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
105
105
  see :code:`<a
106
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
106
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
107
107
  a Snapshot of a Blob.</a>`. Default value is None.
108
108
  :type snapshot: str
109
109
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -112,7 +112,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
112
112
  :type version_id: str
113
113
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
114
114
  :code:`<a
115
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
115
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
116
116
  Timeouts for Blob Service Operations.</a>`. Default value is None.
117
117
  :type timeout: int
118
118
  :param range: Return only the bytes of the blob in the specified range. Default value is None.
@@ -419,7 +419,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
419
419
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
420
420
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
421
421
  see :code:`<a
422
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
422
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
423
423
  a Snapshot of a Blob.</a>`. Default value is None.
424
424
  :type snapshot: str
425
425
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -428,7 +428,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
428
428
  :type version_id: str
429
429
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
430
430
  :code:`<a
431
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
431
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
432
432
  Timeouts for Blob Service Operations.</a>`. Default value is None.
433
433
  :type timeout: int
434
434
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -633,7 +633,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
633
633
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
634
634
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
635
635
  see :code:`<a
636
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
636
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
637
637
  a Snapshot of a Blob.</a>`. Default value is None.
638
638
  :type snapshot: str
639
639
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -642,7 +642,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
642
642
  :type version_id: str
643
643
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
644
644
  :code:`<a
645
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
645
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
646
646
  Timeouts for Blob Service Operations.</a>`. Default value is None.
647
647
  :type timeout: int
648
648
  :param delete_snapshots: Required if the blob has associated snapshots. Specify one of the
@@ -746,7 +746,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
746
746
 
747
747
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
748
748
  :code:`<a
749
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
749
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
750
750
  Timeouts for Blob Service Operations.</a>`. Default value is None.
751
751
  :type timeout: int
752
752
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -822,7 +822,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
822
822
  :type expiry_options: str or ~azure.storage.blob.models.BlobExpiryOptions
823
823
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
824
824
  :code:`<a
825
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
825
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
826
826
  Timeouts for Blob Service Operations.</a>`. Default value is None.
827
827
  :type timeout: int
828
828
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -902,7 +902,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
902
902
 
903
903
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
904
904
  :code:`<a
905
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
905
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
906
906
  Timeouts for Blob Service Operations.</a>`. Default value is None.
907
907
  :type timeout: int
908
908
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1029,7 +1029,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1029
1029
 
1030
1030
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1031
1031
  :code:`<a
1032
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1032
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1033
1033
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1034
1034
  :type timeout: int
1035
1035
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1045,7 +1045,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1045
1045
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
1046
1046
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
1047
1047
  see :code:`<a
1048
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
1048
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
1049
1049
  a Snapshot of a Blob.</a>`. Default value is None.
1050
1050
  :type snapshot: str
1051
1051
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -1135,7 +1135,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1135
1135
 
1136
1136
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1137
1137
  :code:`<a
1138
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1138
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1139
1139
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1140
1140
  :type timeout: int
1141
1141
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1145,7 +1145,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1145
1145
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
1146
1146
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
1147
1147
  see :code:`<a
1148
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
1148
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
1149
1149
  a Snapshot of a Blob.</a>`. Default value is None.
1150
1150
  :type snapshot: str
1151
1151
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -1223,7 +1223,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1223
1223
  :type legal_hold: bool
1224
1224
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1225
1225
  :code:`<a
1226
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1226
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1227
1227
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1228
1228
  :type timeout: int
1229
1229
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1233,7 +1233,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1233
1233
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
1234
1234
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
1235
1235
  see :code:`<a
1236
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
1236
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
1237
1237
  a Snapshot of a Blob.</a>`. Default value is None.
1238
1238
  :type snapshot: str
1239
1239
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -1314,7 +1314,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1314
1314
 
1315
1315
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1316
1316
  :code:`<a
1317
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1317
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1318
1318
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1319
1319
  :type timeout: int
1320
1320
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -1453,7 +1453,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1453
1453
 
1454
1454
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1455
1455
  :code:`<a
1456
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1456
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1457
1457
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1458
1458
  :type timeout: int
1459
1459
  :param duration: Specifies the duration of the lease, in seconds, or negative one (-1) for a
@@ -1563,7 +1563,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1563
1563
  :type lease_id: str
1564
1564
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1565
1565
  :code:`<a
1566
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1566
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1567
1567
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1568
1568
  :type timeout: int
1569
1569
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1663,7 +1663,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1663
1663
  :type lease_id: str
1664
1664
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1665
1665
  :code:`<a
1666
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1666
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1667
1667
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1668
1668
  :type timeout: int
1669
1669
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1769,7 +1769,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1769
1769
  :type proposed_lease_id: str
1770
1770
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1771
1771
  :code:`<a
1772
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1772
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1773
1773
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1774
1774
  :type timeout: int
1775
1775
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1869,7 +1869,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1869
1869
 
1870
1870
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1871
1871
  :code:`<a
1872
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1872
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1873
1873
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1874
1874
  :type timeout: int
1875
1875
  :param break_period: For a break operation, proposed duration the lease should continue before
@@ -1978,7 +1978,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1978
1978
 
1979
1979
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1980
1980
  :code:`<a
1981
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1981
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1982
1982
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1983
1983
  :type timeout: int
1984
1984
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -2125,7 +2125,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2125
2125
  :type copy_source: str
2126
2126
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2127
2127
  :code:`<a
2128
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2128
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2129
2129
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2130
2130
  :type timeout: int
2131
2131
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -2301,7 +2301,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2301
2301
  :type copy_source: str
2302
2302
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2303
2303
  :code:`<a
2304
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2304
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2305
2305
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2306
2306
  :type timeout: int
2307
2307
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -2482,7 +2482,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2482
2482
  :type copy_id: str
2483
2483
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2484
2484
  :code:`<a
2485
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2485
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2486
2486
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2487
2487
  :type timeout: int
2488
2488
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -2580,7 +2580,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2580
2580
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
2581
2581
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
2582
2582
  see :code:`<a
2583
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
2583
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
2584
2584
  a Snapshot of a Blob.</a>`. Default value is None.
2585
2585
  :type snapshot: str
2586
2586
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -2589,7 +2589,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2589
2589
  :type version_id: str
2590
2590
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2591
2591
  :code:`<a
2592
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2592
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2593
2593
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2594
2594
  :type timeout: int
2595
2595
  :param rehydrate_priority: Optional: Indicates the priority with which to rehydrate an archived
@@ -2676,7 +2676,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2676
2676
 
2677
2677
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2678
2678
  :code:`<a
2679
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2679
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2680
2680
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2681
2681
  :type timeout: int
2682
2682
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -2759,12 +2759,12 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2759
2759
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
2760
2760
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
2761
2761
  see :code:`<a
2762
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
2762
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
2763
2763
  a Snapshot of a Blob.</a>`. Default value is None.
2764
2764
  :type snapshot: str
2765
2765
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2766
2766
  :code:`<a
2767
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2767
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2768
2768
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2769
2769
  :type timeout: int
2770
2770
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -3007,7 +3007,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
3007
3007
 
3008
3008
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
3009
3009
  :code:`<a
3010
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3010
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3011
3011
  Timeouts for Blob Service Operations.</a>`. Default value is None.
3012
3012
  :type timeout: int
3013
3013
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -3017,7 +3017,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
3017
3017
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
3018
3018
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
3019
3019
  see :code:`<a
3020
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
3020
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
3021
3021
  a Snapshot of a Blob.</a>`. Default value is None.
3022
3022
  :type snapshot: str
3023
3023
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -3113,7 +3113,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
3113
3113
 
3114
3114
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
3115
3115
  :code:`<a
3116
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3116
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3117
3117
  Timeouts for Blob Service Operations.</a>`. Default value is None.
3118
3118
  :type timeout: int
3119
3119
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -97,7 +97,7 @@ class BlockBlobOperations:
97
97
  :type body: IO[bytes]
98
98
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
99
99
  :code:`<a
100
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
100
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
101
101
  Timeouts for Blob Service Operations.</a>`. Default value is None.
102
102
  :type timeout: int
103
103
  :param transactional_content_md5: Specify the transactional md5 for the body, to be validated
@@ -326,7 +326,7 @@ class BlockBlobOperations:
326
326
  :type copy_source: str
327
327
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
328
328
  :code:`<a
329
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
329
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
330
330
  Timeouts for Blob Service Operations.</a>`. Default value is None.
331
331
  :type timeout: int
332
332
  :param transactional_content_md5: Specify the transactional md5 for the body, to be validated
@@ -558,7 +558,7 @@ class BlockBlobOperations:
558
558
  :type transactional_content_crc64: bytes
559
559
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
560
560
  :code:`<a
561
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
561
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
562
562
  Timeouts for Blob Service Operations.</a>`. Default value is None.
563
563
  :type timeout: int
564
564
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -715,7 +715,7 @@ class BlockBlobOperations:
715
715
  :type source_contentcrc64: bytes
716
716
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
717
717
  :code:`<a
718
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
718
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
719
719
  Timeouts for Blob Service Operations.</a>`. Default value is None.
720
720
  :type timeout: int
721
721
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -872,7 +872,7 @@ class BlockBlobOperations:
872
872
  :type blocks: ~azure.storage.blob.models.BlockLookupList
873
873
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
874
874
  :code:`<a
875
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
875
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
876
876
  Timeouts for Blob Service Operations.</a>`. Default value is None.
877
877
  :type timeout: int
878
878
  :param transactional_content_md5: Specify the transactional md5 for the body, to be validated
@@ -1070,7 +1070,7 @@ class BlockBlobOperations:
1070
1070
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
1071
1071
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
1072
1072
  see :code:`<a
1073
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
1073
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
1074
1074
  a Snapshot of a Blob.</a>`. Default value is None.
1075
1075
  :type snapshot: str
1076
1076
  :param list_type: Specifies whether to return the list of committed blocks, the list of
@@ -1079,7 +1079,7 @@ class BlockBlobOperations:
1079
1079
  :type list_type: str or ~azure.storage.blob.models.BlockListType
1080
1080
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1081
1081
  :code:`<a
1082
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1082
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1083
1083
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1084
1084
  :type timeout: int
1085
1085
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -89,7 +89,7 @@ class ContainerOperations:
89
89
 
90
90
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
91
91
  :code:`<a
92
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
92
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
93
93
  Timeouts for Blob Service Operations.</a>`. Default value is None.
94
94
  :type timeout: int
95
95
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -187,7 +187,7 @@ class ContainerOperations:
187
187
 
188
188
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
189
189
  :code:`<a
190
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
190
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
191
191
  Timeouts for Blob Service Operations.</a>`. Default value is None.
192
192
  :type timeout: int
193
193
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -290,7 +290,7 @@ class ContainerOperations:
290
290
 
291
291
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
292
292
  :code:`<a
293
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
293
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
294
294
  Timeouts for Blob Service Operations.</a>`. Default value is None.
295
295
  :type timeout: int
296
296
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -380,7 +380,7 @@ class ContainerOperations:
380
380
 
381
381
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
382
382
  :code:`<a
383
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
383
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
384
384
  Timeouts for Blob Service Operations.</a>`. Default value is None.
385
385
  :type timeout: int
386
386
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -479,7 +479,7 @@ class ContainerOperations:
479
479
 
480
480
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
481
481
  :code:`<a
482
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
482
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
483
483
  Timeouts for Blob Service Operations.</a>`. Default value is None.
484
484
  :type timeout: int
485
485
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -573,7 +573,7 @@ class ContainerOperations:
573
573
 
574
574
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
575
575
  :code:`<a
576
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
576
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
577
577
  Timeouts for Blob Service Operations.</a>`. Default value is None.
578
578
  :type timeout: int
579
579
  :param access: Specifies whether data in the container may be accessed publicly and the level
@@ -682,7 +682,7 @@ class ContainerOperations:
682
682
 
683
683
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
684
684
  :code:`<a
685
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
685
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
686
686
  Timeouts for Blob Service Operations.</a>`. Default value is None.
687
687
  :type timeout: int
688
688
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -768,7 +768,7 @@ class ContainerOperations:
768
768
  :type source_container_name: str
769
769
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
770
770
  :code:`<a
771
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
771
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
772
772
  Timeouts for Blob Service Operations.</a>`. Default value is None.
773
773
  :type timeout: int
774
774
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -852,7 +852,7 @@ class ContainerOperations:
852
852
  :type body: IO[bytes]
853
853
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
854
854
  :code:`<a
855
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
855
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
856
856
  Timeouts for Blob Service Operations.</a>`. Default value is None.
857
857
  :type timeout: int
858
858
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -944,7 +944,7 @@ class ContainerOperations:
944
944
 
945
945
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
946
946
  :code:`<a
947
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
947
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
948
948
  Timeouts for Blob Service Operations.</a>`. Default value is None.
949
949
  :type timeout: int
950
950
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1049,7 +1049,7 @@ class ContainerOperations:
1049
1049
 
1050
1050
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1051
1051
  :code:`<a
1052
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1052
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1053
1053
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1054
1054
  :type timeout: int
1055
1055
  :param duration: Specifies the duration of the lease, in seconds, or negative one (-1) for a
@@ -1152,7 +1152,7 @@ class ContainerOperations:
1152
1152
  :type lease_id: str
1153
1153
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1154
1154
  :code:`<a
1155
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1155
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1156
1156
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1157
1157
  :type timeout: int
1158
1158
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1245,7 +1245,7 @@ class ContainerOperations:
1245
1245
  :type lease_id: str
1246
1246
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1247
1247
  :code:`<a
1248
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1248
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1249
1249
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1250
1250
  :type timeout: int
1251
1251
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1337,7 +1337,7 @@ class ContainerOperations:
1337
1337
 
1338
1338
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1339
1339
  :code:`<a
1340
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1340
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1341
1341
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1342
1342
  :type timeout: int
1343
1343
  :param break_period: For a break operation, proposed duration the lease should continue before
@@ -1444,7 +1444,7 @@ class ContainerOperations:
1444
1444
  :type proposed_lease_id: str
1445
1445
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1446
1446
  :code:`<a
1447
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1447
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1448
1448
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1449
1449
  :type timeout: int
1450
1450
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1558,7 +1558,7 @@ class ContainerOperations:
1558
1558
  :type include: list[str or ~azure.storage.blob.models.ListBlobsIncludeItem]
1559
1559
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1560
1560
  :code:`<a
1561
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1561
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1562
1562
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1563
1563
  :type timeout: int
1564
1564
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1670,7 +1670,7 @@ class ContainerOperations:
1670
1670
  :type include: list[str or ~azure.storage.blob.models.ListBlobsIncludeItem]
1671
1671
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1672
1672
  :code:`<a
1673
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1673
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1674
1674
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1675
1675
  :type timeout: int
1676
1676
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -1750,7 +1750,7 @@ class ContainerOperations:
1750
1750
 
1751
1751
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1752
1752
  :code:`<a
1753
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1753
+ href="https://learn.microsoft.com/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1754
1754
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1755
1755
  :type timeout: int
1756
1756
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character