forked from MicrosoftDocs/azure-docs-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure.storage.blob.BlobClient.yml
4715 lines (3643 loc) · 169 KB
/
azure.storage.blob.BlobClient.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
### YamlMime:PythonClass
uid: azure.storage.blob.BlobClient
name: BlobClient
fullName: azure.storage.blob.BlobClient
module: azure.storage.blob
inheritances:
- azure.storage.blob._shared.base_client.StorageAccountHostsMixin
- azure.storage.blob._encryption.StorageEncryptionMixin
summary: 'A client to interact with a specific blob, although that blob may not yet
exist.
For more optional configuration, please click
[here](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob#optional-configuration).'
constructor:
syntax: 'BlobClient(account_url: str, container_name: str, blob_name: str, snapshot:
str | Dict[str, Any] | None = None, credential: str | Dict[str, str] | AzureNamedKeyCredential
| AzureSasCredential | TokenCredential | None = None, **kwargs: Any)'
parameters:
- name: account_url
description: 'The URI to the storage account. In order to create a client given
the full URI to the blob,
use the <xref:azure.storage.blob.BlobClient.from_blob_url> classmethod.'
isRequired: true
types:
- <xref:str>
- name: container_name
description: The container name for the blob.
isRequired: true
types:
- <xref:str>
- name: blob_name
description: 'The name of the blob with which to interact. If specified, this
value will override
a blob value specified in the blob URL.'
isRequired: true
types:
- <xref:str>
- name: snapshot
description: 'The optional blob snapshot on which to operate. This can be the
snapshot ID string
or the response returned from <xref:azure.storage.blob.BlobClient.create_snapshot>.'
defaultValue: None
types:
- <xref:str>
- name: credential
description: 'The credentials with which to authenticate. This is optional if
the
account URL already has a SAS token. The value can be a SAS token string,
an instance of a AzureSasCredential or AzureNamedKeyCredential from azure.core.credentials,
an account shared access key, or an instance of a TokenCredentials class from
azure.identity.
If the resource URI already contains a SAS token, this will be ignored in favor
of an explicit credential
- except in the case of AzureSasCredential, where the conflicting SAS tokens
will raise a ValueError.
If using an instance of AzureNamedKeyCredential, "name" should be the storage
account name, and "key"
should be the storage account key.'
defaultValue: None
- name: api_version
description: 'The Storage API version to use for requests. Default value is the
most recent service version that is
compatible with the current SDK. Setting to an older version may result in reduced
feature compatibility.
New in version 12.2.0.'
types:
- <xref:str>
- name: secondary_hostname
description: The hostname of the secondary endpoint.
types:
- <xref:str>
- name: max_block_size
description: 'The maximum chunk size for uploading a block blob in chunks.
Defaults to 4*1024*1024, or 4MB.'
types:
- <xref:int>
- name: max_single_put_size
description: 'If the blob size is less than or equal max_single_put_size, then
the blob will be
uploaded with only one http PUT request. If the blob size is larger than max_single_put_size,
the blob will be uploaded in chunks. Defaults to 64*1024*1024, or 64MB.'
types:
- <xref:int>
- name: min_large_block_upload_threshold
description: 'The minimum chunk size required to use the memory efficient
algorithm when uploading a block blob. Defaults to 4*1024*1024+1.'
types:
- <xref:int>
- name: use_byte_buffer
description: Use a byte buffer for block blob uploads. Defaults to False.
types:
- <xref:bool>
- name: max_page_size
description: The maximum chunk size for uploading a page blob. Defaults to 4*1024*1024,
or 4MB.
types:
- <xref:int>
- name: max_single_get_size
description: 'The maximum size for a blob to be downloaded in a single call,
the exceeded part will be downloaded in chunks (could be parallel). Defaults
to 32*1024*1024, or 32MB.'
types:
- <xref:int>
- name: max_chunk_get_size
description: 'The maximum chunk size used for downloading a blob. Defaults to
4*1024*1024,
or 4MB.'
types:
- <xref:int>
examples:
- "Creating the BlobClient from a URL to a public blob (no auth needed).<!--[!code-python[Main](les\\\
blob_samples_authentication.py )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\"\
: [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\": \"D:\\\\a\\\
\\_work\\\\1\\\\s\\\\dist_temp\\\\86\\\\azure-storage-blob-12.16.0\\\\samples\\\\\
blob_samples_authentication.py\", \"xml:space\": \"preserve\", \"force\": false,\
\ \"language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
: false} -->\n\n````python\n\n from azure.storage.blob import BlobClient\n blob_client\
\ = BlobClient.from_blob_url(blob_url=\"https://account.blob.core.windows.net/container/blob-name\"\
)\n\n ````\n\nCreating the BlobClient from a SAS URL to a blob.<!--[!code-python[Main](les\\\
blob_samples_authentication.py )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\"\
: [], \"names\": [], \"dupnames\": [], \"backrefs\": [], \"source\": \"D:\\\\a\\\
\\_work\\\\1\\\\s\\\\dist_temp\\\\86\\\\azure-storage-blob-12.16.0\\\\samples\\\\\
blob_samples_authentication.py\", \"xml:space\": \"preserve\", \"force\": false,\
\ \"language\": \"python\", \"highlight_args\": {\"linenostart\": 1}, \"linenos\"\
: false} -->\n\n````python\n\n from azure.storage.blob import BlobClient\n\n \
\ sas_url = \"https://account.blob.core.windows.net/container/blob-name?sv=2015-04-05&st=2015-04-29T22%3A18%3A26Z&se=2015-04-30T02%3A23%3A26Z&sr=b&sp=rw&sip=168.1.5.60-168.1.5.70&spr=https&sig=Z%2FRHIX5Xcg0Mq2rqI3OlWTjEg2tYkboXr1P9ZUXDtkk%3D\"\
\n blob_client = BlobClient.from_blob_url(sas_url)\n\n ````\n"
methods:
- uid: azure.storage.blob.BlobClient.abort_copy
name: abort_copy
summary: 'Abort an ongoing copy operation.
This will leave a destination blob with zero length and full metadata.
This will raise an error if the copy operation has already ended.'
signature: 'abort_copy(copy_id: str | Dict[str, Any] | BlobProperties, **kwargs:
Any) -> None'
parameters:
- name: copy_id
description: 'The copy operation to abort. This can be either an ID string, or
an
instance of BlobProperties.'
isRequired: true
types:
- <xref:str>
- <xref:azure.storage.blob.BlobProperties>
return:
types:
- <xref:None>
examples:
- "Abort copying a blob from URL.<!--[!code-python[Main](les\\blob_samples_common.py\
\ )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\": [], \"names\": [], \"\
dupnames\": [], \"backrefs\": [], \"source\": \"D:\\\\a\\\\_work\\\\1\\\\s\\\\\
dist_temp\\\\86\\\\azure-storage-blob-12.16.0\\\\samples\\\\blob_samples_common.py\"\
, \"xml:space\": \"preserve\", \"force\": false, \"language\": \"python\", \"\
highlight_args\": {\"linenostart\": 1}, \"linenos\": false} -->\n\n````python\n\
\n # Passing in copy id to abort copy operation\n if props.copy.status !=\
\ \"success\":\n copied_blob.abort_copy(copy_id)\n\n # check copy status\n\
\ props = copied_blob.get_blob_properties()\n print(props.copy.status)\n\n\
\ ````\n"
- uid: azure.storage.blob.BlobClient.acquire_lease
name: acquire_lease
summary: 'Requests a new lease.
If the blob does not have an active lease, the Blob
Service creates a lease on the blob and returns a new lease.'
signature: 'acquire_lease(lease_duration: int = -1, lease_id: str | None = None,
**kwargs: Any) -> BlobLeaseClient'
parameters:
- name: lease_duration
description: 'Specifies the duration of the lease, in seconds, or negative one
(-1) for a lease that never expires. A non-infinite lease can be
between 15 and 60 seconds. A lease duration cannot be changed
using renew or change. Default is -1 (infinite lease).'
isRequired: true
types:
- <xref:int>
- name: lease_id
description: 'Proposed lease ID, in a GUID string format. The Blob Service
returns 400 (Invalid request) if the proposed lease ID is not
in the correct format.'
isRequired: true
types:
- <xref:str>
- name: if_modified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only
if the resource has been modified since the specified time.'
types:
- <xref:datetime.datetime>
- name: if_unmodified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the resource has not been modified since the specified date/time.'
types:
- <xref:datetime.datetime>
- name: etag
description: 'An ETag value, or the wildcard character (*). Used to check if the
resource has changed,
and act according to the condition specified by the *match_condition* parameter.'
types:
- <xref:str>
- name: match_condition
description: The match condition to use upon the etag.
types:
- <xref:azure.core.MatchConditions>
- name: if_tags_match_condition
description: 'Specify a SQL where clause on blob tags to operate only on blob
with a matching value.
eg. `"\"tagname\"=''my tag''"`
New in version 12.4.0.'
types:
- <xref:str>
- name: timeout
description: 'Sets the server-side timeout for the operation in seconds. For more
details see
[https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations](https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations).
This value is not tracked or validated on the client. To configure client-side
network timesouts
see [here](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob#other-client--per-operation-configuration).'
types:
- <xref:int>
return:
description: A BlobLeaseClient object.
types:
- <xref:azure.storage.blob.BlobLeaseClient>
examples:
- "Acquiring a lease on a blob.<!--[!code-python[Main](les\\blob_samples_common.py\
\ )]-->\n\n<!-- literal_block {\"ids\": [], \"classes\": [], \"names\": [], \"\
dupnames\": [], \"backrefs\": [], \"source\": \"D:\\\\a\\\\_work\\\\1\\\\s\\\\\
dist_temp\\\\86\\\\azure-storage-blob-12.16.0\\\\samples\\\\blob_samples_common.py\"\
, \"xml:space\": \"preserve\", \"force\": false, \"language\": \"python\", \"\
highlight_args\": {\"linenostart\": 1}, \"linenos\": false} -->\n\n````python\n\
\n # Acquire a lease on the blob\n lease = blob_client.acquire_lease()\n\n\
\ # Delete blob by passing in the lease\n blob_client.delete_blob(lease=lease)\n\
\n ````\n"
- uid: azure.storage.blob.BlobClient.append_block
name: append_block
summary: Commits a new block of data to the end of the existing append blob.
signature: 'append_block(data: bytes | str | Iterable[AnyStr] | IO[AnyStr], length:
int | None = None, **kwargs) -> Dict[str, str | datetime | int]'
parameters:
- name: data
description: Content of the block. This can be bytes, text, an iterable or a file-like
object.
isRequired: true
types:
- <xref:bytes>
- <xref:str>
- <xref:Iterable>
- name: length
description: Size of the block in bytes.
isRequired: true
types:
- <xref:int>
- name: validate_content
description: 'If true, calculates an MD5 hash of the block content. The storage
service checks the hash of the content that has arrived
with the hash that was sent. This is primarily valuable for detecting
bitflips on the wire if using http instead of https, as https (the default),
will already validate. Note that this MD5 hash is not stored with the
blob.'
types:
- <xref:bool>
- name: maxsize_condition
description: 'Optional conditional header. The max length in bytes permitted for
the append blob. If the Append Block operation would cause the blob
to exceed that limit or if the blob size is already greater than the
value specified in this header, the request will fail with
MaxBlobSizeConditionNotMet error (HTTP status code 412 - Precondition Failed).'
types:
- <xref:int>
- name: appendpos_condition
description: 'Optional conditional header, used only for the Append Block operation.
A number indicating the byte offset to compare. Append Block will
succeed only if the append position is equal to this number. If it
is not, the request will fail with the AppendPositionConditionNotMet error
(HTTP status code 412 - Precondition Failed).'
types:
- <xref:int>
- name: lease
description: 'Required if the blob has an active lease. Value can be a BlobLeaseClient
object
or the lease ID as a string.'
types:
- <xref:azure.storage.blob.BlobLeaseClient>
- <xref:str>
- name: if_modified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only
if the resource has been modified since the specified time.'
types:
- <xref:datetime.datetime>
- name: if_unmodified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the resource has not been modified since the specified date/time.'
types:
- <xref:datetime.datetime>
- name: etag
description: 'An ETag value, or the wildcard character (*). Used to check if the
resource has changed,
and act according to the condition specified by the *match_condition* parameter.'
types:
- <xref:str>
- name: match_condition
description: The match condition to use upon the etag.
types:
- <xref:azure.core.MatchConditions>
- name: if_tags_match_condition
description: 'Specify a SQL where clause on blob tags to operate only on blob
with a matching value.
eg. `"\"tagname\"=''my tag''"`
New in version 12.4.0.'
types:
- <xref:str>
- name: encoding
description: Defaults to UTF-8.
types:
- <xref:str>
- name: cpk
description: 'Encrypts the data on the service-side with the given key.
Use of customer-provided keys must be done over HTTPS.
As the encryption key itself is provided in the request,
a secure connection must be established to transfer the key.'
types:
- <xref:azure.storage.blob.CustomerProvidedEncryptionKey>
- name: encryption_scope
description: 'A predefined encryption scope used to encrypt the data on the service.
An encryption
scope can be created using the Management API and referenced here by name. If
a default
encryption scope has been defined at the container, this value will override
it if the
container-level scope is configured to allow overrides. Otherwise an error will
be raised.
New in version 12.2.0.'
types:
- <xref:str>
- name: timeout
description: 'Sets the server-side timeout for the operation in seconds. For more
details see
[https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations](https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations).
This value is not tracked or validated on the client. To configure client-side
network timesouts
see [here](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob#other-client--per-operation-configuration).'
types:
- <xref:int>
return:
description: Blob-updated property dict (Etag, last modified, append offset, committed
block count).
types:
- <xref:dict>(<xref:str>, <xref:Any>)
- uid: azure.storage.blob.BlobClient.append_block_from_url
name: append_block_from_url
summary: Creates a new block to be committed as part of a blob, where the contents
are read from a source url.
signature: 'append_block_from_url(copy_source_url: str, source_offset: int | None
= None, source_length: int | None = None, **kwargs) -> Dict[str, str | datetime
| int]'
parameters:
- name: copy_source_url
description: 'The URL of the source data. It can point to any Azure Blob or File,
that is either public or has a
shared access signature attached.'
isRequired: true
types:
- <xref:str>
- name: source_offset
description: This indicates the start of the range of bytes (inclusive) that has
to be taken from the copy source.
isRequired: true
types:
- <xref:int>
- name: source_length
description: This indicates the end of the range of bytes that has to be taken
from the copy source.
isRequired: true
types:
- <xref:int>
- name: source_content_md5
description: If given, the service will calculate the MD5 hash of the block content
and compare against this value.
types:
- <xref:bytearray>
- name: maxsize_condition
description: 'Optional conditional header. The max length in bytes permitted for
the append blob. If the Append Block operation would cause the blob
to exceed that limit or if the blob size is already greater than the
value specified in this header, the request will fail with
MaxBlobSizeConditionNotMet error (HTTP status code 412 - Precondition Failed).'
types:
- <xref:int>
- name: appendpos_condition
description: 'Optional conditional header, used only for the Append Block operation.
A number indicating the byte offset to compare. Append Block will
succeed only if the append position is equal to this number. If it
is not, the request will fail with the
AppendPositionConditionNotMet error
(HTTP status code 412 - Precondition Failed).'
types:
- <xref:int>
- name: lease
description: 'Required if the blob has an active lease. Value can be a BlobLeaseClient
object
or the lease ID as a string.'
types:
- <xref:azure.storage.blob.BlobLeaseClient>
- <xref:str>
- name: if_modified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only
if the resource has been modified since the specified time.'
types:
- <xref:datetime.datetime>
- name: if_unmodified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the resource has not been modified since the specified date/time.'
types:
- <xref:datetime.datetime>
- name: etag
description: 'The destination ETag value, or the wildcard character (*). Used
to check if the resource has changed,
and act according to the condition specified by the *match_condition* parameter.'
types:
- <xref:str>
- name: match_condition
description: The destination match condition to use upon the etag.
types:
- <xref:azure.core.MatchConditions>
- name: if_tags_match_condition
description: 'Specify a SQL where clause on blob tags to operate only on blob
with a matching value.
eg. `"\"tagname\"=''my tag''"`
New in version 12.4.0.'
types:
- <xref:str>
- name: source_if_modified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only
if the source resource has been modified since the specified time.'
types:
- <xref:datetime.datetime>
- name: source_if_unmodified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the source resource has not been modified since the specified date/time.'
types:
- <xref:datetime.datetime>
- name: source_etag
description: 'The source ETag value, or the wildcard character (*). Used to check
if the resource has changed,
and act according to the condition specified by the *match_condition* parameter.'
types:
- <xref:str>
- name: source_match_condition
description: The source match condition to use upon the etag.
types:
- <xref:azure.core.MatchConditions>
- name: cpk
description: 'Encrypts the data on the service-side with the given key.
Use of customer-provided keys must be done over HTTPS.
As the encryption key itself is provided in the request,
a secure connection must be established to transfer the key.'
types:
- <xref:azure.storage.blob.CustomerProvidedEncryptionKey>
- name: encryption_scope
description: 'A predefined encryption scope used to encrypt the data on the service.
An encryption
scope can be created using the Management API and referenced here by name. If
a default
encryption scope has been defined at the container, this value will override
it if the
container-level scope is configured to allow overrides. Otherwise an error will
be raised.
New in version 12.2.0.'
types:
- <xref:str>
- name: timeout
description: 'Sets the server-side timeout for the operation in seconds. For more
details see
[https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations](https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations).
This value is not tracked or validated on the client. To configure client-side
network timesouts
see [here](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob#other-client--per-operation-configuration).'
types:
- <xref:int>
- name: source_authorization
description: 'Authenticate as a service principal using a client secret to access
a source blob. Ensure "bearer " is
the prefix of the source_authorization string.'
types:
- <xref:str>
- uid: azure.storage.blob.BlobClient.clear_page
name: clear_page
summary: Clears a range of pages.
signature: 'clear_page(offset: int, length: int, **kwargs: Any) -> Dict[str, str
| datetime]'
parameters:
- name: offset
description: 'Start of byte range to use for writing to a section of the blob.
Pages must be aligned with 512-byte boundaries, the start offset
must be a modulus of 512 and the length must be a modulus of
512.'
isRequired: true
types:
- <xref:int>
- name: length
description: 'Number of bytes to use for writing to a section of the blob.
Pages must be aligned with 512-byte boundaries, the start offset
must be a modulus of 512 and the length must be a modulus of
512.'
isRequired: true
types:
- <xref:int>
- name: lease
description: 'Required if the blob has an active lease. Value can be a BlobLeaseClient
object
or the lease ID as a string.'
types:
- <xref:azure.storage.blob.BlobLeaseClient>
- <xref:str>
- name: if_sequence_number_lte
description: 'If the blob''s sequence number is less than or equal to
the specified value, the request proceeds; otherwise it fails.'
types:
- <xref:int>
- name: if_sequence_number_lt
description: 'If the blob''s sequence number is less than the specified
value, the request proceeds; otherwise it fails.'
types:
- <xref:int>
- name: if_sequence_number_eq
description: 'If the blob''s sequence number is equal to the specified
value, the request proceeds; otherwise it fails.'
types:
- <xref:int>
- name: if_modified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only
if the resource has been modified since the specified time.'
types:
- <xref:datetime.datetime>
- name: if_unmodified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the resource has not been modified since the specified date/time.'
types:
- <xref:datetime.datetime>
- name: etag
description: 'An ETag value, or the wildcard character (*). Used to check if the
resource has changed,
and act according to the condition specified by the *match_condition* parameter.'
types:
- <xref:str>
- name: match_condition
description: The match condition to use upon the etag.
types:
- <xref:azure.core.MatchConditions>
- name: if_tags_match_condition
description: 'Specify a SQL where clause on blob tags to operate only on blob
with a matching value.
eg. `"\"tagname\"=''my tag''"`
New in version 12.4.0.'
types:
- <xref:str>
- name: cpk
description: 'Encrypts the data on the service-side with the given key.
Use of customer-provided keys must be done over HTTPS.
As the encryption key itself is provided in the request,
a secure connection must be established to transfer the key.'
types:
- <xref:azure.storage.blob.CustomerProvidedEncryptionKey>
- name: timeout
description: 'Sets the server-side timeout for the operation in seconds. For more
details see
[https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations](https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations).
This value is not tracked or validated on the client. To configure client-side
network timesouts
see [here](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob#other-client--per-operation-configuration).'
types:
- <xref:int>
return:
description: Blob-updated property dict (Etag and last modified).
types:
- <xref:dict>(<xref:str>, <xref:Any>)
- uid: azure.storage.blob.BlobClient.commit_block_list
name: commit_block_list
summary: 'The Commit Block List operation writes a blob by specifying the list of
block IDs that make up the blob.'
signature: 'commit_block_list(block_list: List[BlobBlock], content_settings: ContentSettings
| None = None, metadata: Dict[str, str] | None = None, **kwargs) -> Dict[str,
str | datetime]'
parameters:
- name: block_list
description: List of Blockblobs.
isRequired: true
types:
- <xref:list>
- name: content_settings
description: 'ContentSettings object used to set blob properties. Used to set
content type, encoding,
language, disposition, md5, and cache control.'
isRequired: true
types:
- <xref:azure.storage.blob.ContentSettings>
- name: metadata
description: Name-value pairs associated with the blob as metadata.
isRequired: true
types:
- <xref:dict>[<xref:str>, <xref:str>]
- name: tags
description: 'Name-value pairs associated with the blob as tag. Tags are case-sensitive.
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128
characters,
and tag values must be between 0 and 256 characters.
Valid tag key and value characters include: lowercase and uppercase letters,
digits (0-9),
space (` >>`<<), plus (+), minus (-), period (.), solidus (/), colon (:), equals
(=), underscore (_)
New in version 12.4.0.'
types:
- <xref:dict>(<xref:str>, <xref:str>)
- name: lease
description: 'Required if the blob has an active lease. Value can be a BlobLeaseClient
object
or the lease ID as a string.'
types:
- <xref:azure.storage.blob.BlobLeaseClient>
- <xref:str>
- name: immutability_policy
description: 'Specifies the immutability policy of a blob, blob snapshot or blob
version.
New in version 12.10.0: This was introduced in API version ''2020-10-02''.'
types:
- <xref:azure.storage.blob.ImmutabilityPolicy>
- name: legal_hold
description: 'Specified if a legal hold should be set on the blob.
New in version 12.10.0: This was introduced in API version ''2020-10-02''.'
types:
- <xref:bool>
- name: validate_content
description: 'If true, calculates an MD5 hash of the page content. The storage
service checks the hash of the content that has arrived
with the hash that was sent. This is primarily valuable for detecting
bitflips on the wire if using http instead of https, as https (the default),
will already validate. Note that this MD5 hash is not stored with the
blob.'
types:
- <xref:bool>
- name: if_modified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only
if the resource has been modified since the specified time.'
types:
- <xref:datetime.datetime>
- name: if_unmodified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.
If a date is passed in without timezone info, it is assumed to be UTC.
Specify this header to perform the operation only if
the resource has not been modified since the specified date/time.'
types:
- <xref:datetime.datetime>
- name: etag
description: 'An ETag value, or the wildcard character (*). Used to check if the
resource has changed,
and act according to the condition specified by the *match_condition* parameter.'
types:
- <xref:str>
- name: match_condition
description: The match condition to use upon the etag.
types:
- <xref:azure.core.MatchConditions>
- name: if_tags_match_condition
description: 'Specify a SQL where clause on blob tags to operate only on destination
blob with a matching value.
New in version 12.4.0.'
types:
- <xref:str>
- name: standard_blob_tier
description: 'A standard blob tier value to set the blob to. For this version
of the library,
this is only applicable to block blobs on standard storage accounts.'
types:
- <xref:azure.storage.blob.StandardBlobTier>
- name: cpk
description: 'Encrypts the data on the service-side with the given key.
Use of customer-provided keys must be done over HTTPS.
As the encryption key itself is provided in the request,
a secure connection must be established to transfer the key.'
types:
- <xref:azure.storage.blob.CustomerProvidedEncryptionKey>
- name: encryption_scope
description: 'A predefined encryption scope used to encrypt the data on the service.
An encryption
scope can be created using the Management API and referenced here by name. If
a default
encryption scope has been defined at the container, this value will override
it if the
container-level scope is configured to allow overrides. Otherwise an error will
be raised.
New in version 12.2.0.'
types:
- <xref:str>
- name: timeout
description: 'Sets the server-side timeout for the operation in seconds. For more
details see
[https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations](https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations).
This value is not tracked or validated on the client. To configure client-side
network timesouts
see [here](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob#other-client--per-operation-configuration).'
types:
- <xref:int>
return:
description: Blob-updated property dict (Etag and last modified).
types:
- <xref:dict>(<xref:str>, <xref:Any>)
- uid: azure.storage.blob.BlobClient.create_append_blob
name: create_append_blob
summary: Creates a new Append Blob.
signature: 'create_append_blob(content_settings: ContentSettings | None = None,
metadata: Dict[str, str] | None = None, **kwargs: Any) -> Dict[str, str | datetime]'
parameters:
- name: content_settings
description: 'ContentSettings object used to set blob properties. Used to set
content type, encoding,
language, disposition, md5, and cache control.'
isRequired: true
types:
- <xref:azure.storage.blob.ContentSettings>
- name: metadata
description: Name-value pairs associated with the blob as metadata.
isRequired: true
types:
- <xref:dict>(<xref:str>, <xref:str>)
- name: tags
description: 'Name-value pairs associated with the blob as tag. Tags are case-sensitive.
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128
characters,
and tag values must be between 0 and 256 characters.
Valid tag key and value characters include: lowercase and uppercase letters,
digits (0-9),
space (` >>`<<), plus (+), minus (-), period (.), solidus (/), colon (:), equals
(=), underscore (_)
New in version 12.4.0.'
types:
- <xref:dict>(<xref:str>, <xref:str>)
- name: lease
description: 'Required if the blob has an active lease. Value can be a BlobLeaseClient
object
or the lease ID as a string.'
types:
- <xref:azure.storage.blob.BlobLeaseClient>
- <xref:str>
- name: immutability_policy
description: 'Specifies the immutability policy of a blob, blob snapshot or blob
version.
New in version 12.10.0: This was introduced in API version ''2020-10-02''.'
types:
- <xref:azure.storage.blob.ImmutabilityPolicy>
- name: legal_hold
description: 'Specified if a legal hold should be set on the blob.
New in version 12.10.0: This was introduced in API version ''2020-10-02''.'
types:
- <xref:bool>
- name: if_modified_since
description: 'A DateTime value. Azure expects the date value passed in to be UTC.
If timezone is included, any non-UTC datetimes will be converted to UTC.