forked from MicrosoftDocs/azure-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoc.yml
1078 lines (1078 loc) · 42.2 KB
/
toc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- name: Azure
tocHref: /azure/
topicHref: /azure/index
items:
- name: Active Directory
tocHref: /azure/active-directory/
topicHref: /azure/active-directory/
items:
- name: Hybrid identity
tocHref: /azure/active-directory/hybrid/
topicHref: /azure/active-directory/hybrid/
- name: Fundamentals
tocHref: /azure/active-directory/fundamentals/
topicHref: /azure/active-directory/fundamentals/
- name: Identity protection
tocHref: /azure/active-directory/identity-protection/
topicHref: /azure/active-directory/identity-protection/
- name: Devices
tocHref: /azure/active-directory/devices/
topicHref: /azure/active-directory/devices/
- name: Conditional Access
tocHref: /azure/active-directory/conditional-access/
topicHref: /azure/active-directory/conditional-access/
- name: Cloud sync
tocHref: /azure/active-directory/cloud-sync/
topicHref: /azure/active-directory/cloud-sync/
- name: Authentication
tocHref: /azure/active-directory/authentication/
topicHref: /azure/active-directory/authentication/
- name: Develop
tocHref: /azure/active-directory/develop/
topicHref: /azure/active-directory/develop/
- name: Azure AD for developers
tocHref: /azure/active-directory/azuread-dev/
topicHref: /azure/active-directory/azuread-dev/
- name: Privileged Identity Management
tocHref: /azure/active-directory/privileged-identity-management/
topicHref: /azure/active-directory/privileged-identity-management/
- name: Managed identities for Azure resources
tocHref: /azure/active-directory/managed-identities-azure-resources/
topicHref: /azure/active-directory/managed-identities-azure-resources/
- name: User help
tocHref: /azure/active-directory/user-help/
topicHref: /azure/active-directory/user-help/
- name: B2B
tocHref: /azure/active-directory/b2b/
topicHref: /azure/active-directory/b2b/
- name: B2C
tocHref: /azure/active-directory-b2c/
topicHref: /azure/active-directory-b2c/
- name: Domain services
tocHref: /azure/active-directory-domain-services/
topicHref: /azure/active-directory-domain-services/
- name: Users, groups, and roles
tocHref: /azure/active-directory/roles/groups-concept
topicHref: /azure/active-directory/roles/groups-concept
- name: Identity Governance
tocHref: /azure/active-directory/governance/
topicHref: /azure/active-directory/governance/
- name: Application proxy
tocHref: /azure/active-directory/app-proxy/
topicHref: /azure/active-directory/app-proxy/
- name: Application provisioning
tocHref: /azure/active-directory/app-provisioning/
topicHref: /azure/active-directory/app-provisioning/
- name: Application management
tocHref: /azure/active-directory/manage-apps/
topicHref: /azure/active-directory/manage-apps/
items:
- name: SaaS application tutorials
tocHref: /azure/active-directory/saas-apps/
topicHref: /azure/active-directory/saas-apps/tutorial-list
- name: Reports and monitoring
tocHref: /azure/active-directory/reports-monitoring/
topicHref: /azure/active-directory/reports-monitoring/
- name: Verifiable credentials
tocHref: /azure/active-directory/verifiable-credentials/
topicHref: /azure/active-directory/verifiable-credentials/
- name: Analysis Services
tocHref: /azure/analysis-services/
topicHref: /azure/analysis-services/
- name: API Management
tocHref: /azure/api-management/
topicHref: /azure/api-management/
items:
- name: Policies
tocHref: /azure/api-management/policies/
topicHref: /azure/api-management/policy-samples/
- name: Azure PowerShell
tocHref: /azure/api-management/scripts/
topicHref: /azure/api-management/powershell-samples/
- name: Applied AI Services
tocHref: /azure/applied-ai-services/
topicHref: /azure/applied-ai-services/
items:
- name: Immersive Reader
tocHref: /azure/applied-ai-services/immersive-reader/
topicHref: /azure/applied-ai-services/immersive-reader/
- name: Metrics Advisor
tocHref: /azure/applied-ai-services/metrics-advisor/
topicHref: /azure/applied-ai-services/metrics-advisor/
- name: Form Recognizer
tocHref: /azure/applied-ai-services/form-recognizer/
topicHref: /azure/applied-ai-services/form-recognizer/
- name: Avere vFXT for Azure
tocHref: /azure/avere-vfxt/
topicHref: /azure/avere-vfxt/
- name: Azure App Configuration
tocHref: /azure/azure-app-configuration/
topicHref: /azure/azure-app-configuration/
- name: App Service
tocHref: /azure/app-service/
topicHref: /azure/app-service/
items:
- name: App Service on Linux
tocHref: /azure/app-service/containers/
topicHref: /azure/app-service/containers/
- name: App Service Environments
tocHref: /azure/app-service/environment/
topicHref: /azure/app-service/environment/
- name: Web Apps
tocHref: /azure/app-service/
topicHref: /azure/app-service/
- name: Mobile Apps
tocHref: /azure/developer/mobile-apps/azure-mobile-apps/overview
topicHref: /azure/developer/mobile-apps/azure-mobile-apps/overview
- name: Azure Automanage
tocHref: https://azure.microsoft.com/services/azure-automanage/
topicHref: https://azure.microsoft.com/services/azure-automanage/
- name: Static Web Apps
tocHref: /azure/static-web-apps/
topicHref: /azure/static-web-apps/
- name: Advisor
tocHref: /azure/advisor/
topicHref: /azure/advisor/
- name: Application Gateway
tocHref: /azure/application-gateway/
topicHref: /azure/application-gateway/
- name: Synapse Analytics
tocHref: /azure/synapse-analytics/
topicHref: /azure/synapse-analytics/
- name: Azure Arc
tocHref: /azure/azure-arc/
topicHref: /azure/azure-arc/
items:
- name: Arc-enabled Kubernetes
tocHref: /azure/azure-arc/kubernetes/
topicHref: /azure/azure-arc/kubernetes/
- name: Arc-enabled servers
tocHref: /azure/azure-arc/servers/
topicHref: /azure/azure-arc/servers/
- name: Automation
tocHref: /azure/automation/
topicHref: /azure/automation/
- name: Internet Peering
tocHref: /azure/internet-peering/
topicHref: /azure/internet-peering/
- name: Blockchain
tocHref: /azure/blockchain/
topicHref: /azure/blockchain/
items:
- name: Blockchain Service
tocHref: /azure/blockchain/service/
topicHref: /azure/blockchain/service/index
- name: Blockchain Tokens
tocHref: /azure/blockchain/tokens/
topicHref: /azure/blockchain/tokens/index
- name: Blockchain Workbench
tocHref: /azure/blockchain/workbench/
topicHref: /azure/blockchain/workbench/
- name: Azure Databricks
tocHref: /azure/azure-databricks/
topicHref: /azure/azure-databricks/
- name: Azure Data Explorer
tocHref: /azure/data-explorer/
topicHref: /azure/data-explorer/
- name: Azure Digital Twins
tocHref: /azure/digital-twins/
topicHref: /azure/digital-twins/
- name: Azure Fluid Relay
tocHref: /azure/azure-fluid-relay/
topicHref: /azure/azure-fluid-relay/
- name: Azure HPC Cache
tocHref: /azure/hpc-cache/
topicHref: /azure/hpc-cache/
- name: Azure Lighthouse
tocHref: /azure/lighthouse/
topicHref: /azure/lighthouse/
- name: Azure Monitor
tocHref: /azure/azure-monitor/
topicHref: /azure/azure-monitor/
items:
- name: Application Insights
tocHref: /azure/azure-monitor/azure-monitor-app-hub
topicHref: /azure/azure-monitor/azure-monitor-app-hub
- name: Azure Spatial Anchors
tocHref: /azure/spatial-anchors/
topicHref: /azure/spatial-anchors/
- name: Azure Remote Rendering
tocHref: /azure/remote-rendering/
topicHref: /azure/remote-rendering/
- name: Container Registry
tocHref: /azure/container-registry/
topicHref: /azure/container-registry/
- name: Functions
tocHref: /azure/azure-functions/
topicHref: /azure/azure-functions/
items:
- name: Durable Functions
tocHref: /azure/azure-functions/durable/
topicHref: /azure/azure-functions/durable/
- name: Azure Australia
tocHref: /azure/azure-australia/
topicHref: /azure/azure-australia/
- name: Azure Government
tocHref: /azure/azure-government/
topicHref: /azure/azure-government/
- name: Azure Germany
tocHref: /azure/germany/
topicHref: /azure/germany/
- name: Azure NetApp Files
tocHref: /azure/azure-netapp-files/
topicHref: /azure/azure-netapp-files/
- name: Azure VMware Solution
tocHref: /azure/azure-vmware/
topicHref: /azure/azure-vmware/
- name: Azure VMware Solution by CloudSimple
tocHref: /azure/vmware-cloudsimple/
topicHref: /azure/vmware-cloudsimple/
- name: Azure portal documentation
tocHref: /azure/azure-portal/
topicHref: /azure/azure-portal/
- name: Azure portal documentation
tocHref: /azure/virtual-machines/
topicHref: /azure/azure-portal/index
- name: Azure portal documentation
tocHref: /power-bi
topicHref: /azure/azure-portal/index
- name: Internet of Things
tocHref: /azure/iot-fundamentals/
topicHref: /azure/iot-fundamentals/
items:
- name: Azure Percept
tocHref: /azure/azure-percept/
topicHref: /azure/azure-percept/
- name: Device Development
tocHref: /azure/iot-develop/
topicHref: /azure/iot-develop/
- name: Device Update for IoT Hub
tocHref: /azure/iot-hub-device-update/
topicHref: /azure/iot-hub-device-update/
- name: IoT Hub
tocHref: /azure/iot-hub/
topicHref: /azure/iot-hub/
- name: IoT Central
tocHref: /azure/iot-central/
topicHref: /azure/iot-central/
- name: IoT Edge
tocHref: /azure/iot-edge/
topicHref: /azure/iot-edge/
- name: Azure Digital Twins
tocHref: /azure/digital-twins/
topicHref: /azure/digital-twins/
- name: IoT Hub Device Provisioning Service
tocHref: /azure/iot-dps/
topicHref: /azure/iot-dps/
- name: Time Series Insights
tocHref: /azure/time-series-insights/
topicHref: /azure/time-series-insights/
- name: Azure Maps
tocHref: /azure/azure-maps/
topicHref: /azure/azure-maps/
- name: Azure Certified Device
tocHref: /azure/certification/
topicHref: /azure/certification/
- name: Industrial IoT
tocHref: /azure/industrial-iot/
topicHref: /azure/industrial-iot/index
- name: Resource Manager
tocHref: /azure/azure-resource-manager/
topicHref: /azure/azure-resource-manager/
items:
- name: Templates
tocHref: /azure/azure-resource-manager/templates/
topicHref: /azure/azure-resource-manager/templates/
- name: Bicep
tocHref: /azure/azure-resource-manager/bicep/
topicHref: /azure/azure-resource-manager/bicep/
- name: Management
tocHref: /azure/azure-resource-manager/management/
topicHref: /azure/azure-resource-manager/management/
- name: Troubleshooting
tocHref: /azure/azure-resource-manager/troubleshooting/
topicHref: /azure/azure-resource-manager/troubleshooting/
- name: Managed Applications
tocHref: /azure/azure-resource-manager/managed-applications/
topicHref: /azure/azure-resource-manager/managed-applications/
- name: Azure Custom Providers
tocHref: /azure/azure-resource-manager/custom-providers/
topicHref: /azure/azure-resource-manager/custom-providers/
- name: Partner Solutions
tocHref: /azure/partner-solutions/
topicHref: /azure/partner-solutions/
items:
- name: Apache Kafka for Confluent Cloud
tocHref: /azure/partner-solutions/apache-kafka-confluent-cloud/
topicHref: /azure/partner-solutions/apache-kafka-confluent-cloud/overview
- name: Datadog
tocHref: /azure/partner-solutions/datadog/
topicHref: /azure/partner-solutions/datadog/overview
- name: Elastic
tocHref: /azure/partner-solutions/elastic/
topicHref: /azure/partner-solutions/elastic/overview
- name: Logz.io
tocHref: /azure/partner-solutions/logzio/
topicHref: /azure/partner-solutions/logzio/overview
- name: SignalR Service
tocHref: /azure/azure-signalr/
topicHref: /azure/azure-signalr/
- name: Azure Stack
tocHref: /azure/azure-stack/
topicHref: /azure/azure-stack/
items:
- name: Azure Stack Edge
tocHref: /azure/databox-online/
topicHref: /azure/databox-online/
- name: Azure Stack User
tocHref: /azure/azure-stack/user/
topicHref: /azure/azure-stack/user/
- name: BareMetal Infrastructure
tocHref: /azure/baremetal-infrastructure/
topicHref: /azure/baremetal-infrastructure/
- name: Backup
tocHref: /azure/backup/
topicHref: /azure/backup/
- name: Batch
tocHref: /azure/batch/
topicHref: /azure/batch/
- name: Batch AI
tocHref: /azure/batch-ai/
topicHref: /azure/batch-ai/
- name: Biztalk Services
tocHref: /azure/biztalk-services/
topicHref: /azure/biztalk-services/
- name: Bot Service
tocHref: /azure/bot-service/
topicHref: /azure/bot-service/
- name: Cache
tocHref: /azure/cache/
topicHref: /azure/cache/
- name: Cloud Services
tocHref: /azure/cloud-services/
topicHref: /azure/cloud-services/
- name: Cognitive Search
tocHref: /azure/search/
topicHref: /azure/search/
- name: Cognitive Services
tocHref: /azure/cognitive-services/
topicHref: /azure/cognitive-services/
items:
- name: Academic Knowledge
tocHref: /azure/cognitive-services/academic-knowledge/
topicHref: /azure/cognitive-services/academic-knowledge/home
- name: Anomaly Detector
tocHref: /azure/cognitive-services/anomaly-detector/
topicHref: /azure/cognitive-services/anomaly-detector/
- name: Bing Search APIs
tocHref: /azure/cognitive-services/bing-web-search
topicHref: /azure/cognitive-services/bing-web-search
items:
- name: Bing Autosuggest
tocHref: /azure/cognitive-services/Bing-Autosuggest
topicHref: /azure/cognitive-services/Bing-Autosuggest/get-suggested-search-terms
- name: Bing Custom Search
tocHref: /azure/cognitive-services/bing-custom-search
topicHref: /azure/cognitive-services/bing-custom-search/overview
- name: Bing Entity Search
tocHref: /azure/cognitive-services/bing-entities-search
topicHref: /azure/cognitive-services/bing-entities-search/overview
- name: Bing Image Search
tocHref: /azure/cognitive-services/bing-image-search
topicHref: /azure/cognitive-services/bing-image-search/overview
- name: Bing News Search
tocHref: /azure/cognitive-services/bing-news-search
topicHref: /azure/cognitive-services/bing-news-search/search-the-web
- name: Bing Spell Check
tocHref: /azure/cognitive-services/bing-spell-check
topicHref: /azure/cognitive-services/bing-spell-check/overview
- name: Bing Video Search
tocHref: /azure/cognitive-services/Bing-Video-Search
topicHref: /azure/cognitive-services/Bing-Video-Search/overview
- name: Bing Visual Search
tocHref: /azure/cognitive-services/bing-visual-search
topicHref: /azure/cognitive-services/bing-visual-search/overview
- name: Bing Web Search
tocHref: /azure/cognitive-services/bing-web-search
topicHref: /azure/cognitive-services/bing-web-search/overview
- name: Bing Local Business Search
tocHref: /azure/cognitive-services/bing-local-business-search
topicHref: /azure/cognitive-services/bing-local-business-search/overview
- name: Computer Vision
tocHref: /azure/cognitive-services/computer-vision/
topicHref: /azure/cognitive-services/computer-vision/
- name: Content Moderator
tocHref: /azure/cognitive-services/content-moderator/
topicHref: /azure/cognitive-services/content-moderator/
- name: Custom Decision Service
tocHref: /azure/cognitive-services/custom-decision-service/
topicHref: /azure/cognitive-services/custom-decision-service/custom-decision-service-overview
- name: Speaker Recognition
tocHref: /azure/cognitive-services/speaker-recognition/
topicHref: /azure/cognitive-services/speaker-recognition/home
- name: Custom Vision Service
tocHref: /azure/cognitive-services/custom-vision-service/
topicHref: /azure/cognitive-services/custom-vision-service/
- name: Entity Linking
tocHref: /azure/cognitive-services/entitylinking/
topicHref: /azure/cognitive-services/entitylinking/home
- name: Anomaly Finder
tocHref: /azure/cognitive-services/labs/anomaly-finder/
topicHref: /azure/cognitive-services/anomaly-detector/overview
- name: Conversation Learner
tocHref: /azure/cognitive-services/labs/conversation-learner/
topicHref: /azure/cognitive-services/labs/conversation-learner/overview
- name: URL Preview
tocHref: /azure/cognitive-services/labs/url-preview/
topicHref: /azure/cognitive-services/labs/url-preview/overview
- name: Answer Search
tocHref: /azure/cognitive-services/labs/answer-search/
topicHref: /azure/cognitive-services/labs/answer-search/overview
- name: Face
tocHref: /azure/cognitive-services/face/
topicHref: /azure/cognitive-services/face/
- name: Knowledge Exploration
tocHref: /azure/cognitive-services/kes/
topicHref: /azure/cognitive-services/kes/overview
- name: Language Understanding (LUIS)
tocHref: /azure/cognitive-services/LUIS/
topicHref: /azure/cognitive-services/LUIS/
- name: Linguistic Analysis
tocHref: /azure/cognitive-services/linguisticanalysisapi/
topicHref: https://www.programmableweb.com/api/microsoft-cognitive-services-linguistic-analysis
- name: QnA Maker
tocHref: /azure/cognitive-services/qnamaker/
topicHref: /azure/cognitive-services/qnamaker/home
- name: Speech API
tocHref: /azure/cognitive-services/Speech/
topicHref: /azure/cognitive-services/Speech/home
- name: Speech Service
tocHref: /azure/cognitive-services/Speech-Service/
topicHref: /azure/cognitive-services/Speech-Service/
- name: Text Analytics
tocHref: /azure/cognitive-services/text-analytics/
topicHref: /azure/cognitive-services/text-analytics/
- name: Translator
tocHref: /azure/cognitive-services/translator/
topicHref: /azure/cognitive-services/translator/
# - name: Translator Speech
# tocHref: /azure/cognitive-services/translator-speech/
# topicHref: /azure/cognitive-services/translator-speech/
- name: Video Indexer
tocHref: /azure/cognitive-services/video-indexer/
topicHref: /azure/azure-video-indexer/video-indexer-overview
- name: Web Language Model
tocHref: /azure/cognitive-services/web-language-model/
topicHref: https://www.programmableweb.com/sdk/microsoft-cognitive-services-web-language-model-c-sdk-microsoft
- name: Personality Chat
tocHref: /azure/cognitive-services/project-personality-chat/
topicHref: /azure/cognitive-services/qnamaker/overview/overview
- name: Project Acoustics
tocHref: /azure/cognitive-services/acoustics/
topicHref: /azure/cognitive-services/acoustics/what-is-acoustics
- name: Ink Recognizer
tocHref: /azure/cognitive-services/Ink-Recognizer/
topicHref: /azure/cognitive-services/Ink-Recognizer/
- name: Personalizer
tocHref: /azure/cognitive-services/personalizer/
topicHref: /azure/cognitive-services/personalizer/
- name: Communication Services
tocHref: /azure/communication-services/
topicHref: /azure/communication-services/
- name: Connectors
tocHref: /azure/connectors/
topicHref: /azure/connectors/
- name: Container Instances
tocHref: /azure/container-instances/
topicHref: /azure/container-instances/
- name: AKS
tocHref: /azure/aks/
topicHref: /azure/aks/
- name: OpenShift
tocHref: /azure/openshift/
topicHref: /azure/openshift/
- name: Container Service
tocHref: /azure/container-service/
topicHref: /azure/container-service/
items:
- name: DC/OS and Swarm
tocHref: /azure/container-service/dcos-swarm/
topicHref: /azure/container-service/dcos-swarm/
- name: Kubernetes
tocHref: /azure/container-service/kubernetes/
topicHref: /azure/container-service/kubernetes/
- name: Cosmos DB
tocHref: /azure/cosmos-db/
topicHref: /azure/cosmos-db/
items:
- name: MongoDB API
tocHref: /azure/cosmos-db/mongodb
topicHref: /azure/cosmos-db/mongodb
- name: Table API
tocHref: /azure/cosmos-db/table/
topicHref: /azure/cosmos-db/table/
- name: Cassandra API
tocHref: /azure/cosmos-db/cassandra/
topicHref: /azure/cosmos-db/cassandra/
- name: Gremlin API
tocHref: /azure/cosmos-db/graph/
topicHref: /azure/cosmos-db/graph/
- name: SQL API
tocHref: /azure/cosmos-db/sql/
topicHref: /azure/cosmos-db/sql/
- name: Managed Instance for Apache Cassandra
tocHref: /azure/managed-instance-apache-cassandra/
topicHref: /azure/managed-instance-apache-cassandra/
- name: Storage
tocHref: /azure/storage/
topicHref: /azure/storage/
items:
- name: Data Box offline transfer
tocHref: /azure/databox/
topicHref: /azure/databox/
- name: Data Box Gateway
tocHref: /azure/databox-gateway/
topicHref: /azure/databox-gateway/
- name: Data Catalog
tocHref: /azure/data-catalog/
topicHref: /azure/data-catalog/
- name: Data Factory
tocHref: /azure/data-factory/
topicHref: /azure/data-factory/
- name: Data Lake Analytics
tocHref: /azure/data-lake-analytics/
topicHref: /azure/data-lake-analytics/
- name: Data Lake Storage Gen1
tocHref: /azure/data-lake-store/
topicHref: /azure/data-lake-store/
- name: Dedicated HSM
tocHref: /azure/dedicated-hsm/
topicHref: /azure/dedicated-hsm/
- name: Azure DevTest Labs
tocHref: /azure/devtest-labs/
topicHref: /azure/devtest-labs/
- name: FXT Edge Filer
tocHref: /azure/fxt-edge-filer/
topicHref: /azure/fxt-edge-filer/
- name: Genomics
tocHref: /azure/genomics/
topicHref: /azure/genomics/
- name: Governance
tocHref: /azure/governance/
topicHref: /azure/governance/
items:
- name: Blueprints
tocHref: /azure/governance/blueprints/
topicHref: /azure/governance/blueprints/
- name: Management Groups
tocHref: /azure/governance/management-groups/
topicHref: /azure/governance/management-groups/
- name: Policy
tocHref: /azure/governance/policy/
topicHref: /azure/governance/policy/
- name: Resource Graph
tocHref: /azure/governance/resource-graph/
topicHref: /azure/governance/resource-graph/
- name: Guidance
tocHref: /azure/guidance/
topicHref: /azure/guidance/
- name: HDInsight
tocHref: /azure/hdinsight/
topicHref: /azure/hdinsight/
items:
- name: Hadoop
tocHref: /azure/hdinsight/hadoop
topicHref: /azure/hdinsight/hadoop/apache-hadoop-introduction
- name: HBase
tocHref: /azure/hdinsight/hbase
topicHref: /azure/hdinsight/hbase/apache-hbase-overview
- name: Interactive Query
tocHref: /azure/hdinsight/interactive-query
topicHref: /azure/hdinsight/interactive-query/apache-interactive-query-get-started
- name: Kafka
tocHref: /azure/hdinsight/kafka
topicHref: /azure/hdinsight/kafka/apache-kafka-introduction
- name: Enterprise Security
tocHref: /azure/hdinsight/domain-joined
topicHref: /azure/hdinsight/domain-joined/apache-domain-joined-introduction
- name: ML Services
tocHref: /azure/hdinsight/r-server
topicHref: /azure/hdinsight/r-server/r-server-overview
- name: Spark
tocHref: /azure/hdinsight/spark
topicHref: /azure/hdinsight/spark/apache-spark-overview
- name: Storm
tocHref: /azure/hdinsight/storm
topicHref: /azure/hdinsight/storm/apache-storm-overview
- name: Health Data Services
tocHref: /azure/healthcare-apis/
topicHref: /azure/healthcare-apis/
items:
- name: FHIR service
tocHref: /azure/healthcare-apis/fhir/
topicHref: /azure/healthcare-apis/fhir/index
- name: DICOM service
tocHref: /azure/healthcare-apis/dicom/
topicHref: /azure/healthcare-apis/dicom/index
- name: MedTech service
tocHref: /azure/healthcare-apis/iot/
topicHref: /azure/healthcare-apis/iot/index
- name: Events
tocHref: /azure/healthcare-apis/events/
topicHref: /azure/healthcare-apis/events/index
- name: Azure API for FHIR
tocHref: /azure/healthcare-apis/azure-api-for-fhir/
topicHref: /azure/healthcare-apis/azure-api-for-fhir/index
- name: Azure for Industry
tocHref: /azure/industry
topicHref: /azure/industry
items:
- name: Azure FarmBeats
tocHref: /azure/industry
topicHref: /azure/industry
# - name: Internet of Things
# tocHref: /azure/iot-fundamentals/
# topicHref: /azure/iot-fundamentals/
# items:
# - name: IoT Fundamentals
# tocHref: /azure/iot-fundamentals/
# topicHref: /azure/iot-fundamentals/
# - name: IoT Edge
# tocHref: /azure/iot-edge/
# topicHref: /azure/iot-edge/
# - name: IoT Hub
# tocHref: /azure/iot-hub/
# topicHref: /azure/iot-hub/
# - name: IoT Hub Device Provisioning Service
# tocHref: /azure/iot-dps/
# topicHref: /azure/iot-dps/
# - name: IoT Central
# tocHref: /azure/iot-central/
# topicHref: /azure/iot-central/
# - name: Maps
# tocHref: /azure/azure-maps/
# topicHref: /azure/azure-maps/
# - name: Time Series Insights
# tocHref: /azure/time-series-insights/
# topicHref: /azure/time-series-insights/
- name: Jenkins
tocHref: /azure/jenkins/
topicHref: /azure/jenkins/
- name: Azure Kinect DK
tocHref: /azure/kinect-dk/
topicHref: /azure/kinect-dk/
- name: Lab Services
tocHref: /azure/lab-services/
topicHref: /azure/lab-services/
- name: Logic Apps
tocHref: /azure/logic-apps/
topicHref: /azure/logic-apps/
- name: Machine Learning
tocHref: /azure/machine-learning
topicHref: /azure/machine-learning/
items:
- name: Algorithm and Module Reference
tocHref: /azure/machine-learning/algorithm-module-reference
topicHref: /azure/machine-learning/algorithm-module-reference/module-reference
- name: Studio (classic)
tocHref: /azure/machine-learning/studio
topicHref: /azure/machine-learning/studio/
- name: Data Science Virtual Machine
tocHref: /azure/machine-learning/data-science-virtual-machine
topicHref: /azure/machine-learning/data-science-virtual-machine/
- name: Commercial marketplace
tocHref: /azure/marketplace
topicHref: /azure/marketplace/
- name: Media Services
tocHref: /azure/media-services/
topicHref: /azure/media-services/
items:
- name: v3
tocHref: /azure/media-services/latest/
topicHref: /azure/media-services/latest/
- name: v2
tocHref: /azure/media-services/previous/
topicHref: /azure/media-services/previous/
- name: Azure Media Player
tocHref: /azure/media-services/azure-media-player/
topicHref: /azure/media-services/azure-media-player/
- name: Live Video Analytics on IoT Edge
tocHref: /shows/internet-of-things-show/deep-dive-live-video-analytics-on-iot-edge
topicHref: /shows/internet-of-things-show/deep-dive-live-video-analytics-on-iot-edge
- name: Messaging services
tocHref: /azure/messaging-services/
topicHref: /azure/messaging-services/
items:
- name: Event Grid
tocHref: /azure/event-grid/
topicHref: /azure/event-grid
- name: Event Hubs
tocHref: /azure/event-hubs/
topicHref: /azure/event-hubs/
- name: Service Bus Messaging
tocHref: /azure/service-bus-messaging/
topicHref: /azure/service-bus-messaging/
- name: Azure Relay
tocHref: /azure/service-bus-relay/
topicHref: /azure/azure-relay/
- name: Migrate
tocHref: /azure/migrate/
topicHref: /azure/migrate/
- name: Mobile Engagement
tocHref: /azure/mobile-engagement/
topicHref: /azure/mobile-engagement/
- name: Mobile Services
tocHref: /azure/mobile-services/
topicHref: /previous-versions/azure/app-service-mobile/app-service-mobile-value-prop
- name: Multi-Factor Authentication
tocHref: /azure/multi-factor-authentication/
topicHref: /azure/multi-factor-authentication/
items:
- name: User Guide
tocHref: /azure/multi-factor-authentication/end-user/
topicHref: /azure/multi-factor-authentication/end-user/
- name: MySQL
tocHref: /azure/mysql/
topicHref: /azure/mysql/
- name: Networking
tocHref: /azure/networking/
topicHref: /azure/networking/
items:
- name: Fundamentals
tocHref: /azure/networking/fundamentals
- name: Application Gateway
tocHref: /azure/application-gateway/
topicHref: /azure/application-gateway/
- name: Bastion
tocHref: /azure/bastion/
topicHref: /azure/bastion/
- name: CDN
tocHref: /azure/cdn/
topicHref: /azure/cdn/
- name: DNS
tocHref: /azure/dns/
topicHref: /azure/dns/
- name: ExpressRoute
tocHref: /azure/expressroute/
topicHref: /azure/expressroute/
- name: Firewall
tocHref: /azure/firewall/
topicHref: /azure/firewall/
- name: Firewall Manager
tocHref: /azure/firewall-manager/
topicHref: /azure/firewall-manager/
- name: DDoS Protection Standard
tocHref: /azure/ddos-protection/
topicHref: /azure/ddos-protection/
- name: Front Door Service
tocHref: /azure/frontdoor/
topicHref: /azure/frontdoor/
- name: Internet Analyzer
tocHref: /azure/internet-analyzer/
topicHref: /azure/internet-analyzer/
- name: Internet Peering
tocHref: /azure/internet-peering/
topicHref: /azure/internet-peering/
- name: Load Balancer
tocHref: /azure/load-balancer/
topicHref: /azure/load-balancer/
- name: Network Watcher
tocHref: /azure/network-watcher/
topicHref: /azure/network-watcher/
- name: Private Link
tocHref: /azure/private-link/
topicHref: /azure/private-link/
- name: Peering Service
tocHref: /azure/peering-service/
topicHref: /azure/peering-service/
- name: Route Server
tocHref: /azure/route-server/
topicHref: /azure/route-server/
- name: Traffic Manager
tocHref: /azure/traffic-manager/
topicHref: /azure/traffic-manager/
- name: Virtual Network
tocHref: /azure/virtual-network/
topicHref: /azure/virtual-network/
items:
- name: NAT gateway
tocHref: /azure/virtual-network/nat-gateway
topicHref: /azure/virtual-network/nat-gateway
- name: IP services
tocHref: /azure/virtual-network/ip-services
topicHref: /azure/virtual-network/ip-services
- name: Virtual WAN
tocHref: /azure/virtual-wan/
topicHref: /azure/virtual-wan/
- name: VPN Gateway
tocHref: /azure/vpn-gateway/
topicHref: /azure/vpn-gateway/
- name: Web Application Firewall
tocHref: /azure/web-application-firewall/
topicHref: /azure/web-application-firewall/
- name: Network Function Manager
tocHref: /azure/network-function-manager/
topicHref: /azure/network-function-manager/
- name: Notebooks
tocHref: /azure/notebooks/
topicHref: /azure/notebooks/azure-notebooks-overview
- name: Notification Hubs
tocHref: /azure/notification-hubs/
topicHref: /azure/notification-hubs/
- name: Open Datasets
tocHref: /azure/open-datasets/
topicHref: /azure/open-datasets/
- name: Operations Management Suite
tocHref: /azure/operations-management-suite/
topicHref: /azure/operations-management-suite/
- name: PostgreSQL
tocHref: /azure/postgresql/
topicHref: /azure/postgresql/
- name: Power BI Embedded
tocHref: /azure/power-bi-embedded/
topicHref: /azure/power-bi-embedded/
- name: Power BI Workspace Collections
tocHref: /azure/power-bi-workspace-collections/
topicHref: /azure/power-bi-workspace-collections/
- name: Private multi-access edge compute
tocHref: /azure/private-multi-access-edge-compute-mec/
topicHref: /azure/private-multi-access-edge-compute-mec/
- name: Private Link
tocHref: /azure/private-link/
topicHref: /azure/private-link/
- name: Private 5G Core
tocHref: /azure/private-5g-core/
topicHref: /azure/private-5g-core/
- name: Azure Cache for Redis
tocHref: /azure/azure-cache-for-redis/
topicHref: /azure/azure-cache-for-redis/
- name: Remoteapp
tocHref: /azure/remoteapp/
topicHref: /azure/remoteapp/
- name: Resiliency
tocHref: /azure/resiliency/
topicHref: /azure/architecture/framework/resiliency/app-design
- name: Role-based access control
tocHref: /azure/role-based-access-control/
topicHref: /azure/role-based-access-control/
- name: Service Health
tocHref: /azure/service-health/
topicHref: /azure/service-health/
- name: Scheduler
tocHref: /azure/scheduler/
topicHref: /azure/scheduler/
- name: Security
tocHref: /azure/security/
topicHref: /azure/security/
items:
- name: Fundamentals
tocHref: /azure/security/fundamentals/
topicHref: /azure/security/fundamentals/
- name: Develop
tocHref: /azure/security/develop/
topicHref: /azure/security/develop/
- name: Journey
tocHref: /azure/security/journey
topicHref: /azure/security/journey
- name: Benchmarks
tocHref: /azure/security/benchmarks/
topicHref: /azure/security/benchmarks/
- name: Key Vault
tocHref: /azure/key-vault/
topicHref: /azure/key-vault
items:
- name: General
tocHref: /azure/key-vault/general/
topicHref: /azure/key-vault/general/
- name: Certificates
tocHref: /azure/key-vault/certificates/
topicHref: /azure/key-vault/certificates/
- name: Keys
tocHref: /azure/key-vault/keys/
topicHref: /azure/key-vault/keys/
- name: Secrets
tocHref: /azure/key-vault/secrets/
topicHref: /azure/key-vault/secrets/
- name: Managed HSM
tocHref: /azure/key-vault/managed-hsm/
topicHref: /azure/key-vault/managed-hsm/
- name: Microsoft Defender for Cloud
tocHref: /azure/defender-for-cloud/
topicHref: /azure/defender-for-cloud/
- name: Microsoft Sentinel
tocHref: /azure/sentinel/
topicHref: /azure/sentinel/
- name: Microsoft Defender for IoT
tocHref: /azure/defender-for-iot/
topicHref: /azure/defender-for-iot/
- name: Attestation
tocHref: /azure/attestation/
topicHref: /azure/attestation/
- name: Confidential Ledger
tocHref: /azure/confidential-ledger/
topicHref: /azure/confidential-ledger/
- name: Service Fabric
tocHref: /azure/service-fabric/
topicHref: /azure/service-fabric/
- name: Service Fabric Mesh
tocHref: /azure/service-fabric-mesh/
topicHref: /azure/service-fabric-mesh/
- name: Site Recovery
tocHref: /azure/site-recovery/
topicHref: /azure/site-recovery/
- name: Site Reliability Engineering
tocHref: /azure/site-reliability-engineering/
topicHref: /azure/site-reliability-engineering/
- name: Synapse Analytics
tocHref: /azure/synapse-analytics/
topicHref: /azure/synapse-analytics/
- name: Azure SQL
tocHref: /azure/azure-sql/
topicHref: /azure/azure-sql/
items:
- name: SQL Database
tocHref: /azure/azure-sql/database
topicHref: /azure/azure-sql/database
- name: SQL Managed Instance
tocHref: /azure/azure-sql/managed-instance
topicHref: /azure/azure-sql/managed-instance
- name: SQL Server on Azure VM
tocHref: /azure/azure-sql/virtual-machines
topicHref: /azure/azure-sql/virtual-machines
items:
- name: Windows
tocHref: /azure/azure-sql/virtual-machines/windows
topicHref: /azure/azure-sql/virtual-machines/windows
- name: Linux
tocHref: /azure/azure-sql/virtual-machines/linux
topicHref: /azure/azure-sql/virtual-machines/linux
- name: Azure SQL Edge
tocHref: /azure/azure-sql-edge/
topicHref: /azure/azure-sql-edge/
- name: SQL Server Stretch Database
tocHref: /azure/sql-server-stretch-database/
topicHref: /azure/sql-server-stretch-database/
- name: Storage
tocHref: /azure/storage/
topicHref: /azure/storage/
items:
- name: Blobs
tocHref: /azure/storage/blobs/
topicHref: /azure/storage/blobs/storage-blobs-introduction
- name: Data Lake Storage Gen2
tocHref: /azure/storage/data-lake-storage-gen2/
topicHref: /azure/storage/data-lake-storage/introduction
- name: Files
tocHref: /azure/storage/files/
topicHref: /azure/storage/files/storage-files-introduction
- name: File Sync
tocHref: /azure/storage/file-sync/
topicHref: /azure/storage/file-sync/file-sync-introduction
- name: Queues
tocHref: /azure/storage/queues/
topicHref: /azure/storage/queues/storage-queues-introduction
- name: Tables
tocHref: /azure/storage/tables/
topicHref: /azure/storage/tables/table-storage-overview
- name: StorSimple
tocHref: /azure/storsimple/
topicHref: /azure/storsimple/
- name: Stream Analytics
tocHref: /azure/stream-analytics/
topicHref: /azure/stream-analytics/
- name: Virtual Machine Scale Sets
tocHref: /azure/virtual-machine-scale-sets/
topicHref: /azure/virtual-machine-scale-sets/
- name: Virtual Machines
tocHref: /azure/virtual-machines/
topicHref: /azure/virtual-machines/
items:
- name: Workloads
tocHref: /azure/virtual-machines/workloads/
topicHref: /azure/virtual-machines/workloads/workloads
items:
- name: High Performance Computing
tocHref: /azure/virtual-machines/workloads/hpc/
topicHref: /azure/virtual-machines/linux/high-performance-computing?toc=%2fazure%2fvirtual-machines%2fworkloads%2fhpc%2ftoc.json
- name: SAP
tocHref: /azure/virtual-machines/workloads/sap/
topicHref: /azure/virtual-machines/workloads/sap/get-started
- name: Oracle