forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlockBlobRestClient.cs
More file actions
1082 lines (1048 loc) · 94.6 KB
/
BlockBlobRestClient.cs
File metadata and controls
1082 lines (1048 loc) · 94.6 KB
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using System.Xml.Linq;
using Azure.Core;
using Azure.Core.Pipeline;
using Azure.Storage.Blobs.Models;
namespace Azure.Storage.Blobs
{
internal partial class BlockBlobRestClient
{
private readonly HttpPipeline _pipeline;
private readonly string _url;
private readonly string _version;
/// <summary> The ClientDiagnostics is used to provide tracing support for the client library. </summary>
internal ClientDiagnostics ClientDiagnostics { get; }
/// <summary> Initializes a new instance of BlockBlobRestClient. </summary>
/// <param name="clientDiagnostics"> The handler for diagnostic messaging in the client. </param>
/// <param name="pipeline"> The HTTP pipeline for sending and receiving REST requests and responses. </param>
/// <param name="url"> The URL of the service account, container, or blob that is the target of the desired operation. </param>
/// <param name="version"> Specifies the version of the operation to use for this request. The default value is "2024-08-04". </param>
/// <exception cref="ArgumentNullException"> <paramref name="clientDiagnostics"/>, <paramref name="pipeline"/>, <paramref name="url"/> or <paramref name="version"/> is null. </exception>
public BlockBlobRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string url, string version)
{
ClientDiagnostics = clientDiagnostics ?? throw new ArgumentNullException(nameof(clientDiagnostics));
_pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline));
_url = url ?? throw new ArgumentNullException(nameof(url));
_version = version ?? throw new ArgumentNullException(nameof(version));
}
internal HttpMessage CreateUploadRequest(long contentLength, Stream body, int? timeout, byte[] transactionalContentMD5, string blobContentType, string blobContentEncoding, string blobContentLanguage, byte[] blobContentMD5, string blobCacheControl, IDictionary<string, string> metadata, string leaseId, string blobContentDisposition, string encryptionKey, string encryptionKeySha256, EncryptionAlgorithmTypeInternal? encryptionAlgorithm, string encryptionScope, AccessTier? tier, DateTimeOffset? ifModifiedSince, DateTimeOffset? ifUnmodifiedSince, string ifMatch, string ifNoneMatch, string ifTags, string blobTagsString, DateTimeOffset? immutabilityPolicyExpiry, BlobImmutabilityPolicyMode? immutabilityPolicyMode, bool? legalHold, byte[] transactionalContentCrc64)
{
var message = _pipeline.CreateMessage();
var request = message.Request;
request.Method = RequestMethod.Put;
var uri = new RawRequestUriBuilder();
uri.AppendRaw(_url, false);
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
request.Uri = uri;
request.Headers.Add("x-ms-blob-type", "BlockBlob");
if (blobContentType != null)
{
request.Headers.Add("x-ms-blob-content-type", blobContentType);
}
if (blobContentEncoding != null)
{
request.Headers.Add("x-ms-blob-content-encoding", blobContentEncoding);
}
if (blobContentLanguage != null)
{
request.Headers.Add("x-ms-blob-content-language", blobContentLanguage);
}
if (blobContentMD5 != null)
{
request.Headers.Add("x-ms-blob-content-md5", blobContentMD5, "D");
}
if (blobCacheControl != null)
{
request.Headers.Add("x-ms-blob-cache-control", blobCacheControl);
}
if (metadata != null)
{
request.Headers.Add("x-ms-meta-", metadata);
}
if (leaseId != null)
{
request.Headers.Add("x-ms-lease-id", leaseId);
}
if (blobContentDisposition != null)
{
request.Headers.Add("x-ms-blob-content-disposition", blobContentDisposition);
}
if (encryptionKey != null)
{
request.Headers.Add("x-ms-encryption-key", encryptionKey);
}
if (encryptionKeySha256 != null)
{
request.Headers.Add("x-ms-encryption-key-sha256", encryptionKeySha256);
}
if (encryptionAlgorithm != null)
{
request.Headers.Add("x-ms-encryption-algorithm", encryptionAlgorithm.Value.ToSerialString());
}
if (encryptionScope != null)
{
request.Headers.Add("x-ms-encryption-scope", encryptionScope);
}
if (tier != null)
{
request.Headers.Add("x-ms-access-tier", tier.Value.ToString());
}
if (ifModifiedSince != null)
{
request.Headers.Add("If-Modified-Since", ifModifiedSince.Value, "R");
}
if (ifUnmodifiedSince != null)
{
request.Headers.Add("If-Unmodified-Since", ifUnmodifiedSince.Value, "R");
}
if (ifMatch != null)
{
request.Headers.Add("If-Match", ifMatch);
}
if (ifNoneMatch != null)
{
request.Headers.Add("If-None-Match", ifNoneMatch);
}
if (ifTags != null)
{
request.Headers.Add("x-ms-if-tags", ifTags);
}
request.Headers.Add("x-ms-version", _version);
if (blobTagsString != null)
{
request.Headers.Add("x-ms-tags", blobTagsString);
}
if (immutabilityPolicyExpiry != null)
{
request.Headers.Add("x-ms-immutability-policy-until-date", immutabilityPolicyExpiry.Value, "R");
}
if (immutabilityPolicyMode != null)
{
request.Headers.Add("x-ms-immutability-policy-mode", immutabilityPolicyMode.Value.ToSerialString());
}
if (legalHold != null)
{
request.Headers.Add("x-ms-legal-hold", legalHold.Value);
}
if (transactionalContentCrc64 != null)
{
request.Headers.Add("x-ms-content-crc64", transactionalContentCrc64, "D");
}
request.Headers.Add("Accept", "application/xml");
if (transactionalContentMD5 != null)
{
request.Headers.Add("Content-MD5", transactionalContentMD5, "D");
}
request.Headers.Add("Content-Length", contentLength);
request.Headers.Add("Content-Type", "application/octet-stream");
request.Content = RequestContent.Create(body);
return message;
}
/// <summary> The Upload Block Blob operation updates the content of an existing block blob. Updating an existing block blob overwrites any existing metadata on the blob. Partial updates are not supported with Put Blob; the content of the existing blob is overwritten with the content of the new blob. To perform a partial update of the content of a block blob, use the Put Block List operation. </summary>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="body"> Initial data. </param>
/// <param name="timeout"> The timeout parameter is expressed in seconds. For more information, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting Timeouts for Blob Service Operations.</a>. </param>
/// <param name="transactionalContentMD5"> Specify the transactional md5 for the body, to be validated by the service. </param>
/// <param name="blobContentType"> Optional. Sets the blob's content type. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentEncoding"> Optional. Sets the blob's content encoding. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentLanguage"> Optional. Set the blob's content language. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentMD5"> Optional. An MD5 hash of the blob content. Note that this hash is not validated, as the hashes for the individual blocks were validated when each was uploaded. </param>
/// <param name="blobCacheControl"> Optional. Sets the blob's cache control. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="metadata"> Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value pairs are specified, the operation will copy the metadata from the source blob or file to the destination blob. If one or more name-value pairs are specified, the destination blob is created with the specified metadata, and metadata is not copied from the source blob or file. Note that beginning with version 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing Containers, Blobs, and Metadata for more information. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </param>
/// <param name="blobContentDisposition"> Optional. Sets the blob's Content-Disposition header. </param>
/// <param name="encryptionKey"> Optional. Specifies the encryption key to use to encrypt the data provided in the request. If not specified, encryption is performed with the root account encryption key. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="encryptionKeySha256"> The SHA-256 hash of the provided encryption key. Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionAlgorithm"> The algorithm used to produce the encryption key hash. Currently, the only accepted value is "AES256". Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionScope"> Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="tier"> Optional. Indicates the tier to be set on the blob. </param>
/// <param name="ifModifiedSince"> Specify this header value to operate only on a blob if it has been modified since the specified date/time. </param>
/// <param name="ifUnmodifiedSince"> Specify this header value to operate only on a blob if it has not been modified since the specified date/time. </param>
/// <param name="ifMatch"> Specify an ETag value to operate only on blobs with a matching value. </param>
/// <param name="ifNoneMatch"> Specify an ETag value to operate only on blobs without a matching value. </param>
/// <param name="ifTags"> Specify a SQL where clause on blob tags to operate only on blobs with a matching value. </param>
/// <param name="blobTagsString"> Optional. Used to set blob tags in various blob operations. </param>
/// <param name="immutabilityPolicyExpiry"> Specifies the date time when the blobs immutability policy is set to expire. </param>
/// <param name="immutabilityPolicyMode"> Specifies the immutability policy mode to set on the blob. </param>
/// <param name="legalHold"> Specified if a legal hold should be set on the blob. </param>
/// <param name="transactionalContentCrc64"> Specify the transactional crc64 for the body, to be validated by the service. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="body"/> is null. </exception>
public async Task<ResponseWithHeaders<BlockBlobUploadHeaders>> UploadAsync(long contentLength, Stream body, int? timeout = null, byte[] transactionalContentMD5 = null, string blobContentType = null, string blobContentEncoding = null, string blobContentLanguage = null, byte[] blobContentMD5 = null, string blobCacheControl = null, IDictionary<string, string> metadata = null, string leaseId = null, string blobContentDisposition = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, AccessTier? tier = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, string blobTagsString = null, DateTimeOffset? immutabilityPolicyExpiry = null, BlobImmutabilityPolicyMode? immutabilityPolicyMode = null, bool? legalHold = null, byte[] transactionalContentCrc64 = null, CancellationToken cancellationToken = default)
{
if (body == null)
{
throw new ArgumentNullException(nameof(body));
}
using var message = CreateUploadRequest(contentLength, body, timeout, transactionalContentMD5, blobContentType, blobContentEncoding, blobContentLanguage, blobContentMD5, blobCacheControl, metadata, leaseId, blobContentDisposition, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, tier, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, blobTagsString, immutabilityPolicyExpiry, immutabilityPolicyMode, legalHold, transactionalContentCrc64);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new BlockBlobUploadHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Upload Block Blob operation updates the content of an existing block blob. Updating an existing block blob overwrites any existing metadata on the blob. Partial updates are not supported with Put Blob; the content of the existing blob is overwritten with the content of the new blob. To perform a partial update of the content of a block blob, use the Put Block List operation. </summary>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="body"> Initial data. </param>
/// <param name="timeout"> The timeout parameter is expressed in seconds. For more information, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting Timeouts for Blob Service Operations.</a>. </param>
/// <param name="transactionalContentMD5"> Specify the transactional md5 for the body, to be validated by the service. </param>
/// <param name="blobContentType"> Optional. Sets the blob's content type. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentEncoding"> Optional. Sets the blob's content encoding. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentLanguage"> Optional. Set the blob's content language. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentMD5"> Optional. An MD5 hash of the blob content. Note that this hash is not validated, as the hashes for the individual blocks were validated when each was uploaded. </param>
/// <param name="blobCacheControl"> Optional. Sets the blob's cache control. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="metadata"> Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value pairs are specified, the operation will copy the metadata from the source blob or file to the destination blob. If one or more name-value pairs are specified, the destination blob is created with the specified metadata, and metadata is not copied from the source blob or file. Note that beginning with version 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing Containers, Blobs, and Metadata for more information. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </param>
/// <param name="blobContentDisposition"> Optional. Sets the blob's Content-Disposition header. </param>
/// <param name="encryptionKey"> Optional. Specifies the encryption key to use to encrypt the data provided in the request. If not specified, encryption is performed with the root account encryption key. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="encryptionKeySha256"> The SHA-256 hash of the provided encryption key. Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionAlgorithm"> The algorithm used to produce the encryption key hash. Currently, the only accepted value is "AES256". Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionScope"> Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="tier"> Optional. Indicates the tier to be set on the blob. </param>
/// <param name="ifModifiedSince"> Specify this header value to operate only on a blob if it has been modified since the specified date/time. </param>
/// <param name="ifUnmodifiedSince"> Specify this header value to operate only on a blob if it has not been modified since the specified date/time. </param>
/// <param name="ifMatch"> Specify an ETag value to operate only on blobs with a matching value. </param>
/// <param name="ifNoneMatch"> Specify an ETag value to operate only on blobs without a matching value. </param>
/// <param name="ifTags"> Specify a SQL where clause on blob tags to operate only on blobs with a matching value. </param>
/// <param name="blobTagsString"> Optional. Used to set blob tags in various blob operations. </param>
/// <param name="immutabilityPolicyExpiry"> Specifies the date time when the blobs immutability policy is set to expire. </param>
/// <param name="immutabilityPolicyMode"> Specifies the immutability policy mode to set on the blob. </param>
/// <param name="legalHold"> Specified if a legal hold should be set on the blob. </param>
/// <param name="transactionalContentCrc64"> Specify the transactional crc64 for the body, to be validated by the service. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="body"/> is null. </exception>
public ResponseWithHeaders<BlockBlobUploadHeaders> Upload(long contentLength, Stream body, int? timeout = null, byte[] transactionalContentMD5 = null, string blobContentType = null, string blobContentEncoding = null, string blobContentLanguage = null, byte[] blobContentMD5 = null, string blobCacheControl = null, IDictionary<string, string> metadata = null, string leaseId = null, string blobContentDisposition = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, AccessTier? tier = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, string blobTagsString = null, DateTimeOffset? immutabilityPolicyExpiry = null, BlobImmutabilityPolicyMode? immutabilityPolicyMode = null, bool? legalHold = null, byte[] transactionalContentCrc64 = null, CancellationToken cancellationToken = default)
{
if (body == null)
{
throw new ArgumentNullException(nameof(body));
}
using var message = CreateUploadRequest(contentLength, body, timeout, transactionalContentMD5, blobContentType, blobContentEncoding, blobContentLanguage, blobContentMD5, blobCacheControl, metadata, leaseId, blobContentDisposition, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, tier, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, blobTagsString, immutabilityPolicyExpiry, immutabilityPolicyMode, legalHold, transactionalContentCrc64);
_pipeline.Send(message, cancellationToken);
var headers = new BlockBlobUploadHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
internal HttpMessage CreatePutBlobFromUrlRequest(long contentLength, string copySource, int? timeout, byte[] transactionalContentMD5, string blobContentType, string blobContentEncoding, string blobContentLanguage, byte[] blobContentMD5, string blobCacheControl, IDictionary<string, string> metadata, string leaseId, string blobContentDisposition, string encryptionKey, string encryptionKeySha256, EncryptionAlgorithmTypeInternal? encryptionAlgorithm, string encryptionScope, AccessTier? tier, DateTimeOffset? ifModifiedSince, DateTimeOffset? ifUnmodifiedSince, string ifMatch, string ifNoneMatch, string ifTags, DateTimeOffset? sourceIfModifiedSince, DateTimeOffset? sourceIfUnmodifiedSince, string sourceIfMatch, string sourceIfNoneMatch, string sourceIfTags, byte[] sourceContentMD5, string blobTagsString, bool? copySourceBlobProperties, string copySourceAuthorization, BlobCopySourceTagsMode? copySourceTags)
{
var message = _pipeline.CreateMessage();
var request = message.Request;
request.Method = RequestMethod.Put;
var uri = new RawRequestUriBuilder();
uri.AppendRaw(_url, false);
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
request.Uri = uri;
request.Headers.Add("x-ms-blob-type", "BlockBlob");
if (blobContentType != null)
{
request.Headers.Add("x-ms-blob-content-type", blobContentType);
}
if (blobContentEncoding != null)
{
request.Headers.Add("x-ms-blob-content-encoding", blobContentEncoding);
}
if (blobContentLanguage != null)
{
request.Headers.Add("x-ms-blob-content-language", blobContentLanguage);
}
if (blobContentMD5 != null)
{
request.Headers.Add("x-ms-blob-content-md5", blobContentMD5, "D");
}
if (blobCacheControl != null)
{
request.Headers.Add("x-ms-blob-cache-control", blobCacheControl);
}
if (metadata != null)
{
request.Headers.Add("x-ms-meta-", metadata);
}
if (leaseId != null)
{
request.Headers.Add("x-ms-lease-id", leaseId);
}
if (blobContentDisposition != null)
{
request.Headers.Add("x-ms-blob-content-disposition", blobContentDisposition);
}
if (encryptionKey != null)
{
request.Headers.Add("x-ms-encryption-key", encryptionKey);
}
if (encryptionKeySha256 != null)
{
request.Headers.Add("x-ms-encryption-key-sha256", encryptionKeySha256);
}
if (encryptionAlgorithm != null)
{
request.Headers.Add("x-ms-encryption-algorithm", encryptionAlgorithm.Value.ToSerialString());
}
if (encryptionScope != null)
{
request.Headers.Add("x-ms-encryption-scope", encryptionScope);
}
if (tier != null)
{
request.Headers.Add("x-ms-access-tier", tier.Value.ToString());
}
if (ifModifiedSince != null)
{
request.Headers.Add("If-Modified-Since", ifModifiedSince.Value, "R");
}
if (ifUnmodifiedSince != null)
{
request.Headers.Add("If-Unmodified-Since", ifUnmodifiedSince.Value, "R");
}
if (ifMatch != null)
{
request.Headers.Add("If-Match", ifMatch);
}
if (ifNoneMatch != null)
{
request.Headers.Add("If-None-Match", ifNoneMatch);
}
if (ifTags != null)
{
request.Headers.Add("x-ms-if-tags", ifTags);
}
if (sourceIfModifiedSince != null)
{
request.Headers.Add("x-ms-source-if-modified-since", sourceIfModifiedSince.Value, "R");
}
if (sourceIfUnmodifiedSince != null)
{
request.Headers.Add("x-ms-source-if-unmodified-since", sourceIfUnmodifiedSince.Value, "R");
}
if (sourceIfMatch != null)
{
request.Headers.Add("x-ms-source-if-match", sourceIfMatch);
}
if (sourceIfNoneMatch != null)
{
request.Headers.Add("x-ms-source-if-none-match", sourceIfNoneMatch);
}
if (sourceIfTags != null)
{
request.Headers.Add("x-ms-source-if-tags", sourceIfTags);
}
request.Headers.Add("x-ms-version", _version);
if (sourceContentMD5 != null)
{
request.Headers.Add("x-ms-source-content-md5", sourceContentMD5, "D");
}
if (blobTagsString != null)
{
request.Headers.Add("x-ms-tags", blobTagsString);
}
request.Headers.Add("x-ms-copy-source", copySource);
if (copySourceBlobProperties != null)
{
request.Headers.Add("x-ms-copy-source-blob-properties", copySourceBlobProperties.Value);
}
if (copySourceAuthorization != null)
{
request.Headers.Add("x-ms-copy-source-authorization", copySourceAuthorization);
}
if (copySourceTags != null)
{
request.Headers.Add("x-ms-copy-source-tag-option", copySourceTags.Value.ToSerialString());
}
request.Headers.Add("Accept", "application/xml");
return message;
}
/// <summary> The Put Blob from URL operation creates a new Block Blob where the contents of the blob are read from a given URL. This API is supported beginning with the 2020-04-08 version. Partial updates are not supported with Put Blob from URL; the content of an existing blob is overwritten with the content of the new blob. To perform partial updates to a block blob’s contents using a source URL, use the Put Block from URL API in conjunction with Put Block List. </summary>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="copySource"> Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request URI. The source blob must either be public or must be authenticated via a shared access signature. </param>
/// <param name="timeout"> The timeout parameter is expressed in seconds. For more information, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting Timeouts for Blob Service Operations.</a>. </param>
/// <param name="transactionalContentMD5"> Specify the transactional md5 for the body, to be validated by the service. </param>
/// <param name="blobContentType"> Optional. Sets the blob's content type. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentEncoding"> Optional. Sets the blob's content encoding. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentLanguage"> Optional. Set the blob's content language. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentMD5"> Optional. An MD5 hash of the blob content. Note that this hash is not validated, as the hashes for the individual blocks were validated when each was uploaded. </param>
/// <param name="blobCacheControl"> Optional. Sets the blob's cache control. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="metadata"> Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value pairs are specified, the operation will copy the metadata from the source blob or file to the destination blob. If one or more name-value pairs are specified, the destination blob is created with the specified metadata, and metadata is not copied from the source blob or file. Note that beginning with version 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing Containers, Blobs, and Metadata for more information. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </param>
/// <param name="blobContentDisposition"> Optional. Sets the blob's Content-Disposition header. </param>
/// <param name="encryptionKey"> Optional. Specifies the encryption key to use to encrypt the data provided in the request. If not specified, encryption is performed with the root account encryption key. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="encryptionKeySha256"> The SHA-256 hash of the provided encryption key. Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionAlgorithm"> The algorithm used to produce the encryption key hash. Currently, the only accepted value is "AES256". Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionScope"> Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="tier"> Optional. Indicates the tier to be set on the blob. </param>
/// <param name="ifModifiedSince"> Specify this header value to operate only on a blob if it has been modified since the specified date/time. </param>
/// <param name="ifUnmodifiedSince"> Specify this header value to operate only on a blob if it has not been modified since the specified date/time. </param>
/// <param name="ifMatch"> Specify an ETag value to operate only on blobs with a matching value. </param>
/// <param name="ifNoneMatch"> Specify an ETag value to operate only on blobs without a matching value. </param>
/// <param name="ifTags"> Specify a SQL where clause on blob tags to operate only on blobs with a matching value. </param>
/// <param name="sourceIfModifiedSince"> Specify this header value to operate only on a blob if it has been modified since the specified date/time. </param>
/// <param name="sourceIfUnmodifiedSince"> Specify this header value to operate only on a blob if it has not been modified since the specified date/time. </param>
/// <param name="sourceIfMatch"> Specify an ETag value to operate only on blobs with a matching value. </param>
/// <param name="sourceIfNoneMatch"> Specify an ETag value to operate only on blobs without a matching value. </param>
/// <param name="sourceIfTags"> Specify a SQL where clause on blob tags to operate only on blobs with a matching value. </param>
/// <param name="sourceContentMD5"> Specify the md5 calculated for the range of bytes that must be read from the copy source. </param>
/// <param name="blobTagsString"> Optional. Used to set blob tags in various blob operations. </param>
/// <param name="copySourceBlobProperties"> Optional, default is true. Indicates if properties from the source blob should be copied. </param>
/// <param name="copySourceAuthorization"> Only Bearer type is supported. Credentials should be a valid OAuth access token to copy source. </param>
/// <param name="copySourceTags"> Optional, default 'replace'. Indicates if source tags should be copied or replaced with the tags specified by x-ms-tags. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="copySource"/> is null. </exception>
public async Task<ResponseWithHeaders<BlockBlobPutBlobFromUrlHeaders>> PutBlobFromUrlAsync(long contentLength, string copySource, int? timeout = null, byte[] transactionalContentMD5 = null, string blobContentType = null, string blobContentEncoding = null, string blobContentLanguage = null, byte[] blobContentMD5 = null, string blobCacheControl = null, IDictionary<string, string> metadata = null, string leaseId = null, string blobContentDisposition = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, AccessTier? tier = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, DateTimeOffset? sourceIfModifiedSince = null, DateTimeOffset? sourceIfUnmodifiedSince = null, string sourceIfMatch = null, string sourceIfNoneMatch = null, string sourceIfTags = null, byte[] sourceContentMD5 = null, string blobTagsString = null, bool? copySourceBlobProperties = null, string copySourceAuthorization = null, BlobCopySourceTagsMode? copySourceTags = null, CancellationToken cancellationToken = default)
{
if (copySource == null)
{
throw new ArgumentNullException(nameof(copySource));
}
using var message = CreatePutBlobFromUrlRequest(contentLength, copySource, timeout, transactionalContentMD5, blobContentType, blobContentEncoding, blobContentLanguage, blobContentMD5, blobCacheControl, metadata, leaseId, blobContentDisposition, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, tier, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, sourceIfModifiedSince, sourceIfUnmodifiedSince, sourceIfMatch, sourceIfNoneMatch, sourceIfTags, sourceContentMD5, blobTagsString, copySourceBlobProperties, copySourceAuthorization, copySourceTags);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new BlockBlobPutBlobFromUrlHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Put Blob from URL operation creates a new Block Blob where the contents of the blob are read from a given URL. This API is supported beginning with the 2020-04-08 version. Partial updates are not supported with Put Blob from URL; the content of an existing blob is overwritten with the content of the new blob. To perform partial updates to a block blob’s contents using a source URL, use the Put Block from URL API in conjunction with Put Block List. </summary>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="copySource"> Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request URI. The source blob must either be public or must be authenticated via a shared access signature. </param>
/// <param name="timeout"> The timeout parameter is expressed in seconds. For more information, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting Timeouts for Blob Service Operations.</a>. </param>
/// <param name="transactionalContentMD5"> Specify the transactional md5 for the body, to be validated by the service. </param>
/// <param name="blobContentType"> Optional. Sets the blob's content type. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentEncoding"> Optional. Sets the blob's content encoding. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentLanguage"> Optional. Set the blob's content language. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentMD5"> Optional. An MD5 hash of the blob content. Note that this hash is not validated, as the hashes for the individual blocks were validated when each was uploaded. </param>
/// <param name="blobCacheControl"> Optional. Sets the blob's cache control. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="metadata"> Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value pairs are specified, the operation will copy the metadata from the source blob or file to the destination blob. If one or more name-value pairs are specified, the destination blob is created with the specified metadata, and metadata is not copied from the source blob or file. Note that beginning with version 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing Containers, Blobs, and Metadata for more information. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </param>
/// <param name="blobContentDisposition"> Optional. Sets the blob's Content-Disposition header. </param>
/// <param name="encryptionKey"> Optional. Specifies the encryption key to use to encrypt the data provided in the request. If not specified, encryption is performed with the root account encryption key. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="encryptionKeySha256"> The SHA-256 hash of the provided encryption key. Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionAlgorithm"> The algorithm used to produce the encryption key hash. Currently, the only accepted value is "AES256". Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionScope"> Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="tier"> Optional. Indicates the tier to be set on the blob. </param>
/// <param name="ifModifiedSince"> Specify this header value to operate only on a blob if it has been modified since the specified date/time. </param>
/// <param name="ifUnmodifiedSince"> Specify this header value to operate only on a blob if it has not been modified since the specified date/time. </param>
/// <param name="ifMatch"> Specify an ETag value to operate only on blobs with a matching value. </param>
/// <param name="ifNoneMatch"> Specify an ETag value to operate only on blobs without a matching value. </param>
/// <param name="ifTags"> Specify a SQL where clause on blob tags to operate only on blobs with a matching value. </param>
/// <param name="sourceIfModifiedSince"> Specify this header value to operate only on a blob if it has been modified since the specified date/time. </param>
/// <param name="sourceIfUnmodifiedSince"> Specify this header value to operate only on a blob if it has not been modified since the specified date/time. </param>
/// <param name="sourceIfMatch"> Specify an ETag value to operate only on blobs with a matching value. </param>
/// <param name="sourceIfNoneMatch"> Specify an ETag value to operate only on blobs without a matching value. </param>
/// <param name="sourceIfTags"> Specify a SQL where clause on blob tags to operate only on blobs with a matching value. </param>
/// <param name="sourceContentMD5"> Specify the md5 calculated for the range of bytes that must be read from the copy source. </param>
/// <param name="blobTagsString"> Optional. Used to set blob tags in various blob operations. </param>
/// <param name="copySourceBlobProperties"> Optional, default is true. Indicates if properties from the source blob should be copied. </param>
/// <param name="copySourceAuthorization"> Only Bearer type is supported. Credentials should be a valid OAuth access token to copy source. </param>
/// <param name="copySourceTags"> Optional, default 'replace'. Indicates if source tags should be copied or replaced with the tags specified by x-ms-tags. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="copySource"/> is null. </exception>
public ResponseWithHeaders<BlockBlobPutBlobFromUrlHeaders> PutBlobFromUrl(long contentLength, string copySource, int? timeout = null, byte[] transactionalContentMD5 = null, string blobContentType = null, string blobContentEncoding = null, string blobContentLanguage = null, byte[] blobContentMD5 = null, string blobCacheControl = null, IDictionary<string, string> metadata = null, string leaseId = null, string blobContentDisposition = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, AccessTier? tier = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, DateTimeOffset? sourceIfModifiedSince = null, DateTimeOffset? sourceIfUnmodifiedSince = null, string sourceIfMatch = null, string sourceIfNoneMatch = null, string sourceIfTags = null, byte[] sourceContentMD5 = null, string blobTagsString = null, bool? copySourceBlobProperties = null, string copySourceAuthorization = null, BlobCopySourceTagsMode? copySourceTags = null, CancellationToken cancellationToken = default)
{
if (copySource == null)
{
throw new ArgumentNullException(nameof(copySource));
}
using var message = CreatePutBlobFromUrlRequest(contentLength, copySource, timeout, transactionalContentMD5, blobContentType, blobContentEncoding, blobContentLanguage, blobContentMD5, blobCacheControl, metadata, leaseId, blobContentDisposition, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, tier, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, sourceIfModifiedSince, sourceIfUnmodifiedSince, sourceIfMatch, sourceIfNoneMatch, sourceIfTags, sourceContentMD5, blobTagsString, copySourceBlobProperties, copySourceAuthorization, copySourceTags);
_pipeline.Send(message, cancellationToken);
var headers = new BlockBlobPutBlobFromUrlHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
internal HttpMessage CreateStageBlockRequest(string blockId, long contentLength, Stream body, byte[] transactionalContentMD5, byte[] transactionalContentCrc64, int? timeout, string leaseId, string encryptionKey, string encryptionKeySha256, EncryptionAlgorithmTypeInternal? encryptionAlgorithm, string encryptionScope)
{
var message = _pipeline.CreateMessage();
var request = message.Request;
request.Method = RequestMethod.Put;
var uri = new RawRequestUriBuilder();
uri.AppendRaw(_url, false);
uri.AppendQuery("comp", "block", true);
uri.AppendQuery("blockid", blockId, true);
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
request.Uri = uri;
if (transactionalContentCrc64 != null)
{
request.Headers.Add("x-ms-content-crc64", transactionalContentCrc64, "D");
}
if (leaseId != null)
{
request.Headers.Add("x-ms-lease-id", leaseId);
}
if (encryptionKey != null)
{
request.Headers.Add("x-ms-encryption-key", encryptionKey);
}
if (encryptionKeySha256 != null)
{
request.Headers.Add("x-ms-encryption-key-sha256", encryptionKeySha256);
}
if (encryptionAlgorithm != null)
{
request.Headers.Add("x-ms-encryption-algorithm", encryptionAlgorithm.Value.ToSerialString());
}
if (encryptionScope != null)
{
request.Headers.Add("x-ms-encryption-scope", encryptionScope);
}
request.Headers.Add("x-ms-version", _version);
request.Headers.Add("Accept", "application/xml");
request.Headers.Add("Content-Length", contentLength);
if (transactionalContentMD5 != null)
{
request.Headers.Add("Content-MD5", transactionalContentMD5, "D");
}
request.Headers.Add("Content-Type", "application/octet-stream");
request.Content = RequestContent.Create(body);
return message;
}
/// <summary> The Stage Block operation creates a new block to be committed as part of a blob. </summary>
/// <param name="blockId"> A valid Base64 string value that identifies the block. Prior to encoding, the string must be less than or equal to 64 bytes in size. For a given blob, the length of the value specified for the blockid parameter must be the same size for each block. </param>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="body"> Initial data. </param>
/// <param name="transactionalContentMD5"> Specify the transactional md5 for the body, to be validated by the service. </param>
/// <param name="transactionalContentCrc64"> Specify the transactional crc64 for the body, to be validated by the service. </param>
/// <param name="timeout"> The timeout parameter is expressed in seconds. For more information, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting Timeouts for Blob Service Operations.</a>. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </param>
/// <param name="encryptionKey"> Optional. Specifies the encryption key to use to encrypt the data provided in the request. If not specified, encryption is performed with the root account encryption key. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="encryptionKeySha256"> The SHA-256 hash of the provided encryption key. Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionAlgorithm"> The algorithm used to produce the encryption key hash. Currently, the only accepted value is "AES256". Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionScope"> Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="blockId"/> or <paramref name="body"/> is null. </exception>
public async Task<ResponseWithHeaders<BlockBlobStageBlockHeaders>> StageBlockAsync(string blockId, long contentLength, Stream body, byte[] transactionalContentMD5 = null, byte[] transactionalContentCrc64 = null, int? timeout = null, string leaseId = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, CancellationToken cancellationToken = default)
{
if (blockId == null)
{
throw new ArgumentNullException(nameof(blockId));
}
if (body == null)
{
throw new ArgumentNullException(nameof(body));
}
using var message = CreateStageBlockRequest(blockId, contentLength, body, transactionalContentMD5, transactionalContentCrc64, timeout, leaseId, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new BlockBlobStageBlockHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Stage Block operation creates a new block to be committed as part of a blob. </summary>
/// <param name="blockId"> A valid Base64 string value that identifies the block. Prior to encoding, the string must be less than or equal to 64 bytes in size. For a given blob, the length of the value specified for the blockid parameter must be the same size for each block. </param>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="body"> Initial data. </param>
/// <param name="transactionalContentMD5"> Specify the transactional md5 for the body, to be validated by the service. </param>
/// <param name="transactionalContentCrc64"> Specify the transactional crc64 for the body, to be validated by the service. </param>
/// <param name="timeout"> The timeout parameter is expressed in seconds. For more information, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting Timeouts for Blob Service Operations.</a>. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </param>
/// <param name="encryptionKey"> Optional. Specifies the encryption key to use to encrypt the data provided in the request. If not specified, encryption is performed with the root account encryption key. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="encryptionKeySha256"> The SHA-256 hash of the provided encryption key. Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionAlgorithm"> The algorithm used to produce the encryption key hash. Currently, the only accepted value is "AES256". Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionScope"> Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="blockId"/> or <paramref name="body"/> is null. </exception>
public ResponseWithHeaders<BlockBlobStageBlockHeaders> StageBlock(string blockId, long contentLength, Stream body, byte[] transactionalContentMD5 = null, byte[] transactionalContentCrc64 = null, int? timeout = null, string leaseId = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, CancellationToken cancellationToken = default)
{
if (blockId == null)
{
throw new ArgumentNullException(nameof(blockId));
}
if (body == null)
{
throw new ArgumentNullException(nameof(body));
}
using var message = CreateStageBlockRequest(blockId, contentLength, body, transactionalContentMD5, transactionalContentCrc64, timeout, leaseId, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope);
_pipeline.Send(message, cancellationToken);
var headers = new BlockBlobStageBlockHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
internal HttpMessage CreateStageBlockFromURLRequest(string blockId, long contentLength, string sourceUrl, string sourceRange, byte[] sourceContentMD5, byte[] sourceContentcrc64, int? timeout, string encryptionKey, string encryptionKeySha256, EncryptionAlgorithmTypeInternal? encryptionAlgorithm, string encryptionScope, string leaseId, DateTimeOffset? sourceIfModifiedSince, DateTimeOffset? sourceIfUnmodifiedSince, string sourceIfMatch, string sourceIfNoneMatch, string copySourceAuthorization)
{
var message = _pipeline.CreateMessage();
var request = message.Request;
request.Method = RequestMethod.Put;
var uri = new RawRequestUriBuilder();
uri.AppendRaw(_url, false);
uri.AppendQuery("comp", "block", true);
uri.AppendQuery("blockid", blockId, true);
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
request.Uri = uri;
request.Headers.Add("x-ms-copy-source", sourceUrl);
if (sourceRange != null)
{
request.Headers.Add("x-ms-source-range", sourceRange);
}
if (sourceContentMD5 != null)
{
request.Headers.Add("x-ms-source-content-md5", sourceContentMD5, "D");
}
if (sourceContentcrc64 != null)
{
request.Headers.Add("x-ms-source-content-crc64", sourceContentcrc64, "D");
}
if (encryptionKey != null)
{
request.Headers.Add("x-ms-encryption-key", encryptionKey);
}
if (encryptionKeySha256 != null)
{
request.Headers.Add("x-ms-encryption-key-sha256", encryptionKeySha256);
}
if (encryptionAlgorithm != null)
{
request.Headers.Add("x-ms-encryption-algorithm", encryptionAlgorithm.Value.ToSerialString());
}
if (encryptionScope != null)
{
request.Headers.Add("x-ms-encryption-scope", encryptionScope);
}
if (leaseId != null)
{
request.Headers.Add("x-ms-lease-id", leaseId);
}
if (sourceIfModifiedSince != null)
{
request.Headers.Add("x-ms-source-if-modified-since", sourceIfModifiedSince.Value, "R");
}
if (sourceIfUnmodifiedSince != null)
{
request.Headers.Add("x-ms-source-if-unmodified-since", sourceIfUnmodifiedSince.Value, "R");
}
if (sourceIfMatch != null)
{
request.Headers.Add("x-ms-source-if-match", sourceIfMatch);
}
if (sourceIfNoneMatch != null)
{
request.Headers.Add("x-ms-source-if-none-match", sourceIfNoneMatch);
}
request.Headers.Add("x-ms-version", _version);
if (copySourceAuthorization != null)
{
request.Headers.Add("x-ms-copy-source-authorization", copySourceAuthorization);
}
request.Headers.Add("Accept", "application/xml");
return message;
}
/// <summary> The Stage Block operation creates a new block to be committed as part of a blob where the contents are read from a URL. </summary>
/// <param name="blockId"> A valid Base64 string value that identifies the block. Prior to encoding, the string must be less than or equal to 64 bytes in size. For a given blob, the length of the value specified for the blockid parameter must be the same size for each block. </param>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="sourceUrl"> Specify a URL to the copy source. </param>
/// <param name="sourceRange"> Bytes of source data in the specified range. </param>
/// <param name="sourceContentMD5"> Specify the md5 calculated for the range of bytes that must be read from the copy source. </param>
/// <param name="sourceContentcrc64"> Specify the crc64 calculated for the range of bytes that must be read from the copy source. </param>
/// <param name="timeout"> The timeout parameter is expressed in seconds. For more information, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting Timeouts for Blob Service Operations.</a>. </param>
/// <param name="encryptionKey"> Optional. Specifies the encryption key to use to encrypt the data provided in the request. If not specified, encryption is performed with the root account encryption key. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="encryptionKeySha256"> The SHA-256 hash of the provided encryption key. Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionAlgorithm"> The algorithm used to produce the encryption key hash. Currently, the only accepted value is "AES256". Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionScope"> Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </param>
/// <param name="sourceIfModifiedSince"> Specify this header value to operate only on a blob if it has been modified since the specified date/time. </param>
/// <param name="sourceIfUnmodifiedSince"> Specify this header value to operate only on a blob if it has not been modified since the specified date/time. </param>
/// <param name="sourceIfMatch"> Specify an ETag value to operate only on blobs with a matching value. </param>
/// <param name="sourceIfNoneMatch"> Specify an ETag value to operate only on blobs without a matching value. </param>
/// <param name="copySourceAuthorization"> Only Bearer type is supported. Credentials should be a valid OAuth access token to copy source. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="blockId"/> or <paramref name="sourceUrl"/> is null. </exception>
public async Task<ResponseWithHeaders<BlockBlobStageBlockFromURLHeaders>> StageBlockFromURLAsync(string blockId, long contentLength, string sourceUrl, string sourceRange = null, byte[] sourceContentMD5 = null, byte[] sourceContentcrc64 = null, int? timeout = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, string leaseId = null, DateTimeOffset? sourceIfModifiedSince = null, DateTimeOffset? sourceIfUnmodifiedSince = null, string sourceIfMatch = null, string sourceIfNoneMatch = null, string copySourceAuthorization = null, CancellationToken cancellationToken = default)
{
if (blockId == null)
{
throw new ArgumentNullException(nameof(blockId));
}
if (sourceUrl == null)
{
throw new ArgumentNullException(nameof(sourceUrl));
}
using var message = CreateStageBlockFromURLRequest(blockId, contentLength, sourceUrl, sourceRange, sourceContentMD5, sourceContentcrc64, timeout, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, leaseId, sourceIfModifiedSince, sourceIfUnmodifiedSince, sourceIfMatch, sourceIfNoneMatch, copySourceAuthorization);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new BlockBlobStageBlockFromURLHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Stage Block operation creates a new block to be committed as part of a blob where the contents are read from a URL. </summary>
/// <param name="blockId"> A valid Base64 string value that identifies the block. Prior to encoding, the string must be less than or equal to 64 bytes in size. For a given blob, the length of the value specified for the blockid parameter must be the same size for each block. </param>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="sourceUrl"> Specify a URL to the copy source. </param>
/// <param name="sourceRange"> Bytes of source data in the specified range. </param>
/// <param name="sourceContentMD5"> Specify the md5 calculated for the range of bytes that must be read from the copy source. </param>
/// <param name="sourceContentcrc64"> Specify the crc64 calculated for the range of bytes that must be read from the copy source. </param>
/// <param name="timeout"> The timeout parameter is expressed in seconds. For more information, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting Timeouts for Blob Service Operations.</a>. </param>
/// <param name="encryptionKey"> Optional. Specifies the encryption key to use to encrypt the data provided in the request. If not specified, encryption is performed with the root account encryption key. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="encryptionKeySha256"> The SHA-256 hash of the provided encryption key. Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionAlgorithm"> The algorithm used to produce the encryption key hash. Currently, the only accepted value is "AES256". Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionScope"> Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </param>
/// <param name="sourceIfModifiedSince"> Specify this header value to operate only on a blob if it has been modified since the specified date/time. </param>
/// <param name="sourceIfUnmodifiedSince"> Specify this header value to operate only on a blob if it has not been modified since the specified date/time. </param>
/// <param name="sourceIfMatch"> Specify an ETag value to operate only on blobs with a matching value. </param>
/// <param name="sourceIfNoneMatch"> Specify an ETag value to operate only on blobs without a matching value. </param>
/// <param name="copySourceAuthorization"> Only Bearer type is supported. Credentials should be a valid OAuth access token to copy source. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="blockId"/> or <paramref name="sourceUrl"/> is null. </exception>
public ResponseWithHeaders<BlockBlobStageBlockFromURLHeaders> StageBlockFromURL(string blockId, long contentLength, string sourceUrl, string sourceRange = null, byte[] sourceContentMD5 = null, byte[] sourceContentcrc64 = null, int? timeout = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, string leaseId = null, DateTimeOffset? sourceIfModifiedSince = null, DateTimeOffset? sourceIfUnmodifiedSince = null, string sourceIfMatch = null, string sourceIfNoneMatch = null, string copySourceAuthorization = null, CancellationToken cancellationToken = default)
{
if (blockId == null)
{
throw new ArgumentNullException(nameof(blockId));
}
if (sourceUrl == null)
{
throw new ArgumentNullException(nameof(sourceUrl));
}
using var message = CreateStageBlockFromURLRequest(blockId, contentLength, sourceUrl, sourceRange, sourceContentMD5, sourceContentcrc64, timeout, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, leaseId, sourceIfModifiedSince, sourceIfUnmodifiedSince, sourceIfMatch, sourceIfNoneMatch, copySourceAuthorization);
_pipeline.Send(message, cancellationToken);
var headers = new BlockBlobStageBlockFromURLHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
internal HttpMessage CreateCommitBlockListRequest(BlockLookupList blocks, int? timeout, string blobCacheControl, string blobContentType, string blobContentEncoding, string blobContentLanguage, byte[] blobContentMD5, byte[] transactionalContentMD5, byte[] transactionalContentCrc64, IDictionary<string, string> metadata, string leaseId, string blobContentDisposition, string encryptionKey, string encryptionKeySha256, EncryptionAlgorithmTypeInternal? encryptionAlgorithm, string encryptionScope, AccessTier? tier, DateTimeOffset? ifModifiedSince, DateTimeOffset? ifUnmodifiedSince, string ifMatch, string ifNoneMatch, string ifTags, string blobTagsString, DateTimeOffset? immutabilityPolicyExpiry, BlobImmutabilityPolicyMode? immutabilityPolicyMode, bool? legalHold)
{
var message = _pipeline.CreateMessage();
var request = message.Request;
request.Method = RequestMethod.Put;
var uri = new RawRequestUriBuilder();
uri.AppendRaw(_url, false);
uri.AppendQuery("comp", "blocklist", true);
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
request.Uri = uri;
if (blobCacheControl != null)
{
request.Headers.Add("x-ms-blob-cache-control", blobCacheControl);
}
if (blobContentType != null)
{
request.Headers.Add("x-ms-blob-content-type", blobContentType);
}
if (blobContentEncoding != null)
{
request.Headers.Add("x-ms-blob-content-encoding", blobContentEncoding);
}
if (blobContentLanguage != null)
{
request.Headers.Add("x-ms-blob-content-language", blobContentLanguage);
}
if (blobContentMD5 != null)
{
request.Headers.Add("x-ms-blob-content-md5", blobContentMD5, "D");
}
if (transactionalContentCrc64 != null)
{
request.Headers.Add("x-ms-content-crc64", transactionalContentCrc64, "D");
}
if (metadata != null)
{
request.Headers.Add("x-ms-meta-", metadata);
}
if (leaseId != null)
{
request.Headers.Add("x-ms-lease-id", leaseId);
}
if (blobContentDisposition != null)
{
request.Headers.Add("x-ms-blob-content-disposition", blobContentDisposition);
}
if (encryptionKey != null)
{
request.Headers.Add("x-ms-encryption-key", encryptionKey);
}
if (encryptionKeySha256 != null)
{
request.Headers.Add("x-ms-encryption-key-sha256", encryptionKeySha256);
}
if (encryptionAlgorithm != null)
{
request.Headers.Add("x-ms-encryption-algorithm", encryptionAlgorithm.Value.ToSerialString());
}
if (encryptionScope != null)
{
request.Headers.Add("x-ms-encryption-scope", encryptionScope);
}
if (tier != null)
{
request.Headers.Add("x-ms-access-tier", tier.Value.ToString());
}
if (ifModifiedSince != null)
{
request.Headers.Add("If-Modified-Since", ifModifiedSince.Value, "R");
}
if (ifUnmodifiedSince != null)
{
request.Headers.Add("If-Unmodified-Since", ifUnmodifiedSince.Value, "R");
}
if (ifMatch != null)
{
request.Headers.Add("If-Match", ifMatch);
}
if (ifNoneMatch != null)
{
request.Headers.Add("If-None-Match", ifNoneMatch);
}
if (ifTags != null)
{
request.Headers.Add("x-ms-if-tags", ifTags);
}
request.Headers.Add("x-ms-version", _version);
if (blobTagsString != null)
{
request.Headers.Add("x-ms-tags", blobTagsString);
}
if (immutabilityPolicyExpiry != null)
{
request.Headers.Add("x-ms-immutability-policy-until-date", immutabilityPolicyExpiry.Value, "R");
}
if (immutabilityPolicyMode != null)
{
request.Headers.Add("x-ms-immutability-policy-mode", immutabilityPolicyMode.Value.ToSerialString());
}
if (legalHold != null)
{
request.Headers.Add("x-ms-legal-hold", legalHold.Value);
}
request.Headers.Add("Accept", "application/xml");
if (transactionalContentMD5 != null)
{
request.Headers.Add("Content-MD5", transactionalContentMD5, "D");
}
request.Headers.Add("Content-Type", "application/xml");
var content = new XmlWriterContent();
content.XmlWriter.WriteObjectValue(blocks, "BlockList");
request.Content = content;
return message;
}
/// <summary> The Commit Block List operation writes a blob by specifying the list of block IDs that make up the blob. In order to be written as part of a blob, a block must have been successfully written to the server in a prior Put Block operation. You can call Put Block List to update a blob by uploading only those blocks that have changed, then committing the new and existing blocks together. You can do this by specifying whether to commit a block from the committed block list or from the uncommitted block list, or to commit the most recently uploaded version of the block, whichever list it may belong to. </summary>
/// <param name="blocks"> Blob Blocks. </param>
/// <param name="timeout"> The timeout parameter is expressed in seconds. For more information, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting Timeouts for Blob Service Operations.</a>. </param>
/// <param name="blobCacheControl"> Optional. Sets the blob's cache control. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentType"> Optional. Sets the blob's content type. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentEncoding"> Optional. Sets the blob's content encoding. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentLanguage"> Optional. Set the blob's content language. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentMD5"> Optional. An MD5 hash of the blob content. Note that this hash is not validated, as the hashes for the individual blocks were validated when each was uploaded. </param>
/// <param name="transactionalContentMD5"> Specify the transactional md5 for the body, to be validated by the service. </param>
/// <param name="transactionalContentCrc64"> Specify the transactional crc64 for the body, to be validated by the service. </param>
/// <param name="metadata"> Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value pairs are specified, the operation will copy the metadata from the source blob or file to the destination blob. If one or more name-value pairs are specified, the destination blob is created with the specified metadata, and metadata is not copied from the source blob or file. Note that beginning with version 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing Containers, Blobs, and Metadata for more information. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </param>
/// <param name="blobContentDisposition"> Optional. Sets the blob's Content-Disposition header. </param>
/// <param name="encryptionKey"> Optional. Specifies the encryption key to use to encrypt the data provided in the request. If not specified, encryption is performed with the root account encryption key. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="encryptionKeySha256"> The SHA-256 hash of the provided encryption key. Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionAlgorithm"> The algorithm used to produce the encryption key hash. Currently, the only accepted value is "AES256". Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionScope"> Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="tier"> Optional. Indicates the tier to be set on the blob. </param>
/// <param name="ifModifiedSince"> Specify this header value to operate only on a blob if it has been modified since the specified date/time. </param>
/// <param name="ifUnmodifiedSince"> Specify this header value to operate only on a blob if it has not been modified since the specified date/time. </param>
/// <param name="ifMatch"> Specify an ETag value to operate only on blobs with a matching value. </param>
/// <param name="ifNoneMatch"> Specify an ETag value to operate only on blobs without a matching value. </param>
/// <param name="ifTags"> Specify a SQL where clause on blob tags to operate only on blobs with a matching value. </param>
/// <param name="blobTagsString"> Optional. Used to set blob tags in various blob operations. </param>
/// <param name="immutabilityPolicyExpiry"> Specifies the date time when the blobs immutability policy is set to expire. </param>
/// <param name="immutabilityPolicyMode"> Specifies the immutability policy mode to set on the blob. </param>
/// <param name="legalHold"> Specified if a legal hold should be set on the blob. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="blocks"/> is null. </exception>
public async Task<ResponseWithHeaders<BlockBlobCommitBlockListHeaders>> CommitBlockListAsync(BlockLookupList blocks, int? timeout = null, string blobCacheControl = null, string blobContentType = null, string blobContentEncoding = null, string blobContentLanguage = null, byte[] blobContentMD5 = null, byte[] transactionalContentMD5 = null, byte[] transactionalContentCrc64 = null, IDictionary<string, string> metadata = null, string leaseId = null, string blobContentDisposition = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, AccessTier? tier = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, string blobTagsString = null, DateTimeOffset? immutabilityPolicyExpiry = null, BlobImmutabilityPolicyMode? immutabilityPolicyMode = null, bool? legalHold = null, CancellationToken cancellationToken = default)
{
if (blocks == null)
{
throw new ArgumentNullException(nameof(blocks));
}
using var message = CreateCommitBlockListRequest(blocks, timeout, blobCacheControl, blobContentType, blobContentEncoding, blobContentLanguage, blobContentMD5, transactionalContentMD5, transactionalContentCrc64, metadata, leaseId, blobContentDisposition, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, tier, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, blobTagsString, immutabilityPolicyExpiry, immutabilityPolicyMode, legalHold);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new BlockBlobCommitBlockListHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Commit Block List operation writes a blob by specifying the list of block IDs that make up the blob. In order to be written as part of a blob, a block must have been successfully written to the server in a prior Put Block operation. You can call Put Block List to update a blob by uploading only those blocks that have changed, then committing the new and existing blocks together. You can do this by specifying whether to commit a block from the committed block list or from the uncommitted block list, or to commit the most recently uploaded version of the block, whichever list it may belong to. </summary>
/// <param name="blocks"> Blob Blocks. </param>
/// <param name="timeout"> The timeout parameter is expressed in seconds. For more information, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting Timeouts for Blob Service Operations.</a>. </param>
/// <param name="blobCacheControl"> Optional. Sets the blob's cache control. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentType"> Optional. Sets the blob's content type. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentEncoding"> Optional. Sets the blob's content encoding. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentLanguage"> Optional. Set the blob's content language. If specified, this property is stored with the blob and returned with a read request. </param>
/// <param name="blobContentMD5"> Optional. An MD5 hash of the blob content. Note that this hash is not validated, as the hashes for the individual blocks were validated when each was uploaded. </param>
/// <param name="transactionalContentMD5"> Specify the transactional md5 for the body, to be validated by the service. </param>
/// <param name="transactionalContentCrc64"> Specify the transactional crc64 for the body, to be validated by the service. </param>
/// <param name="metadata"> Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value pairs are specified, the operation will copy the metadata from the source blob or file to the destination blob. If one or more name-value pairs are specified, the destination blob is created with the specified metadata, and metadata is not copied from the source blob or file. Note that beginning with version 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing Containers, Blobs, and Metadata for more information. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </param>
/// <param name="blobContentDisposition"> Optional. Sets the blob's Content-Disposition header. </param>
/// <param name="encryptionKey"> Optional. Specifies the encryption key to use to encrypt the data provided in the request. If not specified, encryption is performed with the root account encryption key. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="encryptionKeySha256"> The SHA-256 hash of the provided encryption key. Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionAlgorithm"> The algorithm used to produce the encryption key hash. Currently, the only accepted value is "AES256". Must be provided if the x-ms-encryption-key header is provided. </param>
/// <param name="encryptionScope"> Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services. </param>
/// <param name="tier"> Optional. Indicates the tier to be set on the blob. </param>
/// <param name="ifModifiedSince"> Specify this header value to operate only on a blob if it has been modified since the specified date/time. </param>
/// <param name="ifUnmodifiedSince"> Specify this header value to operate only on a blob if it has not been modified since the specified date/time. </param>
/// <param name="ifMatch"> Specify an ETag value to operate only on blobs with a matching value. </param>
/// <param name="ifNoneMatch"> Specify an ETag value to operate only on blobs without a matching value. </param>
/// <param name="ifTags"> Specify a SQL where clause on blob tags to operate only on blobs with a matching value. </param>
/// <param name="blobTagsString"> Optional. Used to set blob tags in various blob operations. </param>
/// <param name="immutabilityPolicyExpiry"> Specifies the date time when the blobs immutability policy is set to expire. </param>
/// <param name="immutabilityPolicyMode"> Specifies the immutability policy mode to set on the blob. </param>
/// <param name="legalHold"> Specified if a legal hold should be set on the blob. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="blocks"/> is null. </exception>
public ResponseWithHeaders<BlockBlobCommitBlockListHeaders> CommitBlockList(BlockLookupList blocks, int? timeout = null, string blobCacheControl = null, string blobContentType = null, string blobContentEncoding = null, string blobContentLanguage = null, byte[] blobContentMD5 = null, byte[] transactionalContentMD5 = null, byte[] transactionalContentCrc64 = null, IDictionary<string, string> metadata = null, string leaseId = null, string blobContentDisposition = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, AccessTier? tier = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, string blobTagsString = null, DateTimeOffset? immutabilityPolicyExpiry = null, BlobImmutabilityPolicyMode? immutabilityPolicyMode = null, bool? legalHold = null, CancellationToken cancellationToken = default)
{
if (blocks == null)
{
throw new ArgumentNullException(nameof(blocks));
}
using var message = CreateCommitBlockListRequest(blocks, timeout, blobCacheControl, blobContentType, blobContentEncoding, blobContentLanguage, blobContentMD5, transactionalContentMD5, transactionalContentCrc64, metadata, leaseId, blobContentDisposition, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, tier, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, blobTagsString, immutabilityPolicyExpiry, immutabilityPolicyMode, legalHold);
_pipeline.Send(message, cancellationToken);
var headers = new BlockBlobCommitBlockListHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
internal HttpMessage CreateGetBlockListRequest(BlockListType listType, string snapshot, int? timeout, string leaseId, string ifTags)
{
var message = _pipeline.CreateMessage();
var request = message.Request;
request.Method = RequestMethod.Get;
var uri = new RawRequestUriBuilder();
uri.AppendRaw(_url, false);
uri.AppendQuery("comp", "blocklist", true);