azure-storage-blob 12.26.0__py3-none-any.whl → 12.27.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. azure/storage/blob/__init__.py +3 -3
  2. azure/storage/blob/_blob_client.py +16 -0
  3. azure/storage/blob/_blob_client.pyi +780 -0
  4. azure/storage/blob/_blob_service_client.py +41 -4
  5. azure/storage/blob/_blob_service_client.pyi +182 -0
  6. azure/storage/blob/_container_client.py +22 -0
  7. azure/storage/blob/_container_client.pyi +380 -0
  8. azure/storage/blob/_generated/_azure_blob_storage.py +3 -2
  9. azure/storage/blob/_generated/_configuration.py +2 -2
  10. azure/storage/blob/_generated/_utils/__init__.py +6 -0
  11. azure/storage/blob/_generated/{_serialization.py → _utils/serialization.py} +4 -22
  12. azure/storage/blob/_generated/aio/_azure_blob_storage.py +3 -2
  13. azure/storage/blob/_generated/aio/_configuration.py +2 -2
  14. azure/storage/blob/_generated/aio/operations/_append_blob_operations.py +6 -10
  15. azure/storage/blob/_generated/aio/operations/_blob_operations.py +35 -39
  16. azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +9 -13
  17. azure/storage/blob/_generated/aio/operations/_container_operations.py +20 -24
  18. azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +13 -17
  19. azure/storage/blob/_generated/aio/operations/_service_operations.py +10 -14
  20. azure/storage/blob/_generated/models/_models_py3.py +30 -9
  21. azure/storage/blob/_generated/operations/_append_blob_operations.py +11 -15
  22. azure/storage/blob/_generated/operations/_blob_operations.py +60 -64
  23. azure/storage/blob/_generated/operations/_block_blob_operations.py +16 -20
  24. azure/storage/blob/_generated/operations/_container_operations.py +39 -43
  25. azure/storage/blob/_generated/operations/_page_blob_operations.py +23 -27
  26. azure/storage/blob/_generated/operations/_service_operations.py +19 -23
  27. azure/storage/blob/_lease.py +2 -2
  28. azure/storage/blob/_lease.pyi +81 -0
  29. azure/storage/blob/_list_blobs_helper.py +1 -1
  30. azure/storage/blob/_serialize.py +1 -0
  31. azure/storage/blob/_shared/base_client.py +0 -13
  32. azure/storage/blob/_shared/base_client_async.py +0 -22
  33. azure/storage/blob/_shared/models.py +1 -0
  34. azure/storage/blob/_shared/policies.py +10 -2
  35. azure/storage/blob/_shared/response_handlers.py +5 -0
  36. azure/storage/blob/_version.py +1 -1
  37. azure/storage/blob/aio/__init__.py +5 -8
  38. azure/storage/blob/aio/_blob_client_async.py +28 -8
  39. azure/storage/blob/aio/_blob_client_async.pyi +763 -0
  40. azure/storage/blob/aio/_blob_service_client_async.py +41 -4
  41. azure/storage/blob/aio/_blob_service_client_async.pyi +187 -0
  42. azure/storage/blob/aio/_container_client_async.py +27 -1
  43. azure/storage/blob/aio/_container_client_async.pyi +384 -0
  44. azure/storage/blob/aio/_lease_async.py +2 -2
  45. azure/storage/blob/aio/_lease_async.pyi +81 -0
  46. {azure_storage_blob-12.26.0.dist-info → azure_storage_blob-12.27.0.dist-info}/METADATA +17 -5
  47. {azure_storage_blob-12.26.0.dist-info → azure_storage_blob-12.27.0.dist-info}/RECORD +50 -41
  48. {azure_storage_blob-12.26.0.dist-info → azure_storage_blob-12.27.0.dist-info}/WHEEL +1 -1
  49. {azure_storage_blob-12.26.0.dist-info → azure_storage_blob-12.27.0.dist-info/licenses}/LICENSE +0 -0
  50. {azure_storage_blob-12.26.0.dist-info → azure_storage_blob-12.27.0.dist-info}/top_level.txt +0 -0
@@ -6,8 +6,8 @@
6
6
  # Code generated by Microsoft (R) AutoRest Code Generator.
7
7
  # Changes may cause incorrect behavior and will be lost if the code is regenerated.
8
8
  # --------------------------------------------------------------------------
9
+ from collections.abc import MutableMapping
9
10
  import datetime
10
- import sys
11
11
  from typing import Any, Callable, Dict, Iterator, Literal, Optional, TypeVar, Union
12
12
 
13
13
  from azure.core import PipelineClient
@@ -28,12 +28,8 @@ from azure.core.utils import case_insensitive_dict
28
28
 
29
29
  from .. import models as _models
30
30
  from .._configuration import AzureBlobStorageConfiguration
31
- from .._serialization import Deserializer, Serializer
31
+ from .._utils.serialization import Deserializer, Serializer
32
32
 
33
- if sys.version_info >= (3, 9):
34
- from collections.abc import MutableMapping
35
- else:
36
- from typing import MutableMapping # type: ignore
37
33
  T = TypeVar("T")
38
34
  ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
39
35
 
@@ -66,7 +62,7 @@ def build_download_request(
66
62
  _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
67
63
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
68
64
 
69
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
65
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
70
66
  accept = _headers.pop("Accept", "application/xml")
71
67
 
72
68
  # Construct URL
@@ -147,7 +143,7 @@ def build_get_properties_request(
147
143
  _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
148
144
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
149
145
 
150
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
146
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
151
147
  accept = _headers.pop("Accept", "application/xml")
152
148
 
153
149
  # Construct URL
@@ -215,7 +211,7 @@ def build_delete_request(
215
211
  _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
216
212
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
217
213
 
218
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
214
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
219
215
  accept = _headers.pop("Accept", "application/xml")
220
216
 
221
217
  # Construct URL
@@ -266,7 +262,7 @@ def build_undelete_request(
266
262
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
267
263
 
268
264
  comp: Literal["undelete"] = kwargs.pop("comp", _params.pop("comp", "undelete"))
269
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
265
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
270
266
  accept = _headers.pop("Accept", "application/xml")
271
267
 
272
268
  # Construct URL
@@ -304,7 +300,7 @@ def build_set_expiry_request(
304
300
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
305
301
 
306
302
  comp: Literal["expiry"] = kwargs.pop("comp", _params.pop("comp", "expiry"))
307
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
303
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
308
304
  accept = _headers.pop("Accept", "application/xml")
309
305
 
310
306
  # Construct URL
@@ -355,7 +351,7 @@ def build_set_http_headers_request(
355
351
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
356
352
 
357
353
  comp: Literal["properties"] = kwargs.pop("comp", _params.pop("comp", "properties"))
358
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
354
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
359
355
  accept = _headers.pop("Accept", "application/xml")
360
356
 
361
357
  # Construct URL
@@ -426,7 +422,7 @@ def build_set_immutability_policy_request(
426
422
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
427
423
 
428
424
  comp: Literal["immutabilityPolicies"] = kwargs.pop("comp", _params.pop("comp", "immutabilityPolicies"))
429
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
425
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
430
426
  accept = _headers.pop("Accept", "application/xml")
431
427
 
432
428
  # Construct URL
@@ -478,7 +474,7 @@ def build_delete_immutability_policy_request(
478
474
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
479
475
 
480
476
  comp: Literal["immutabilityPolicies"] = kwargs.pop("comp", _params.pop("comp", "immutabilityPolicies"))
481
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
477
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
482
478
  accept = _headers.pop("Accept", "application/xml")
483
479
 
484
480
  # Construct URL
@@ -521,7 +517,7 @@ def build_set_legal_hold_request(
521
517
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
522
518
 
523
519
  comp: Literal["legalhold"] = kwargs.pop("comp", _params.pop("comp", "legalhold"))
524
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
520
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
525
521
  accept = _headers.pop("Accept", "application/xml")
526
522
 
527
523
  # Construct URL
@@ -573,7 +569,7 @@ def build_set_metadata_request(
573
569
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
574
570
 
575
571
  comp: Literal["metadata"] = kwargs.pop("comp", _params.pop("comp", "metadata"))
576
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
572
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
577
573
  accept = _headers.pop("Accept", "application/xml")
578
574
 
579
575
  # Construct URL
@@ -641,7 +637,7 @@ def build_acquire_lease_request(
641
637
 
642
638
  comp: Literal["lease"] = kwargs.pop("comp", _params.pop("comp", "lease"))
643
639
  action: Literal["acquire"] = kwargs.pop("action", _headers.pop("x-ms-lease-action", "acquire"))
644
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
640
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
645
641
  accept = _headers.pop("Accept", "application/xml")
646
642
 
647
643
  # Construct URL
@@ -699,7 +695,7 @@ def build_release_lease_request(
699
695
 
700
696
  comp: Literal["lease"] = kwargs.pop("comp", _params.pop("comp", "lease"))
701
697
  action: Literal["release"] = kwargs.pop("action", _headers.pop("x-ms-lease-action", "release"))
702
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
698
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
703
699
  accept = _headers.pop("Accept", "application/xml")
704
700
 
705
701
  # Construct URL
@@ -754,7 +750,7 @@ def build_renew_lease_request(
754
750
 
755
751
  comp: Literal["lease"] = kwargs.pop("comp", _params.pop("comp", "lease"))
756
752
  action: Literal["renew"] = kwargs.pop("action", _headers.pop("x-ms-lease-action", "renew"))
757
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
753
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
758
754
  accept = _headers.pop("Accept", "application/xml")
759
755
 
760
756
  # Construct URL
@@ -810,7 +806,7 @@ def build_change_lease_request(
810
806
 
811
807
  comp: Literal["lease"] = kwargs.pop("comp", _params.pop("comp", "lease"))
812
808
  action: Literal["change"] = kwargs.pop("action", _headers.pop("x-ms-lease-action", "change"))
813
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
809
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
814
810
  accept = _headers.pop("Accept", "application/xml")
815
811
 
816
812
  # Construct URL
@@ -866,7 +862,7 @@ def build_break_lease_request(
866
862
 
867
863
  comp: Literal["lease"] = kwargs.pop("comp", _params.pop("comp", "lease"))
868
864
  action: Literal["break"] = kwargs.pop("action", _headers.pop("x-ms-lease-action", "break"))
869
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
865
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
870
866
  accept = _headers.pop("Accept", "application/xml")
871
867
 
872
868
  # Construct URL
@@ -926,7 +922,7 @@ def build_create_snapshot_request(
926
922
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
927
923
 
928
924
  comp: Literal["snapshot"] = kwargs.pop("comp", _params.pop("comp", "snapshot"))
929
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
925
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
930
926
  accept = _headers.pop("Accept", "application/xml")
931
927
 
932
928
  # Construct URL
@@ -1005,7 +1001,7 @@ def build_start_copy_from_url_request(
1005
1001
  _headers = case_insensitive_dict(kwargs.pop("headers", {}) or {})
1006
1002
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
1007
1003
 
1008
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
1004
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
1009
1005
  accept = _headers.pop("Accept", "application/xml")
1010
1006
 
1011
1007
  # Construct URL
@@ -1109,7 +1105,7 @@ def build_copy_from_url_request(
1109
1105
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
1110
1106
 
1111
1107
  x_ms_requires_sync: Literal["true"] = kwargs.pop("x_ms_requires_sync", _headers.pop("x-ms-requires-sync", "true"))
1112
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
1108
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
1113
1109
  accept = _headers.pop("Accept", "application/xml")
1114
1110
 
1115
1111
  # Construct URL
@@ -1203,7 +1199,7 @@ def build_abort_copy_from_url_request(
1203
1199
  copy_action_abort_constant: Literal["abort"] = kwargs.pop(
1204
1200
  "copy_action_abort_constant", _headers.pop("x-ms-copy-action", "abort")
1205
1201
  )
1206
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
1202
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
1207
1203
  accept = _headers.pop("Accept", "application/xml")
1208
1204
 
1209
1205
  # Construct URL
@@ -1249,7 +1245,7 @@ def build_set_tier_request(
1249
1245
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
1250
1246
 
1251
1247
  comp: Literal["tier"] = kwargs.pop("comp", _params.pop("comp", "tier"))
1252
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
1248
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
1253
1249
  accept = _headers.pop("Accept", "application/xml")
1254
1250
 
1255
1251
  # Construct URL
@@ -1293,7 +1289,7 @@ def build_get_account_info_request(
1293
1289
 
1294
1290
  restype: Literal["account"] = kwargs.pop("restype", _params.pop("restype", "account"))
1295
1291
  comp: Literal["properties"] = kwargs.pop("comp", _params.pop("comp", "properties"))
1296
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
1292
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
1297
1293
  accept = _headers.pop("Accept", "application/xml")
1298
1294
 
1299
1295
  # Construct URL
@@ -1342,7 +1338,7 @@ def build_query_request(
1342
1338
 
1343
1339
  comp: Literal["query"] = kwargs.pop("comp", _params.pop("comp", "query"))
1344
1340
  content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
1345
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
1341
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
1346
1342
  accept = _headers.pop("Accept", "application/xml")
1347
1343
 
1348
1344
  # Construct URL
@@ -1406,7 +1402,7 @@ def build_get_tags_request(
1406
1402
  _params = case_insensitive_dict(kwargs.pop("params", {}) or {})
1407
1403
 
1408
1404
  comp: Literal["tags"] = kwargs.pop("comp", _params.pop("comp", "tags"))
1409
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
1405
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
1410
1406
  accept = _headers.pop("Accept", "application/xml")
1411
1407
 
1412
1408
  # Construct URL
@@ -1457,7 +1453,7 @@ def build_set_tags_request(
1457
1453
 
1458
1454
  comp: Literal["tags"] = kwargs.pop("comp", _params.pop("comp", "tags"))
1459
1455
  content_type: Optional[str] = kwargs.pop("content_type", _headers.pop("Content-Type", None))
1460
- version: Literal["2025-07-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-07-05"))
1456
+ version: Literal["2025-11-05"] = kwargs.pop("version", _headers.pop("x-ms-version", "2025-11-05"))
1461
1457
  accept = _headers.pop("Accept", "application/xml")
1462
1458
 
1463
1459
  # Construct URL
@@ -1510,7 +1506,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1510
1506
 
1511
1507
  models = _models
1512
1508
 
1513
- def __init__(self, *args, **kwargs):
1509
+ def __init__(self, *args, **kwargs) -> None:
1514
1510
  input_args = list(args)
1515
1511
  self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
1516
1512
  self._config: AzureBlobStorageConfiguration = input_args.pop(0) if input_args else kwargs.pop("config")
@@ -1539,7 +1535,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1539
1535
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
1540
1536
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
1541
1537
  see :code:`<a
1542
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
1538
+ href="https://learn.microsoft.com/rest/api/storageservices/creating-a-snapshot-of-a-blob">Creating
1543
1539
  a Snapshot of a Blob.</a>`. Default value is None.
1544
1540
  :type snapshot: str
1545
1541
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -1548,7 +1544,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1548
1544
  :type version_id: str
1549
1545
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1550
1546
  :code:`<a
1551
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1547
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
1552
1548
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1553
1549
  :type timeout: int
1554
1550
  :param range: Return only the bytes of the blob in the specified range. Default value is None.
@@ -1854,7 +1850,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1854
1850
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
1855
1851
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
1856
1852
  see :code:`<a
1857
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
1853
+ href="https://learn.microsoft.com/rest/api/storageservices/creating-a-snapshot-of-a-blob">Creating
1858
1854
  a Snapshot of a Blob.</a>`. Default value is None.
1859
1855
  :type snapshot: str
1860
1856
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -1863,7 +1859,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
1863
1859
  :type version_id: str
1864
1860
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
1865
1861
  :code:`<a
1866
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
1862
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
1867
1863
  Timeouts for Blob Service Operations.</a>`. Default value is None.
1868
1864
  :type timeout: int
1869
1865
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -2067,7 +2063,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2067
2063
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
2068
2064
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
2069
2065
  see :code:`<a
2070
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
2066
+ href="https://learn.microsoft.com/rest/api/storageservices/creating-a-snapshot-of-a-blob">Creating
2071
2067
  a Snapshot of a Blob.</a>`. Default value is None.
2072
2068
  :type snapshot: str
2073
2069
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -2076,7 +2072,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2076
2072
  :type version_id: str
2077
2073
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2078
2074
  :code:`<a
2079
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2075
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
2080
2076
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2081
2077
  :type timeout: int
2082
2078
  :param delete_snapshots: Required if the blob has associated snapshots. Specify one of the
@@ -2179,7 +2175,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2179
2175
 
2180
2176
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2181
2177
  :code:`<a
2182
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2178
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
2183
2179
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2184
2180
  :type timeout: int
2185
2181
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -2254,7 +2250,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2254
2250
  :type expiry_options: str or ~azure.storage.blob.models.BlobExpiryOptions
2255
2251
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2256
2252
  :code:`<a
2257
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2253
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
2258
2254
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2259
2255
  :type timeout: int
2260
2256
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -2333,7 +2329,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2333
2329
 
2334
2330
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2335
2331
  :code:`<a
2336
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2332
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
2337
2333
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2338
2334
  :type timeout: int
2339
2335
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -2459,7 +2455,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2459
2455
 
2460
2456
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2461
2457
  :code:`<a
2462
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2458
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
2463
2459
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2464
2460
  :type timeout: int
2465
2461
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -2475,7 +2471,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2475
2471
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
2476
2472
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
2477
2473
  see :code:`<a
2478
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
2474
+ href="https://learn.microsoft.com/rest/api/storageservices/creating-a-snapshot-of-a-blob">Creating
2479
2475
  a Snapshot of a Blob.</a>`. Default value is None.
2480
2476
  :type snapshot: str
2481
2477
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -2564,7 +2560,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2564
2560
 
2565
2561
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2566
2562
  :code:`<a
2567
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2563
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
2568
2564
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2569
2565
  :type timeout: int
2570
2566
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -2574,7 +2570,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2574
2570
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
2575
2571
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
2576
2572
  see :code:`<a
2577
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
2573
+ href="https://learn.microsoft.com/rest/api/storageservices/creating-a-snapshot-of-a-blob">Creating
2578
2574
  a Snapshot of a Blob.</a>`. Default value is None.
2579
2575
  :type snapshot: str
2580
2576
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -2651,7 +2647,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2651
2647
  :type legal_hold: bool
2652
2648
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2653
2649
  :code:`<a
2654
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2650
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
2655
2651
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2656
2652
  :type timeout: int
2657
2653
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -2661,7 +2657,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2661
2657
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
2662
2658
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
2663
2659
  see :code:`<a
2664
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
2660
+ href="https://learn.microsoft.com/rest/api/storageservices/creating-a-snapshot-of-a-blob">Creating
2665
2661
  a Snapshot of a Blob.</a>`. Default value is None.
2666
2662
  :type snapshot: str
2667
2663
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -2741,7 +2737,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2741
2737
 
2742
2738
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2743
2739
  :code:`<a
2744
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2740
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
2745
2741
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2746
2742
  :type timeout: int
2747
2743
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -2879,7 +2875,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2879
2875
 
2880
2876
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2881
2877
  :code:`<a
2882
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2878
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
2883
2879
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2884
2880
  :type timeout: int
2885
2881
  :param duration: Specifies the duration of the lease, in seconds, or negative one (-1) for a
@@ -2988,7 +2984,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
2988
2984
  :type lease_id: str
2989
2985
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
2990
2986
  :code:`<a
2991
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
2987
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
2992
2988
  Timeouts for Blob Service Operations.</a>`. Default value is None.
2993
2989
  :type timeout: int
2994
2990
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -3087,7 +3083,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
3087
3083
  :type lease_id: str
3088
3084
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
3089
3085
  :code:`<a
3090
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3086
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
3091
3087
  Timeouts for Blob Service Operations.</a>`. Default value is None.
3092
3088
  :type timeout: int
3093
3089
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -3192,7 +3188,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
3192
3188
  :type proposed_lease_id: str
3193
3189
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
3194
3190
  :code:`<a
3195
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3191
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
3196
3192
  Timeouts for Blob Service Operations.</a>`. Default value is None.
3197
3193
  :type timeout: int
3198
3194
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -3291,7 +3287,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
3291
3287
 
3292
3288
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
3293
3289
  :code:`<a
3294
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3290
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
3295
3291
  Timeouts for Blob Service Operations.</a>`. Default value is None.
3296
3292
  :type timeout: int
3297
3293
  :param break_period: For a break operation, proposed duration the lease should continue before
@@ -3399,7 +3395,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
3399
3395
 
3400
3396
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
3401
3397
  :code:`<a
3402
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3398
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
3403
3399
  Timeouts for Blob Service Operations.</a>`. Default value is None.
3404
3400
  :type timeout: int
3405
3401
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -3545,7 +3541,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
3545
3541
  :type copy_source: str
3546
3542
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
3547
3543
  :code:`<a
3548
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3544
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
3549
3545
  Timeouts for Blob Service Operations.</a>`. Default value is None.
3550
3546
  :type timeout: int
3551
3547
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -3721,7 +3717,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
3721
3717
  :type copy_source: str
3722
3718
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
3723
3719
  :code:`<a
3724
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3720
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
3725
3721
  Timeouts for Blob Service Operations.</a>`. Default value is None.
3726
3722
  :type timeout: int
3727
3723
  :param metadata: Optional. Specifies a user-defined name-value pair associated with the blob.
@@ -3904,7 +3900,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
3904
3900
  :type copy_id: str
3905
3901
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
3906
3902
  :code:`<a
3907
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
3903
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
3908
3904
  Timeouts for Blob Service Operations.</a>`. Default value is None.
3909
3905
  :type timeout: int
3910
3906
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -4001,7 +3997,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
4001
3997
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
4002
3998
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
4003
3999
  see :code:`<a
4004
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
4000
+ href="https://learn.microsoft.com/rest/api/storageservices/creating-a-snapshot-of-a-blob">Creating
4005
4001
  a Snapshot of a Blob.</a>`. Default value is None.
4006
4002
  :type snapshot: str
4007
4003
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -4010,7 +4006,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
4010
4006
  :type version_id: str
4011
4007
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
4012
4008
  :code:`<a
4013
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
4009
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
4014
4010
  Timeouts for Blob Service Operations.</a>`. Default value is None.
4015
4011
  :type timeout: int
4016
4012
  :param rehydrate_priority: Optional: Indicates the priority with which to rehydrate an archived
@@ -4096,7 +4092,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
4096
4092
 
4097
4093
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
4098
4094
  :code:`<a
4099
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
4095
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
4100
4096
  Timeouts for Blob Service Operations.</a>`. Default value is None.
4101
4097
  :type timeout: int
4102
4098
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -4178,12 +4174,12 @@ class BlobOperations: # pylint: disable=too-many-public-methods
4178
4174
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
4179
4175
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
4180
4176
  see :code:`<a
4181
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
4177
+ href="https://learn.microsoft.com/rest/api/storageservices/creating-a-snapshot-of-a-blob">Creating
4182
4178
  a Snapshot of a Blob.</a>`. Default value is None.
4183
4179
  :type snapshot: str
4184
4180
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
4185
4181
  :code:`<a
4186
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
4182
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
4187
4183
  Timeouts for Blob Service Operations.</a>`. Default value is None.
4188
4184
  :type timeout: int
4189
4185
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -4425,7 +4421,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
4425
4421
 
4426
4422
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
4427
4423
  :code:`<a
4428
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
4424
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
4429
4425
  Timeouts for Blob Service Operations.</a>`. Default value is None.
4430
4426
  :type timeout: int
4431
4427
  :param request_id_parameter: Provides a client-generated, opaque value with a 1 KB character
@@ -4435,7 +4431,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
4435
4431
  :param snapshot: The snapshot parameter is an opaque DateTime value that, when present,
4436
4432
  specifies the blob snapshot to retrieve. For more information on working with blob snapshots,
4437
4433
  see :code:`<a
4438
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
4434
+ href="https://learn.microsoft.com/rest/api/storageservices/creating-a-snapshot-of-a-blob">Creating
4439
4435
  a Snapshot of a Blob.</a>`. Default value is None.
4440
4436
  :type snapshot: str
4441
4437
  :param version_id: The version id parameter is an opaque DateTime value that, when present,
@@ -4530,7 +4526,7 @@ class BlobOperations: # pylint: disable=too-many-public-methods
4530
4526
 
4531
4527
  :param timeout: The timeout parameter is expressed in seconds. For more information, see
4532
4528
  :code:`<a
4533
- href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
4529
+ href="https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations">Setting
4534
4530
  Timeouts for Blob Service Operations.</a>`. Default value is None.
4535
4531
  :type timeout: int
4536
4532
  :param version_id: The version id parameter is an opaque DateTime value that, when present,