-
Notifications
You must be signed in to change notification settings - Fork 21.8k
Expand file tree
/
Copy pathTOC.yml
More file actions
1714 lines (1714 loc) · 105 KB
/
TOC.yml
File metadata and controls
1714 lines (1714 loc) · 105 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
items:
- name: Azure Blob Storage documentation
href: ./index.yml
- name: Overview
items:
- name: What is Azure Blob Storage?
href: storage-blobs-overview.md
- name: Compare core storage services
href: ../common/storage-introduction.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Blob Storage feature support
href: storage-feature-support-in-storage-accounts.md
- name: Blob Storage
items:
- name: Overview
items:
- name: Introduction to Blob Storage
href: storage-blobs-introduction.md
- name: Architecture
items:
- name: Well-architected considerations
href: /azure/well-architected/service-guides/azure-blob-storage?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Quickstarts
items:
- name: Azure portal
href: storage-quickstart-blobs-portal.md
- name: Storage Explorer
href: quickstart-storage-explorer.md
- name: PowerShell
href: storage-quickstart-blobs-powershell.md
- name: Azure CLI
href: storage-quickstart-blobs-cli.md
- name: .NET
href: storage-quickstart-blobs-dotnet.md
- name: Java
items:
- name: Java SE
href: storage-quickstart-blobs-java.md
- name: Spring Boot
href: /azure/developer/java/spring-framework/configure-spring-boot-starter-java-app-with-azure-storage?toc=/azure/storage/blobs/toc.json
- name: Quarkus
href: storage-quickstart-blobs-java-quarkus.md
- name: Python
href: storage-quickstart-blobs-python.md
- name: JavaScript
items:
- name: JavaScript for Node.js
href: storage-quickstart-blobs-nodejs.md
- name: JavaScript for browser
href: quickstart-blobs-javascript-browser.md
- name: C++
href: quickstart-blobs-c-plus-plus.md
- name: Go
href: storage-quickstart-blobs-go.md
- name: Terraform
href: storage-quickstart-static-website-terraform.md
- name: TypeScript
items:
- name: TypeScript for Node.js
href: storage-quickstart-blobs-nodejs-typescript.md
- name: Storage accounts
items:
- name: Storage accounts overview
href: ../common/storage-account-overview.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Premium block blob storage
href: storage-blob-block-blob-premium.md
- name: Account management
items:
- name: Create a storage account
href: ../common/storage-account-create.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
displayName: Resource Manager, Resource Manager template, template, ARM
- name: Upgrade a storage account
href: ../common/storage-account-upgrade.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Recover a deleted storage account
href: ../common/storage-account-recover.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Lock a storage account
href: ../common/lock-account-resource.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Get account configuration properties
href: ../common/storage-account-get-info.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Relocate a storage account to another region
href: ../../azure-resource-manager/management/relocation/relocation-storage-account.md?toc=/azure/storage/blobs/toc.json
- name: Classic storage account retirement
href: ../common/classic-account-migration-overview.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
items:
- name: Understand the migration process for classic accounts
href: ../common/classic-account-migration-process.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Migrate a classic storage account to Resource Manager
href: ../common/classic-account-migrate.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Data Lake Storage
items:
- name: Plan to upgrade an account
href: upgrade-to-data-lake-storage-gen2.md
- name: Upgrade an account
href: upgrade-to-data-lake-storage-gen2-how-to.md
- name: General Purpose v1 (GPv1) account retirement
href: ../common/general-purpose-version-1-account-migration-overview.md
items:
- name: Migrate a GPv1 storage account to GPv2
href: ../common/storage-account-upgrade.md
- name: GPv1 account retirement Frequently Asked Questions (FAQ)
href: ../common/general-purpose-version-1-account-migration-frequently-asked-questions.md
- name: General Purpose v1 (GPv1) account with ZRS standard redundancy retirement
href: ../common/general-purpose-version-1-zone-redundant-storage-migration-overview.md
items:
- name: Migrate GPv1 ZRS to GPv2 ZRS
href: ../common/general-purpose-version-1-zone-redundant-storage-upgrade-process.md
- name: General Purpose v1 (GPv1) account with ZRS standard redundancy retirement Frequently Asked Questions (FAQ)
href: ../common/general-purpose-v-1-zone-redundant-storage-migration-freq-asked-questions.md
- name: Legacy Blob storage account retirement
href: ../common/legacy-blob-storage-account-migration-overview.md
items:
- name: Migrate a Legacy Blob storage account to GPv2
href: ../common/storage-account-upgrade.md
- name: Legacy Blob storage account migration Frequently Asked Questions (FAQ)
href: ../common/legacy-blob-storage-account-migration-frequently-asked-questions.md
- name: Data transfer and migration
items:
- name: Storage migration overview
href: ../common/storage-migration-overview.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
items:
- name: Phase 1 - Assessment
href: ../common/storage-migration-assessment.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Phase 2 - Target selection
href: ../common/storage-migration-target-selection.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Phase 3 - Planning migration strategy
href: ../common/storage-migration-plan-strategy.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Phase 4 - Selecting migration tools
href: ../common/storage-migration-tools.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Phase 5 - Migration execution
href: ../common/storage-migration-execution.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Tape migration overview
href: ../common/tape-migration-guide.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: AzCopy
items:
- name: Get started
items:
- name: Get started
href: ../common/storage-use-azcopy-v10.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Install a Linux package
href: ../common/storage-use-azcopy-install-linux-package.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Use in a script
href: ../common/storage-use-azcopy-in-script.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Authorize access
items:
- name: User identity
href: ../common/storage-use-azcopy-authorize-user-identity.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Managed identity
href: ../common/storage-use-azcopy-authorize-managed-identity.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Service principal
href: ../common/storage-use-azcopy-authorize-service-principal.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Transfer data
items:
- name: Upload
href: ../common/storage-use-azcopy-blobs-upload.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Download
href: ../common/storage-use-azcopy-blobs-download.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Copy between accounts
href: ../common/storage-use-azcopy-blobs-copy.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Copy from Amazon S3 buckets
href: ../common/storage-use-azcopy-s3.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Copy from Google Cloud Storage buckets
href: ../common/storage-use-azcopy-google-cloud.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Synchronize
href: ../common/storage-use-azcopy-blobs-synchronize.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Modify properties and metadata
href: ../common/storage-use-azcopy-blobs-properties-metadata.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Optimize performance
href: ../common/storage-use-azcopy-optimize.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Troubleshoot
items:
- name: Find errors and resume jobs
href: ../common/storage-use-azcopy-configure.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Troubleshoot AzCopy issues
href: /troubleshoot/azure/azure-storage/storage-use-azcopy-troubleshoot
- name: Azure Data Factory
href: ../../data-factory/connector-azure-blob-storage.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
items:
- name: Azure Data Factory (Data Lake Storage)
href: ../../data-factory/connector-azure-data-lake-storage.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: BlobFuse
items:
- name: Get started
items:
- name: What is BlobFuse?
href: blobfuse2-what-is.md
- name: Install BlobFuse
href: blobfuse2-install.md
- name: Mount a container
href: blobfuse2-mount-container.md
- name: BlobFuse and Linux file system compared
href: blobfuse2-compare-linux-file-system.md
- name: Configure BlobFuse
items:
- name: Create a configuration file
href: blobfuse2-configure.md
- name: Streaming versus caching mode
href: blobfuse2-streaming-versus-caching.md
- name: Configure streaming mode
href: blobfuse2-configure-streaming.md
- name: Configure caching mode
href: blobfuse2-configure-caching.md
- name: Metrics and logs
items:
- name: Health monitor
href: blobfuse2-health-monitor.md
- name: Diagnostic logs
href: blobfuse2-enable-logs.md
- name: Support
items:
- name: Limitations and known issues
href: blobfuse2-known-issues.md
- name: Troubleshooting
href: blobfuse2-troubleshooting.md
- name: FAQ
href: blobfuse2-faq.yml
- name: NFS 3.0
items:
- name: Overview
href: network-file-system-protocol-support.md
- name: Performance considerations
href: network-file-system-protocol-support-performance.md
- name: Performance benchmark
href: network-file-system-protocol-performance-benchmark.md
- name: Mount storage by using NFS
href: network-file-system-protocol-support-how-to.md
- name: Limitations and known issues
href: network-file-system-protocol-known-issues.md
- name: SFTP
items:
- name: Overview
href: secure-file-transfer-protocol-support.md
- name: Enable or disable SFTP
href: secure-file-transfer-protocol-support-how-to.md
- name: Authorize access
href: secure-file-transfer-protocol-support-authorize-access.md
- name: Authorize access with Microsoft Entra ID (preview)
href: secure-file-transfer-protocol-support-entra-id-based-access.md
- name: Connect from an SFTP client
href: secure-file-transfer-protocol-support-connect.md
- name: Performance considerations
href: secure-file-transfer-protocol-performance.md
- name: Limitations and known issues
href: secure-file-transfer-protocol-known-issues.md
- name: Data management
items:
- name: Containers and blobs
items:
- name: Block blobs, append blobs, and page blobs
href: /rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs?toc=/azure/storage/blobs/toc.json
- name: Manage containers (Azure portal)
href: blob-containers-portal.md
- name: Manage containers (PowerShell)
href: blob-containers-powershell.md
- name: Manage containers (CLI)
href: blob-containers-cli.md
- name: Page blob features
href: storage-blob-pageblob-overview.md
- name: Manage blobs (PowerShell)
href: blob-powershell.md
- name: Manage blobs (CLI)
href: blob-cli.md
- name: Convert append and page blobs to block blobs
href: convert-append-and-page-blobs-to-block-blobs.md
- name: Blob inventory
href: blob-inventory.md
items:
- name: Enable blob inventory reports
href: blob-inventory-how-to.md
- name: Blob inventory performance characteristics
href: blob-inventory-performance-characteristics.md
- name: Calculate blob count and total size
href: calculate-blob-count-size.yml
- name: "Tutorial: Analyze blob inventory reports"
href: storage-blob-inventory-report-analytics.md
- name: "Tutorial: Calculate container statistics"
href: storage-blob-calculate-container-statistics-databricks.md
- name: Blob index tags
href: storage-manage-find-blobs.md
items:
- name: Use blob index tags
href: storage-blob-index-how-to.md
- name: Lifecycle management policies
items:
- name: Overview
href: lifecycle-management-overview.md
- name: Policy structure
href: lifecycle-management-policy-structure.md
- name: Create and manage a policy
href: lifecycle-management-policy-configure.md
- name: "Examples: Tiering blobs"
href: lifecycle-management-policy-access-tiers.md
- name: "Examples: Deleting blobs"
href: lifecycle-management-policy-delete.md
- name: Monitor policy runs
href: lifecycle-management-policy-monitor.md
- name: Performance characteristics
href: lifecycle-management-performance-characteristics.md
- name: Full text search
href: /azure/search/search-blob-storage-integration?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Static websites
items:
- name: Static websites
href: storage-blob-static-website.md
- name: Host a static website
href: storage-blob-static-website-how-to.md
- name: Integrate with Azure CDN
href: static-website-content-delivery-network.md
- name: Use GitHub Actions to deploy a static site to Azure Storage
href: storage-blobs-static-site-github-actions.md
- name: "Tutorial: Host a static website"
href: storage-blob-static-website-host.md
- name: Create a Managed Application to Store Blob Digests
href: /azure/confidential-ledger/create-blob-managed-app?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Security and networking
items:
- name: Security recommendations
href: security-recommendations.md
- name: Security baseline
href: /security/benchmark/azure/baselines/storage-security-baseline?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Encryption
items:
- name: Encryption at rest
href: ../common/storage-service-encryption.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Encryption scopes
href: encryption-scope-overview.md
items:
- name: Enable infrastructure encryption for the account
href: ../common/infrastructure-encryption-enable.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Manage encryption scopes
href: encryption-scope-manage.md
- name: Check the encryption key model for the account
href: ../common/storage-encryption-key-model-get.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Check whether a blob is encrypted
href: storage-blob-encryption-status.md
- name: Customer-managed keys
items:
- name: Encryption with customer-managed keys
href: ../common/customer-managed-keys-overview.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Configure customer-managed keys in Azure Key Vault
items:
- name: Configure keys and storage account in the same tenant
items:
- name: Configure keys for a new account
href: ../common/customer-managed-keys-configure-new-account.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Configure keys for an existing account
href: ../common/customer-managed-keys-configure-existing-account.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Configure keys and storage account in different tenants
items:
- name: Configure customer-managed keys for a new account
href: ../common/customer-managed-keys-configure-cross-tenant-new-account.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Configure customer-managed keys for an existing account
href: ../common/customer-managed-keys-configure-cross-tenant-existing-account.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Configure customer-managed keys in a managed HSM
href: ../common/customer-managed-keys-configure-key-vault-hsm.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Customer-provided keys
href: encryption-customer-provided-keys.md
- name: Configure client-side encryption
href: client-side-encryption.md
- name: Encrypt and decrypt blobs using Azure Key Vault
href: storage-encrypt-decrypt-blobs-key-vault.md
- name: Networking
items:
- name: Network security
href: ../common/storage-network-security-overview.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Private endpoints
href: ../common/storage-private-endpoints.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Public endpoint
items:
- name: Default access level
href: ../common/storage-network-security-set-default-access.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Firewall rules
items:
- name: Firewall rules
href: ../common/storage-network-security.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Guidelines and limitations
href: ../common/storage-network-security-limitations.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Virtual network rules
href: ../common/storage-network-security-virtual-networks.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: IP network rules
href: ../common/storage-network-security-ip-address-range.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Resource instance rules
href: ../common/storage-network-security-resource-instances.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Network rule exceptions
href: ../common/storage-network-security-manage-exceptions.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Trusted Azure services
href: ../common/storage-network-security-trusted-azure-services.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Network security perimeter
href: ../common/storage-network-security-perimeter.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Transport Layer Security
items:
- name: Require secure transfer
href: ../common/storage-require-secure-transfer.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Enforce minimum TLS version
href: ../common/transport-layer-security-configure-minimum-version.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Configure TLS version for a client
href: ../common/transport-layer-security-configure-client-version.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: TLS version retirement
items:
- name: Migrate to TLS 1.2
href: ../common/transport-layer-security-configure-migrate-to-TLS2.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Network routing
href: ../common/network-routing-preference.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
items:
- name: Configure network routing preference
href: ../common/configure-network-routing-preference.md?toc=/azure/storage/blobs/toc.json
- name: Copy operation scopes
href: ../common/security-restrict-copy-operations.md?toc=/azure/storage/blobs/toc.json
- name: Custom domains
href: storage-custom-domain-name.md
- name: Authorization
items:
- name: Authorize data operations
items:
- name: Authorize data operations
href: ../common/authorize-data-access.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Authorization options for users
items:
- name: Portal
href: authorize-data-operations-portal.md
- name: PowerShell
href: authorize-data-operations-powershell.md
- name: Azure CLI
href: authorize-data-operations-cli.md
- name: Authorize with Microsoft Entra ID
items:
- name: Authorize with Microsoft Entra ID and Azure RBAC
href: authorize-access-azure-active-directory.md
- name: Manage access rights with Azure RBAC
href: assign-azure-role-data-access.md
- name: Configure role assignment conditions with Azure ABAC
href: storage-auth-abac.md
items:
- name: Actions and attributes for conditions
href: storage-auth-abac-attributes.md
- name: Security for conditions
href: storage-auth-abac-security.md
- name: Example conditions
href: storage-auth-abac-examples.md
- name: Add role assignment conditions (Azure portal)
href: storage-auth-abac-portal.md
- name: Add role assignment conditions (PowerShell)
href: storage-auth-abac-powershell.md
- name: Add role assignment conditions (Azure CLI)
href: storage-auth-abac-cli.md
- name: Authorize with Shared Key
href: /rest/api/storageservices/authorize-with-shared-key?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
items:
- name: View and manage account keys
href: ../common/storage-account-keys-manage.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Configure connection strings
href: ../common/storage-configure-connection-string.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Use the Azure Storage REST API
href: ../common/storage-rest-api-auth.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Prevent authorization with Shared Key
href: ../common/shared-key-authorization-prevent.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Authorize with shared access signatures (SAS)
href: ../common/storage-sas-overview.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
items:
- name: Create a user delegation SAS
items:
- name: PowerShell
href: storage-blob-user-delegation-sas-create-powershell.md
- name: Azure CLI
href: storage-blob-user-delegation-sas-create-cli.md
- name: .NET
href: storage-blob-user-delegation-sas-create-dotnet.md
- name: Create a service SAS
href: sas-service-create-dotnet.md
- name: Create an account SAS (.NET)
href: ../common/storage-account-sas-create-dotnet.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Create a stored access policy
href: ../common/storage-stored-access-policy-define-dotnet.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Configure a SAS expiration policy
href: ../common/sas-expiration-policy.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Authorize management operations
href: ../common/authorization-resource-provider.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Migrate to passwordless connections
href: ../common/migrate-azure-credentials.md
- name: Passwordless connections between multiple services
href: ../common/multiple-identity-scenarios.md
- name: Manage anonymous read access to blob data
items:
- name: Overview
href: anonymous-read-access-overview.md
- name: Remediate anonymous access
href: anonymous-read-access-prevent.md
- name: Configure anonymous access
href: anonymous-read-access-configure.md
- name: Microsoft Defender for Storage
href: /azure/defender-for-cloud/defender-for-storage-introduction?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Reliability
items:
- name: Reliability in Azure Blob Storage
href: /azure/reliability/reliability-storage-blob?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Design highly available applications
href: ../common/geo-redundant-design.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: "Tutorial: Design applications for high availability"
items:
- name: 1 - Make your application highly available
href: storage-create-geo-redundant-storage.md
- name: 2 - Simulate a failure in reading data from the primary region
href: simulate-primary-region-failure.md
- name: Data redundancy
href: ../common/storage-redundancy.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
items:
- name: Change redundancy configuration
href: ../common/redundancy-migration.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Change redundancy configuration - FAQs
href: ../common/storage-redundancy-change-faq.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Geo Priority replication
href: ../common/storage-redundancy-priority-replication.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Disaster recovery
items:
- name: Disaster recovery planning and failover
href: ../common/storage-disaster-recovery-guidance.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: How customer-managed planned failover works
href: ../common/storage-failover-customer-managed-planned.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: How customer-managed unplanned failover works
href: ../common/storage-failover-customer-managed-unplanned.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Initiate account failover
href: ../common/storage-initiate-account-failover.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Failover FAQs
href: ../common/storage-failover-faq.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Check the Last Sync Time property
href: ../common/last-sync-time-get.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Failover considerations for storage accounts with private endpoints
href: ../common/storage-failover-private-endpoints.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Data protection
items:
- name: Data protection
href: data-protection-overview.md
- name: Soft delete versus versioning
href: soft-delete-vs-versioning-options.md
- name: Soft delete
items:
- name: Soft delete for containers
href: soft-delete-container-overview.md
- name: Enable soft delete for containers
href: soft-delete-container-enable.md
- name: Soft delete for blobs
href: soft-delete-blob-overview.md
- name: Enable blob soft delete
href: soft-delete-blob-enable.md
- name: Manage and restore soft-deleted blobs
href: soft-delete-blob-manage.yml
- name: Versioning
href: versioning-overview.md
items:
- name: Enable blob versioning
href: versioning-enable.md
- name: Point-in-time-restore
href: point-in-time-restore-overview.md
items:
- name: Enable point-in-time restore
href: point-in-time-restore-manage.md
- name: Snapshots
href: snapshots-overview.md
- name: Immutable storage
href: immutable-storage-overview.md
items:
- name: Container-level policies
href: immutable-container-level-worm-policies.md
- name: Version-level policies
href: immutable-version-level-worm-policies.md
- name: Configure container-level policies
href: immutable-policy-configure-container-scope.md
- name: Configure version-level policies
href: immutable-policy-configure-version-scope.md
- name: Performance and scale
items:
- name: Performance checklist
href: storage-performance-checklist.md
- name: Optimize data partitions
href: storage-performance-blob-partitions.md
- name: Latency in Blob storage
href: storage-blobs-latency.md
- name: Performance and scale targets
items:
- name: Blob storage
href: scalability-targets.md
- name: Standard storage accounts
href: ../common/scalability-targets-standard-account.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Premium block blob storage accounts
href: scalability-targets-premium-block-blobs.md
- name: Premium page blob storage accounts
href: scalability-targets-premium-page-blobs.md
- name: Storage resource provider
href: ../common/scalability-targets-resource-provider.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Object replication
items:
- name: Object replication
href: object-replication-overview.md
- name: Object replication priority replication
href: object-replication-priority-replication.md
- name: Configure object replication policies
href: object-replication-configure.md
- name: Prevent object replication across tenants
href: object-replication-prevent-cross-tenant-policies.md
- name: Cost management
items:
- name: Plan and manage costs
href: ../common/storage-plan-manage-costs.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Find prices
items:
- name: Azure Blob Storage prices
href: https://azure.microsoft.com/pricing/details/storage/blobs/
- name: Azure Data Lake Storage prices
href: https://azure.microsoft.com/pricing/details/storage/data-lake/
- name: Map each REST operation to a price
href: map-rest-apis-transaction-categories.md
- name: Estimate costs
items:
- name: Guides
items:
- name: Estimate the cost of Azure Blob Storage
href: blob-storage-estimate-costs.md
- name: Estimate the cost of AzCopy transfers
href: azcopy-cost-estimation.md
- name: Estimate the cost to archive data
href: archive-cost-estimation.md
- name: Estimates
items:
- name: Move out of the archive tier
href: cost-estimate-archive-retrieval-set-tier.md
- name: Retrieve data from the archive tier
href: cost-estimate-archive-retrieval-copy-blob.md
- name: Cross region data access
href: cost-estimate-multi-region-access.md
- name: Optimize costs
items:
- name: Access tiers
href: access-tiers-overview.md
items:
- name: Best practices
href: access-tiers-best-practices.md
- name: Smart tiering
href: access-tiers-smart.md
- name: Change a blob's access tier
href: access-tiers-online-manage.md
- name: Archive and rehydrate
items:
- name: Blob rehydration overview
href: archive-rehydrate-overview.md
- name: Archive blobs
href: archive-blob.md
- name: Rehydrate blobs
href: archive-rehydrate-to-online-tier.md
- name: Handle an event on blob rehydration
href: archive-rehydrate-handle-event.md
- name: Azure Storage reserved capacity
href: storage-blob-reserved-capacity.md
- name: Monitoring metrics and logs
items:
- name: Monitor Blob Storage
href: monitor-blob-storage.md
- name: Best practices for monitoring
href: blob-storage-monitoring-scenarios.md
- name: Use Storage insights
href: ../common/storage-insights-overview.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Transition from classic metrics
href: ../common/storage-metrics-migration.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Monitoring (classic)
items:
- name: Storage Analytics
href: ../common/storage-analytics.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Logs
href: ../common/storage-analytics-logging.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Enable and manage logs
href: ../common/manage-storage-analytics-logs.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Application development
items:
- name: Overview
href: ../common/storage-srp-overview.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Resource management developer guide
items:
- name: .NET
items:
- name: Get started
href: ../common/storage-srp-dotnet-get-started.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Manage a storage account
href: ../common/storage-srp-manage-account-dotnet.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Data access developer guide
items:
- name: Blob Storage object model
items:
- name: Understand how apps interact with Blob Storage data resources
href: storage-blob-object-model.md
- name: Create and manage client objects
href: storage-blob-client-management.md
- name: Query for a Blob Storage endpoint
href: storage-blob-query-endpoint-srp.md
- name: .NET
items:
- name: Get started
href: storage-blob-dotnet-get-started.md
- name: Authorize access from your application
items:
- name: Microsoft Entra ID
items:
- name: Overview
href: /dotnet/azure/sdk/authentication?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth using developer service principals
href: /dotnet/azure/sdk/authentication-local-development-service-principal?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth using developer accounts
href: /dotnet/azure/sdk/authentication-local-development-dev-accounts?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth from Azure-hosted apps
href: /dotnet/azure/sdk/authentication-azure-hosted-apps?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth from on-premises apps
href: /dotnet/azure/sdk/authentication-on-premises-apps?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Shared access signature (SAS)
items:
- name: Authorize using a user delegation SAS
href: storage-blob-user-delegation-sas-create-dotnet.md
- name: Authorize using a service SAS
href: sas-service-create-dotnet.md
- name: Authorize using an account SAS
href: ../common/storage-account-sas-create-dotnet.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Container actions
items:
- name: Create a container
href: storage-blob-container-create.md
- name: Delete and restore containers
href: storage-blob-container-delete.md
- name: List containers
href: storage-blob-containers-list.md
- name: Manage container leases
href: storage-blob-container-lease.md
- name: Manage properties and metadata
href: storage-blob-container-properties-metadata.md
- name: Blob actions
items:
- name: Upload blobs
href: storage-blob-upload.md
- name: Download blobs
href: storage-blob-download.md
- name: Copy blobs
items:
- name: Overview of copy operations
href: storage-blob-copy.md
- name: Copy from a source object URL
href: storage-blob-copy-url-dotnet.md
- name: Copy with asynchronous scheduling
href: storage-blob-copy-async-dotnet.md
- name: List blobs
href: storage-blobs-list.md
- name: Delete and restore blobs
href: storage-blob-delete.md
- name: Find blobs using tags
href: storage-blob-tags.md
- name: Manage blob properties and metadata
href: storage-blob-properties-metadata.md
- name: Manage blob leases
href: storage-blob-lease.md
- name: Create and manage snapshots
href: snapshots-manage-dotnet.md
- name: Create and list blob versions
href: versions-manage-dotnet.md
- name: Set or change a blob's access tier
href: storage-blob-use-access-tier-dotnet.md
- name: Append blob actions
items:
- name: Append data to an append blob
href: storage-blob-append.md
- name: Client library configuration options
items:
- name: Performance tuning for uploads and downloads
href: storage-blobs-tune-upload-download.md
- name: Implement a retry policy
href: storage-retry-policy.md
- name: Configure logging
href: /dotnet/azure/sdk/logging?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Manage concurrency
href: concurrency-manage.md
- name: Provide an encryption key on a write request
href: storage-blob-customer-provided-key.md
- name: "Tutorial: Upload and process image files"
href: blob-upload-function-trigger.md
- name: Java
items:
- name: Get started
href: storage-blob-java-get-started.md
- name: Authorize access from your application
items:
- name: Microsoft Entra ID
items:
- name: Overview
href: /azure/developer/java/sdk/identity?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth in development environments
href: /azure/developer/java/sdk/identity-dev-env-auth?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth with user credentials
href: /azure/developer/java/sdk/identity-user-auth?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth with service principals
href: /azure/developer/java/sdk/identity-service-principal-auth?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth in Azure hosted applications
href: /azure/developer/java/sdk/identity-azure-hosted-auth?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Shared access signature (SAS)
items:
- name: Authorize using a user delegation SAS
href: storage-blob-user-delegation-sas-create-java.md
- name: Authorize using a service SAS
href: sas-service-create-java.md
- name: Authorize using an account SAS
href: ../common/storage-account-sas-create-java.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Container actions
items:
- name: Create a container
href: storage-blob-container-create-java.md
- name: Delete and restore containers
href: storage-blob-container-delete-java.md
- name: List containers
href: storage-blob-containers-list-java.md
- name: Manage container leases
href: storage-blob-container-lease-java.md
- name: Manage properties and metadata
href: storage-blob-container-properties-metadata-java.md
- name: Blob actions
items:
- name: Upload blobs
href: storage-blob-upload-java.md
- name: Download blobs
href: storage-blob-download-java.md
- name: Copy blobs
items:
- name: Overview of copy operations
href: storage-blob-copy-java.md
- name: Copy from a source object URL
href: storage-blob-copy-url-java.md
- name: Copy with asynchronous scheduling
href: storage-blob-copy-async-java.md
- name: List blobs
href: storage-blobs-list-java.md
- name: Delete and restore blobs
href: storage-blob-delete-java.md
- name: Find blobs using tags
href: storage-blob-tags-java.md
- name: Manage blob leases
href: storage-blob-lease-java.md
- name: Manage blob properties and metadata
href: storage-blob-properties-metadata-java.md
- name: Set or change a blob's access tier
href: storage-blob-use-access-tier-java.md
- name: Client library configuration options
items:
- name: Performance tuning for uploads and downloads
href: storage-blobs-tune-upload-download-java.md
- name: Implement a retry policy
href: storage-retry-policy-java.md
- name: Configure logging
href: /azure/developer/java/sdk/logging-overview?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: JavaScript
items:
- name: Get started
href: storage-blob-javascript-get-started.md
- name: Authorize access from your application
items:
- name: Microsoft Entra ID
items:
- name: Overview
href: /azure/developer/javascript/sdk/authentication/overview?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth using developer service principals
href: /azure/developer/javascript/sdk/authentication/local-development-environment-service-principal?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth using developer accounts
href: /azure/developer/javascript/sdk/authentication/local-development-environment-developer-account?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth from Azure-hosted apps
href: /azure/developer/javascript/sdk/authentication/azure-hosted-apps?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth from on-premises apps
href: /azure/developer/javascript/sdk/authentication/on-premises-apps?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Work with SAS tokens
items:
- name: User delegation SAS
href: storage-blob-create-user-delegation-sas-javascript.md
- name: Service SAS
href: sas-service-create-javascript.md
- name: Account SAS
href: storage-blob-account-delegation-sas-create-javascript.md
- name: Container actions
items:
- name: Create a container
href: storage-blob-container-create-javascript.md
- name: Get container URL
href: storage-blob-get-url-javascript.md
- name: Delete and restore containers
href: storage-blob-container-delete-javascript.md
- name: List containers
href: storage-blob-containers-list-javascript.md
- name: Manage container leases
href: storage-blob-container-lease-javascript.md
- name: Manage properties and metadata
href: storage-blob-container-properties-metadata-javascript.md
- name: Blob actions
items:
- name: Upload blobs
href: storage-blob-upload-javascript.md
- name: Download blobs
href: storage-blob-download-javascript.md
- name: Copy blobs
items:
- name: Overview of copy operations
href: storage-blob-copy-javascript.md
- name: Copy from a source object URL
href: storage-blob-copy-url-javascript.md
- name: Copy with asynchronous scheduling
href: storage-blob-copy-async-javascript.md
- name: List blobs
href: storage-blobs-list-javascript.md
- name: Delete and restore blobs
href: storage-blob-delete-javascript.md
- name: Find blobs using tags
href: storage-blob-tags-javascript.md
- name: Manage blob leases
href: storage-blob-lease-javascript.md
- name: Manage blob properties and metadata
href: storage-blob-properties-metadata-javascript.md
- name: Get blob URL
href: storage-blob-get-url-javascript.md
- name: Set or change a blob's access tier
href: storage-blob-use-access-tier-javascript.md
- name: Client library configuration options
items:
- name: Performance tuning for uploads and downloads
href: storage-blobs-tune-upload-download-javascript.md
- name: Implement a retry policy
href: storage-retry-policy-javascript.md
- name: Python
items:
- name: Get started
href: storage-blob-python-get-started.md
- name: Authorize access from your application
items:
- name: Microsoft Entra ID
items:
- name: Overview
href: /azure/developer/python/sdk/authentication-overview?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth using developer service principals
href: /azure/developer/python/sdk/authentication-local-development-service-principal?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth using developer accounts
href: /azure/developer/python/sdk/authentication-local-development-dev-accounts?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth from Azure-hosted apps
href: /azure/developer/python/sdk/authentication-azure-hosted-apps?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Auth from on-premises apps
href: /azure/developer/python/sdk/authentication-on-premises-apps?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Shared access signature (SAS)
items:
- name: Authorize using a user delegation SAS
href: storage-blob-user-delegation-sas-create-python.md
- name: Authorize using a service SAS
href: sas-service-create-python.md
- name: Authorize using an account SAS
href: ../common/storage-account-sas-create-python.md?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Container actions
items:
- name: Create a container
href: storage-blob-container-create-python.md
- name: Delete and restore containers
href: storage-blob-container-delete-python.md
- name: List containers
href: storage-blob-containers-list-python.md
- name: Manage container leases
href: storage-blob-container-lease-python.md
- name: Manage properties and metadata
href: storage-blob-container-properties-metadata-python.md
- name: Blob actions
items:
- name: Upload blobs
href: storage-blob-upload-python.md
- name: Download blobs
href: storage-blob-download-python.md
- name: Copy blobs
items:
- name: Overview of copy operations
href: storage-blob-copy-python.md
- name: Copy from a source object URL
href: storage-blob-copy-url-python.md
- name: Copy with asynchronous scheduling
href: storage-blob-copy-async-python.md
- name: List blobs
href: storage-blobs-list-python.md
- name: Delete and restore blobs
href: storage-blob-delete-python.md
- name: Find blobs using tags
href: storage-blob-tags-python.md
- name: Manage blob leases
href: storage-blob-lease-python.md
- name: Manage blob properties and metadata
href: storage-blob-properties-metadata-python.md
- name: Set or change a blob's access tier
href: storage-blob-use-access-tier-python.md
- name: Client library configuration options
items:
- name: Performance tuning for uploads and downloads
href: storage-blobs-tune-upload-download-python.md
- name: Implement a retry policy
href: storage-retry-policy-python.md
- name: Configure logging
href: /azure/developer/python/sdk/azure-sdk-logging?toc=/azure/storage/blobs/toc.json&bc=/azure/storage/blobs/breadcrumb/toc.json
- name: Go
items:
- name: Get started
href: storage-blob-go-get-started.md
- name: Authorize access from your application
items: