forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPageBlobRestClient.cs
More file actions
1595 lines (1546 loc) · 136 KB
/
PageBlobRestClient.cs
File metadata and controls
1595 lines (1546 loc) · 136 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;
using Azure.Core;
using Azure.Core.Pipeline;
using Azure.Storage.Blobs.Models;
namespace Azure.Storage.Blobs
{
internal partial class PageBlobRestClient
{
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 PageBlobRestClient. </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 PageBlobRestClient(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 CreateCreateRequest(long contentLength, long blobContentLength, int? timeout, PremiumPageBlobAccessTier? tier, 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, DateTimeOffset? ifModifiedSince, DateTimeOffset? ifUnmodifiedSince, string ifMatch, string ifNoneMatch, string ifTags, long? blobSequenceNumber, 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);
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
request.Uri = uri;
request.Headers.Add("x-ms-blob-type", "PageBlob");
if (tier != null)
{
request.Headers.Add("x-ms-access-tier", tier.Value.ToString());
}
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 (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-blob-content-length", blobContentLength);
if (blobSequenceNumber != null)
{
request.Headers.Add("x-ms-blob-sequence-number", blobSequenceNumber.Value);
}
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");
return message;
}
/// <summary> The Create operation creates a new page blob. </summary>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="blobContentLength"> This header specifies the maximum size for the page blob, up to 1 TB. The page blob size must be aligned to a 512-byte boundary. </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="tier"> Optional. Indicates the tier to be set on the page blob. </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="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="blobSequenceNumber"> Set for page blobs only. The sequence number is a user-controlled value that you can use to track requests. The value of the sequence number must be between 0 and 2^63 - 1. </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>
public async Task<ResponseWithHeaders<PageBlobCreateHeaders>> CreateAsync(long contentLength, long blobContentLength, int? timeout = null, PremiumPageBlobAccessTier? tier = 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, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, long? blobSequenceNumber = null, string blobTagsString = null, DateTimeOffset? immutabilityPolicyExpiry = null, BlobImmutabilityPolicyMode? immutabilityPolicyMode = null, bool? legalHold = null, CancellationToken cancellationToken = default)
{
using var message = CreateCreateRequest(contentLength, blobContentLength, timeout, tier, blobContentType, blobContentEncoding, blobContentLanguage, blobContentMD5, blobCacheControl, metadata, leaseId, blobContentDisposition, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, blobSequenceNumber, blobTagsString, immutabilityPolicyExpiry, immutabilityPolicyMode, legalHold);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new PageBlobCreateHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Create operation creates a new page blob. </summary>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="blobContentLength"> This header specifies the maximum size for the page blob, up to 1 TB. The page blob size must be aligned to a 512-byte boundary. </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="tier"> Optional. Indicates the tier to be set on the page blob. </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="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="blobSequenceNumber"> Set for page blobs only. The sequence number is a user-controlled value that you can use to track requests. The value of the sequence number must be between 0 and 2^63 - 1. </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>
public ResponseWithHeaders<PageBlobCreateHeaders> Create(long contentLength, long blobContentLength, int? timeout = null, PremiumPageBlobAccessTier? tier = 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, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, long? blobSequenceNumber = null, string blobTagsString = null, DateTimeOffset? immutabilityPolicyExpiry = null, BlobImmutabilityPolicyMode? immutabilityPolicyMode = null, bool? legalHold = null, CancellationToken cancellationToken = default)
{
using var message = CreateCreateRequest(contentLength, blobContentLength, timeout, tier, blobContentType, blobContentEncoding, blobContentLanguage, blobContentMD5, blobCacheControl, metadata, leaseId, blobContentDisposition, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, blobSequenceNumber, blobTagsString, immutabilityPolicyExpiry, immutabilityPolicyMode, legalHold);
_pipeline.Send(message, cancellationToken);
var headers = new PageBlobCreateHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
internal HttpMessage CreateUploadPagesRequest(long contentLength, Stream body, byte[] transactionalContentMD5, byte[] transactionalContentCrc64, int? timeout, string range, string leaseId, string encryptionKey, string encryptionKeySha256, EncryptionAlgorithmTypeInternal? encryptionAlgorithm, string encryptionScope, long? ifSequenceNumberLessThanOrEqualTo, long? ifSequenceNumberLessThan, long? ifSequenceNumberEqualTo, DateTimeOffset? ifModifiedSince, DateTimeOffset? ifUnmodifiedSince, string ifMatch, string ifNoneMatch, string ifTags)
{
var message = _pipeline.CreateMessage();
var request = message.Request;
request.Method = RequestMethod.Put;
var uri = new RawRequestUriBuilder();
uri.AppendRaw(_url, false);
uri.AppendQuery("comp", "page", true);
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
request.Uri = uri;
request.Headers.Add("x-ms-page-write", "update");
if (transactionalContentCrc64 != null)
{
request.Headers.Add("x-ms-content-crc64", transactionalContentCrc64, "D");
}
if (range != null)
{
request.Headers.Add("x-ms-range", range);
}
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);
}
if (ifSequenceNumberLessThanOrEqualTo != null)
{
request.Headers.Add("x-ms-if-sequence-number-le", ifSequenceNumberLessThanOrEqualTo.Value);
}
if (ifSequenceNumberLessThan != null)
{
request.Headers.Add("x-ms-if-sequence-number-lt", ifSequenceNumberLessThan.Value);
}
if (ifSequenceNumberEqualTo != null)
{
request.Headers.Add("x-ms-if-sequence-number-eq", ifSequenceNumberEqualTo.Value);
}
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);
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 Upload Pages operation writes a range of pages to a page blob. </summary>
/// <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="range"> Return only the bytes of the blob in the specified range. </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="ifSequenceNumberLessThanOrEqualTo"> Specify this header value to operate only on a blob if it has a sequence number less than or equal to the specified. </param>
/// <param name="ifSequenceNumberLessThan"> Specify this header value to operate only on a blob if it has a sequence number less than the specified. </param>
/// <param name="ifSequenceNumberEqualTo"> Specify this header value to operate only on a blob if it has the specified sequence number. </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="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="body"/> is null. </exception>
public async Task<ResponseWithHeaders<PageBlobUploadPagesHeaders>> UploadPagesAsync(long contentLength, Stream body, byte[] transactionalContentMD5 = null, byte[] transactionalContentCrc64 = null, int? timeout = null, string range = null, string leaseId = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, long? ifSequenceNumberLessThanOrEqualTo = null, long? ifSequenceNumberLessThan = null, long? ifSequenceNumberEqualTo = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, CancellationToken cancellationToken = default)
{
if (body == null)
{
throw new ArgumentNullException(nameof(body));
}
using var message = CreateUploadPagesRequest(contentLength, body, transactionalContentMD5, transactionalContentCrc64, timeout, range, leaseId, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, ifSequenceNumberLessThanOrEqualTo, ifSequenceNumberLessThan, ifSequenceNumberEqualTo, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new PageBlobUploadPagesHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Upload Pages operation writes a range of pages to a page blob. </summary>
/// <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="range"> Return only the bytes of the blob in the specified range. </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="ifSequenceNumberLessThanOrEqualTo"> Specify this header value to operate only on a blob if it has a sequence number less than or equal to the specified. </param>
/// <param name="ifSequenceNumberLessThan"> Specify this header value to operate only on a blob if it has a sequence number less than the specified. </param>
/// <param name="ifSequenceNumberEqualTo"> Specify this header value to operate only on a blob if it has the specified sequence number. </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="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="body"/> is null. </exception>
public ResponseWithHeaders<PageBlobUploadPagesHeaders> UploadPages(long contentLength, Stream body, byte[] transactionalContentMD5 = null, byte[] transactionalContentCrc64 = null, int? timeout = null, string range = null, string leaseId = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, long? ifSequenceNumberLessThanOrEqualTo = null, long? ifSequenceNumberLessThan = null, long? ifSequenceNumberEqualTo = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, CancellationToken cancellationToken = default)
{
if (body == null)
{
throw new ArgumentNullException(nameof(body));
}
using var message = CreateUploadPagesRequest(contentLength, body, transactionalContentMD5, transactionalContentCrc64, timeout, range, leaseId, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, ifSequenceNumberLessThanOrEqualTo, ifSequenceNumberLessThan, ifSequenceNumberEqualTo, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags);
_pipeline.Send(message, cancellationToken);
var headers = new PageBlobUploadPagesHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
internal HttpMessage CreateClearPagesRequest(long contentLength, int? timeout, string range, string leaseId, string encryptionKey, string encryptionKeySha256, EncryptionAlgorithmTypeInternal? encryptionAlgorithm, string encryptionScope, long? ifSequenceNumberLessThanOrEqualTo, long? ifSequenceNumberLessThan, long? ifSequenceNumberEqualTo, DateTimeOffset? ifModifiedSince, DateTimeOffset? ifUnmodifiedSince, string ifMatch, string ifNoneMatch, string ifTags)
{
var message = _pipeline.CreateMessage();
var request = message.Request;
request.Method = RequestMethod.Put;
var uri = new RawRequestUriBuilder();
uri.AppendRaw(_url, false);
uri.AppendQuery("comp", "page", true);
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
request.Uri = uri;
request.Headers.Add("x-ms-page-write", "clear");
if (range != null)
{
request.Headers.Add("x-ms-range", range);
}
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);
}
if (ifSequenceNumberLessThanOrEqualTo != null)
{
request.Headers.Add("x-ms-if-sequence-number-le", ifSequenceNumberLessThanOrEqualTo.Value);
}
if (ifSequenceNumberLessThan != null)
{
request.Headers.Add("x-ms-if-sequence-number-lt", ifSequenceNumberLessThan.Value);
}
if (ifSequenceNumberEqualTo != null)
{
request.Headers.Add("x-ms-if-sequence-number-eq", ifSequenceNumberEqualTo.Value);
}
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);
request.Headers.Add("Accept", "application/xml");
return message;
}
/// <summary> The Clear Pages operation clears a set of pages from a page blob. </summary>
/// <param name="contentLength"> The length of the request. </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="range"> Return only the bytes of the blob in the specified range. </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="ifSequenceNumberLessThanOrEqualTo"> Specify this header value to operate only on a blob if it has a sequence number less than or equal to the specified. </param>
/// <param name="ifSequenceNumberLessThan"> Specify this header value to operate only on a blob if it has a sequence number less than the specified. </param>
/// <param name="ifSequenceNumberEqualTo"> Specify this header value to operate only on a blob if it has the specified sequence number. </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="cancellationToken"> The cancellation token to use. </param>
public async Task<ResponseWithHeaders<PageBlobClearPagesHeaders>> ClearPagesAsync(long contentLength, int? timeout = null, string range = null, string leaseId = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, long? ifSequenceNumberLessThanOrEqualTo = null, long? ifSequenceNumberLessThan = null, long? ifSequenceNumberEqualTo = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, CancellationToken cancellationToken = default)
{
using var message = CreateClearPagesRequest(contentLength, timeout, range, leaseId, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, ifSequenceNumberLessThanOrEqualTo, ifSequenceNumberLessThan, ifSequenceNumberEqualTo, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new PageBlobClearPagesHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Clear Pages operation clears a set of pages from a page blob. </summary>
/// <param name="contentLength"> The length of the request. </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="range"> Return only the bytes of the blob in the specified range. </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="ifSequenceNumberLessThanOrEqualTo"> Specify this header value to operate only on a blob if it has a sequence number less than or equal to the specified. </param>
/// <param name="ifSequenceNumberLessThan"> Specify this header value to operate only on a blob if it has a sequence number less than the specified. </param>
/// <param name="ifSequenceNumberEqualTo"> Specify this header value to operate only on a blob if it has the specified sequence number. </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="cancellationToken"> The cancellation token to use. </param>
public ResponseWithHeaders<PageBlobClearPagesHeaders> ClearPages(long contentLength, int? timeout = null, string range = null, string leaseId = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, long? ifSequenceNumberLessThanOrEqualTo = null, long? ifSequenceNumberLessThan = null, long? ifSequenceNumberEqualTo = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, CancellationToken cancellationToken = default)
{
using var message = CreateClearPagesRequest(contentLength, timeout, range, leaseId, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, ifSequenceNumberLessThanOrEqualTo, ifSequenceNumberLessThan, ifSequenceNumberEqualTo, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags);
_pipeline.Send(message, cancellationToken);
var headers = new PageBlobClearPagesHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
internal HttpMessage CreateUploadPagesFromURLRequest(string sourceUrl, string sourceRange, long contentLength, string range, byte[] sourceContentMD5, byte[] sourceContentcrc64, int? timeout, string encryptionKey, string encryptionKeySha256, EncryptionAlgorithmTypeInternal? encryptionAlgorithm, string encryptionScope, string leaseId, long? ifSequenceNumberLessThanOrEqualTo, long? ifSequenceNumberLessThan, long? ifSequenceNumberEqualTo, DateTimeOffset? ifModifiedSince, DateTimeOffset? ifUnmodifiedSince, string ifMatch, string ifNoneMatch, string ifTags, 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", "page", true);
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
request.Uri = uri;
request.Headers.Add("x-ms-page-write", "update");
request.Headers.Add("x-ms-copy-source", sourceUrl);
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");
}
request.Headers.Add("x-ms-range", range);
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 (ifSequenceNumberLessThanOrEqualTo != null)
{
request.Headers.Add("x-ms-if-sequence-number-le", ifSequenceNumberLessThanOrEqualTo.Value);
}
if (ifSequenceNumberLessThan != null)
{
request.Headers.Add("x-ms-if-sequence-number-lt", ifSequenceNumberLessThan.Value);
}
if (ifSequenceNumberEqualTo != null)
{
request.Headers.Add("x-ms-if-sequence-number-eq", ifSequenceNumberEqualTo.Value);
}
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);
}
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 Upload Pages operation writes a range of pages to a page blob where the contents are read from a URL. </summary>
/// <param name="sourceUrl"> Specify a URL to the copy source. </param>
/// <param name="sourceRange"> Bytes of source data in the specified range. The length of this range should match the ContentLength header and x-ms-range/Range destination range header. </param>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="range"> The range of bytes to which the source range would be written. The range should be 512 aligned and range-end is required. </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="ifSequenceNumberLessThanOrEqualTo"> Specify this header value to operate only on a blob if it has a sequence number less than or equal to the specified. </param>
/// <param name="ifSequenceNumberLessThan"> Specify this header value to operate only on a blob if it has a sequence number less than the specified. </param>
/// <param name="ifSequenceNumberEqualTo"> Specify this header value to operate only on a blob if it has the specified sequence number. </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="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="sourceUrl"/>, <paramref name="sourceRange"/> or <paramref name="range"/> is null. </exception>
public async Task<ResponseWithHeaders<PageBlobUploadPagesFromURLHeaders>> UploadPagesFromURLAsync(string sourceUrl, string sourceRange, long contentLength, string range, byte[] sourceContentMD5 = null, byte[] sourceContentcrc64 = null, int? timeout = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, string leaseId = null, long? ifSequenceNumberLessThanOrEqualTo = null, long? ifSequenceNumberLessThan = null, long? ifSequenceNumberEqualTo = 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 copySourceAuthorization = null, CancellationToken cancellationToken = default)
{
if (sourceUrl == null)
{
throw new ArgumentNullException(nameof(sourceUrl));
}
if (sourceRange == null)
{
throw new ArgumentNullException(nameof(sourceRange));
}
if (range == null)
{
throw new ArgumentNullException(nameof(range));
}
using var message = CreateUploadPagesFromURLRequest(sourceUrl, sourceRange, contentLength, range, sourceContentMD5, sourceContentcrc64, timeout, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, leaseId, ifSequenceNumberLessThanOrEqualTo, ifSequenceNumberLessThan, ifSequenceNumberEqualTo, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, sourceIfModifiedSince, sourceIfUnmodifiedSince, sourceIfMatch, sourceIfNoneMatch, copySourceAuthorization);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new PageBlobUploadPagesFromURLHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Upload Pages operation writes a range of pages to a page blob where the contents are read from a URL. </summary>
/// <param name="sourceUrl"> Specify a URL to the copy source. </param>
/// <param name="sourceRange"> Bytes of source data in the specified range. The length of this range should match the ContentLength header and x-ms-range/Range destination range header. </param>
/// <param name="contentLength"> The length of the request. </param>
/// <param name="range"> The range of bytes to which the source range would be written. The range should be 512 aligned and range-end is required. </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="ifSequenceNumberLessThanOrEqualTo"> Specify this header value to operate only on a blob if it has a sequence number less than or equal to the specified. </param>
/// <param name="ifSequenceNumberLessThan"> Specify this header value to operate only on a blob if it has a sequence number less than the specified. </param>
/// <param name="ifSequenceNumberEqualTo"> Specify this header value to operate only on a blob if it has the specified sequence number. </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="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="sourceUrl"/>, <paramref name="sourceRange"/> or <paramref name="range"/> is null. </exception>
public ResponseWithHeaders<PageBlobUploadPagesFromURLHeaders> UploadPagesFromURL(string sourceUrl, string sourceRange, long contentLength, string range, byte[] sourceContentMD5 = null, byte[] sourceContentcrc64 = null, int? timeout = null, string encryptionKey = null, string encryptionKeySha256 = null, EncryptionAlgorithmTypeInternal? encryptionAlgorithm = null, string encryptionScope = null, string leaseId = null, long? ifSequenceNumberLessThanOrEqualTo = null, long? ifSequenceNumberLessThan = null, long? ifSequenceNumberEqualTo = 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 copySourceAuthorization = null, CancellationToken cancellationToken = default)
{
if (sourceUrl == null)
{
throw new ArgumentNullException(nameof(sourceUrl));
}
if (sourceRange == null)
{
throw new ArgumentNullException(nameof(sourceRange));
}
if (range == null)
{
throw new ArgumentNullException(nameof(range));
}
using var message = CreateUploadPagesFromURLRequest(sourceUrl, sourceRange, contentLength, range, sourceContentMD5, sourceContentcrc64, timeout, encryptionKey, encryptionKeySha256, encryptionAlgorithm, encryptionScope, leaseId, ifSequenceNumberLessThanOrEqualTo, ifSequenceNumberLessThan, ifSequenceNumberEqualTo, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, sourceIfModifiedSince, sourceIfUnmodifiedSince, sourceIfMatch, sourceIfNoneMatch, copySourceAuthorization);
_pipeline.Send(message, cancellationToken);
var headers = new PageBlobUploadPagesFromURLHeaders(message.Response);
switch (message.Response.Status)
{
case 201:
return ResponseWithHeaders.FromValue(headers, message.Response);
default:
throw new RequestFailedException(message.Response);
}
}
internal HttpMessage CreateGetPageRangesRequest(string snapshot, int? timeout, string range, string leaseId, DateTimeOffset? ifModifiedSince, DateTimeOffset? ifUnmodifiedSince, string ifMatch, string ifNoneMatch, string ifTags, string marker, int? maxresults)
{
var message = _pipeline.CreateMessage();
var request = message.Request;
request.Method = RequestMethod.Get;
var uri = new RawRequestUriBuilder();
uri.AppendRaw(_url, false);
uri.AppendQuery("comp", "pagelist", true);
if (snapshot != null)
{
uri.AppendQuery("snapshot", snapshot, true);
}
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
if (marker != null)
{
uri.AppendQuery("marker", marker, true);
}
if (maxresults != null)
{
uri.AppendQuery("maxresults", maxresults.Value, true);
}
request.Uri = uri;
if (range != null)
{
request.Headers.Add("x-ms-range", range);
}
if (leaseId != null)
{
request.Headers.Add("x-ms-lease-id", leaseId);
}
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);
request.Headers.Add("Accept", "application/xml");
return message;
}
/// <summary> The Get Page Ranges operation returns the list of valid page ranges for a page blob or snapshot of a page blob. </summary>
/// <param name="snapshot"> The snapshot parameter is an opaque DateTime value that, when present, specifies the blob snapshot to retrieve. For more information on working with blob snapshots, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating a Snapshot of a Blob.</a>. </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="range"> Return only the bytes of the blob in the specified range. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </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="marker"> A string value that identifies the portion of the list of containers to be returned with the next listing operation. The operation returns the NextMarker value within the response body if the listing operation did not return all containers remaining to be listed with the current page. The NextMarker value can be used as the value for the marker parameter in a subsequent call to request the next page of list items. The marker value is opaque to the client. </param>
/// <param name="maxresults"> Specifies the maximum number of containers to return. If the request does not specify maxresults, or specifies a value greater than 5000, the server will return up to 5000 items. Note that if the listing operation crosses a partition boundary, then the service will return a continuation token for retrieving the remainder of the results. For this reason, it is possible that the service will return fewer results than specified by maxresults, or than the default of 5000. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public async Task<ResponseWithHeaders<PageList, PageBlobGetPageRangesHeaders>> GetPageRangesAsync(string snapshot = null, int? timeout = null, string range = null, string leaseId = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, string marker = null, int? maxresults = null, CancellationToken cancellationToken = default)
{
using var message = CreateGetPageRangesRequest(snapshot, timeout, range, leaseId, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, marker, maxresults);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new PageBlobGetPageRangesHeaders(message.Response);
switch (message.Response.Status)
{
case 200:
{
PageList value = default;
var document = XDocument.Load(message.Response.ContentStream, LoadOptions.PreserveWhitespace);
if (document.Element("PageList") is XElement pageListElement)
{
value = PageList.DeserializePageList(pageListElement);
}
return ResponseWithHeaders.FromValue(value, headers, message.Response);
}
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Get Page Ranges operation returns the list of valid page ranges for a page blob or snapshot of a page blob. </summary>
/// <param name="snapshot"> The snapshot parameter is an opaque DateTime value that, when present, specifies the blob snapshot to retrieve. For more information on working with blob snapshots, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating a Snapshot of a Blob.</a>. </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="range"> Return only the bytes of the blob in the specified range. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </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="marker"> A string value that identifies the portion of the list of containers to be returned with the next listing operation. The operation returns the NextMarker value within the response body if the listing operation did not return all containers remaining to be listed with the current page. The NextMarker value can be used as the value for the marker parameter in a subsequent call to request the next page of list items. The marker value is opaque to the client. </param>
/// <param name="maxresults"> Specifies the maximum number of containers to return. If the request does not specify maxresults, or specifies a value greater than 5000, the server will return up to 5000 items. Note that if the listing operation crosses a partition boundary, then the service will return a continuation token for retrieving the remainder of the results. For this reason, it is possible that the service will return fewer results than specified by maxresults, or than the default of 5000. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public ResponseWithHeaders<PageList, PageBlobGetPageRangesHeaders> GetPageRanges(string snapshot = null, int? timeout = null, string range = null, string leaseId = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, string marker = null, int? maxresults = null, CancellationToken cancellationToken = default)
{
using var message = CreateGetPageRangesRequest(snapshot, timeout, range, leaseId, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, marker, maxresults);
_pipeline.Send(message, cancellationToken);
var headers = new PageBlobGetPageRangesHeaders(message.Response);
switch (message.Response.Status)
{
case 200:
{
PageList value = default;
var document = XDocument.Load(message.Response.ContentStream, LoadOptions.PreserveWhitespace);
if (document.Element("PageList") is XElement pageListElement)
{
value = PageList.DeserializePageList(pageListElement);
}
return ResponseWithHeaders.FromValue(value, headers, message.Response);
}
default:
throw new RequestFailedException(message.Response);
}
}
internal HttpMessage CreateGetPageRangesDiffRequest(string snapshot, int? timeout, string prevsnapshot, string prevSnapshotUrl, string range, string leaseId, DateTimeOffset? ifModifiedSince, DateTimeOffset? ifUnmodifiedSince, string ifMatch, string ifNoneMatch, string ifTags, string marker, int? maxresults)
{
var message = _pipeline.CreateMessage();
var request = message.Request;
request.Method = RequestMethod.Get;
var uri = new RawRequestUriBuilder();
uri.AppendRaw(_url, false);
uri.AppendQuery("comp", "pagelist", true);
if (snapshot != null)
{
uri.AppendQuery("snapshot", snapshot, true);
}
if (timeout != null)
{
uri.AppendQuery("timeout", timeout.Value, true);
}
if (prevsnapshot != null)
{
uri.AppendQuery("prevsnapshot", prevsnapshot, true);
}
if (marker != null)
{
uri.AppendQuery("marker", marker, true);
}
if (maxresults != null)
{
uri.AppendQuery("maxresults", maxresults.Value, true);
}
request.Uri = uri;
if (prevSnapshotUrl != null)
{
request.Headers.Add("x-ms-previous-snapshot-url", prevSnapshotUrl);
}
if (range != null)
{
request.Headers.Add("x-ms-range", range);
}
if (leaseId != null)
{
request.Headers.Add("x-ms-lease-id", leaseId);
}
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);
request.Headers.Add("Accept", "application/xml");
return message;
}
/// <summary> The Get Page Ranges Diff operation returns the list of valid page ranges for a page blob that were changed between target blob and previous snapshot. </summary>
/// <param name="snapshot"> The snapshot parameter is an opaque DateTime value that, when present, specifies the blob snapshot to retrieve. For more information on working with blob snapshots, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating a Snapshot of a Blob.</a>. </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="prevsnapshot"> Optional in version 2015-07-08 and newer. The prevsnapshot parameter is a DateTime value that specifies that the response will contain only pages that were changed between target blob and previous snapshot. Changed pages include both updated and cleared pages. The target blob may be a snapshot, as long as the snapshot specified by prevsnapshot is the older of the two. Note that incremental snapshots are currently supported only for blobs created on or after January 1, 2016. </param>
/// <param name="prevSnapshotUrl"> Optional. This header is only supported in service versions 2019-04-19 and after and specifies the URL of a previous snapshot of the target blob. The response will only contain pages that were changed between the target blob and its previous snapshot. </param>
/// <param name="range"> Return only the bytes of the blob in the specified range. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </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="marker"> A string value that identifies the portion of the list of containers to be returned with the next listing operation. The operation returns the NextMarker value within the response body if the listing operation did not return all containers remaining to be listed with the current page. The NextMarker value can be used as the value for the marker parameter in a subsequent call to request the next page of list items. The marker value is opaque to the client. </param>
/// <param name="maxresults"> Specifies the maximum number of containers to return. If the request does not specify maxresults, or specifies a value greater than 5000, the server will return up to 5000 items. Note that if the listing operation crosses a partition boundary, then the service will return a continuation token for retrieving the remainder of the results. For this reason, it is possible that the service will return fewer results than specified by maxresults, or than the default of 5000. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
public async Task<ResponseWithHeaders<PageList, PageBlobGetPageRangesDiffHeaders>> GetPageRangesDiffAsync(string snapshot = null, int? timeout = null, string prevsnapshot = null, string prevSnapshotUrl = null, string range = null, string leaseId = null, DateTimeOffset? ifModifiedSince = null, DateTimeOffset? ifUnmodifiedSince = null, string ifMatch = null, string ifNoneMatch = null, string ifTags = null, string marker = null, int? maxresults = null, CancellationToken cancellationToken = default)
{
using var message = CreateGetPageRangesDiffRequest(snapshot, timeout, prevsnapshot, prevSnapshotUrl, range, leaseId, ifModifiedSince, ifUnmodifiedSince, ifMatch, ifNoneMatch, ifTags, marker, maxresults);
await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);
var headers = new PageBlobGetPageRangesDiffHeaders(message.Response);
switch (message.Response.Status)
{
case 200:
{
PageList value = default;
var document = XDocument.Load(message.Response.ContentStream, LoadOptions.PreserveWhitespace);
if (document.Element("PageList") is XElement pageListElement)
{
value = PageList.DeserializePageList(pageListElement);
}
return ResponseWithHeaders.FromValue(value, headers, message.Response);
}
default:
throw new RequestFailedException(message.Response);
}
}
/// <summary> The Get Page Ranges Diff operation returns the list of valid page ranges for a page blob that were changed between target blob and previous snapshot. </summary>
/// <param name="snapshot"> The snapshot parameter is an opaque DateTime value that, when present, specifies the blob snapshot to retrieve. For more information on working with blob snapshots, see <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating a Snapshot of a Blob.</a>. </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="prevsnapshot"> Optional in version 2015-07-08 and newer. The prevsnapshot parameter is a DateTime value that specifies that the response will contain only pages that were changed between target blob and previous snapshot. Changed pages include both updated and cleared pages. The target blob may be a snapshot, as long as the snapshot specified by prevsnapshot is the older of the two. Note that incremental snapshots are currently supported only for blobs created on or after January 1, 2016. </param>
/// <param name="prevSnapshotUrl"> Optional. This header is only supported in service versions 2019-04-19 and after and specifies the URL of a previous snapshot of the target blob. The response will only contain pages that were changed between the target blob and its previous snapshot. </param>
/// <param name="range"> Return only the bytes of the blob in the specified range. </param>
/// <param name="leaseId"> If specified, the operation only succeeds if the resource's lease is active and matches this ID. </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>