-
Notifications
You must be signed in to change notification settings - Fork 21.5k
/
docfx.json
1295 lines (1295 loc) · 84.5 KB
/
docfx.json
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
{
"build": {
"markdownEngineName": "markdig",
"content": [
{
"src": "articles",
"dest": ".",
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"iot-edge/**",
"**/_themes/**",
"**/includes/**",
"**/obj/**",
"**/*.graffle"
]
},
{
"group": "grp-iot-edge",
"src": "articles/iot-edge",
"dest": "./iot-edge/",
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"**/_themes/**",
"**/includes/**",
"**/obj/**"
]
},
{
"src": "bread",
"dest": "bread",
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"**/_themes/**",
"**/includes/**",
"**/obj/**"
]
}
],
"resource": [
{
"src": "articles",
"dest": ".",
"files": [
"**/*.gif",
"**/*.jpeg",
"**/*.jpg",
"**/*.png",
"**/*.svg"
],
"exclude": [
"iot-edge/**",
"**/_themes/**",
"**/obj/**"
]
},
{
"group": "grp-iot-edge",
"src": "articles/iot-edge",
"dest": "./iot-edge/",
"files": [
"**/*.gif",
"**/*.jpeg",
"**/*.jpg",
"**/*.png",
"**/*.svg"
],
"exclude": [
"**/_themes/**",
"**/obj/**"
]
},
{
"src": null,
"dest": null,
"files": [
"includes/**/*.gif",
"includes/**/*.jpeg",
"includes/**/*.jpg",
"includes/**/*.png",
"includes/**/*.svg"
],
"exclude": [
"**/_themes/**",
"**/obj/**"
]
}
],
"groups": {
"grp-iot-edge": {
"dest": "destiotedge",
"moniker_range": ">=iotedge-1.4"
}
},
"overwrite": [],
"externalReference": [],
"globalMetadata": {
"_op_documentIdPathDepotMapping": {
"articles/iot-central/": {
"depot_name": "MSDN.microsoft-iot-central",
"folder_relative_path_in_docset": "articles"
}
},
"brand": "azure",
"breadcrumb_path": "/azure/bread/toc.json",
"feedback_github_repo": "MicrosoftDocs/azure-docs",
"feedback_help_link_url": "https://learn.microsoft.com/answers/tags/133/azure",
"feedback_help_link_type": "get-help-at-qna",
"feedback_product_url": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"feedback_system": "Standard",
"searchScope": [
"Azure"
],
"permissioned-type": "public",
"recommendations": true,
"recommendation_types": ["Training", "Certification"],
"uhfHeaderId": "azure",
"ms.suite": "office",
"contributors_to_exclude": [
"alexbuckgit",
"American-Dipper",
"AnnaMHuff",
"cdpark",
"Court72",
"damabe",
"denrea",
"dksimpson",
"garycentric",
"GitHubber17",
"Jak-MS",
"JamesJBarnett",
"JasonWHowell",
"JillGrant615",
"JKirsch1",
"Jmart1428",
"JustPies",
"ktoliver",
"LizCasey1",
"MeeraDi",
"meganbradley",
"mohitp930",
"mSarts",
"ms-robkni",
"openpublishingbuild",
"paulth1",
"PMEds28",
"PRmerger",
"PRMerger17",
"PRMerger-2",
"PRMerger3",
"PRMerger4",
"PRMerger5",
"PRMerger9",
"rjagiewich",
"rmca14",
"Saisang",
"sdwheeler",
"ShannonLeavitt",
"ShawnJackson",
"ShawnKupfer",
"tfosmark",
"TimShererWithAquent",
"ttorble",
"tysonn",
"v-albemi",
"v-ccolin",
"v-dirichards",
"v-emilypr",
"v-lmcdonald",
"v-regandowner",
"v-savila",
"v-shils",
"v-stsavell",
"v-thepet",
"v-thpra"
],
"zone_pivot_group_filename": "zone-pivot-groups.json"
},
"fileMetadata": {
"adobe-target": {
"articles/api-management/*": true,
"articles/app-service/*": true,
"articles/app-spaces/*": true,
"articles/azure-functions/*": true,
"articles/azure-monitor/*": true,
"articles/container-apps/*": true,
"articles/messaging-services/*": true,
"articles/network-watcher/*": true,
"articles/static-web-apps/*": true
},
"archive_url": {
"articles/iot-edge/*": "/previous-versions/azure/iot-edge/"
},
"author": {
"articles/advisor/*.md": "ikhapova",
"articles/ansible/**/*.md": "TomArcherMsft",
"articles/app-service-mobile/**/*.md": "elamalani",
"articles/app-service/containers/*.md": "cephalin",
"articles/app-service/environment/*.md": "madsd",
"articles/app-service/scripts/*.md": "cephalin",
"articles/app-spaces/*.md": "msangapu-msft",
"articles/automanage/*md": "johnmarc",
"articles/automation/**/*.md": "SnehaSudhirG",
"articles/azure-arc/**/*.md": "JnHs",
"articles/azure-arc/servers/**/*.md": "johnmarco",
"articles/azure-cache-for-redis/**/*.md": "flang-msft",
"articles/azure-fluid-relay/**/*.md": "GrantMeStrength",
"articles/azure-functions/**/*.md": "ggailey777",
"articles/azure-government/**/*.md": "EliotSeattle",
"articles/azure-monitor/*.md": "bwren",
"articles/azure-monitor/agents/*.md": "guywi-ms",
"articles/azure-monitor/alerts/*.md": "AbbyMSFT",
"articles/azure-monitor/app/*.md": "AaronMaxwell",
"articles/azure-monitor/autoscale/*.md": "EdB-MSFT",
"articles/azure-monitor/change/*.md": "hhunter-ms",
"articles/azure-monitor/containers/*.md": "bwren",
"articles/azure-monitor/containers/**/*.md": "bwren",
"articles/azure-monitor/essentials/*.md": "EdB-MSFT",
"articles/azure-monitor/insights/*.md": "bwren",
"articles/azure-monitor/insights/container-insights*.md": "bwren",
"articles/azure-monitor/log-query/*.md": "bwren",
"articles/azure-monitor/logs/*.md": "guywi-ms",
"articles/azure-monitor/profiler/*.md": "hhunter-ms",
"articles/azure-monitor/snapshot-debugger/*.md": "hhunter-ms",
"articles/azure-monitor/visualize/**/*.md": "AbbyMSFT",
"articles/azure-monitor/vm/*.md": "bwren",
"articles/azure-portal/**/*.md": "JnHs",
"articles/azure-portal/**/*.yml": "JnHs",
"articles/azure-relay/*.md": "spelluru",
"articles/azure-resource-manager/*.md": "mumian",
"articles/azure-resource-manager/bicep/**/*.md": "mumian",
"articles/azure-resource-manager/custom-providers/**/*.md": "MSEvanhi",
"articles/azure-resource-manager/managed-applications/**/*.md": "MSEvanhi",
"articles/azure-resource-manager/management/**/*.md": "mumian",
"articles/azure-resource-manager/templates/**/*.md": "mumian",
"articles/azure-resource-manager/troubleshooting/**/*.md": "mumian",
"articles/azure-video-analyzer/video-analyzer-docs/*.md": "Juliako",
"articles/azure-video-analyzer/video-analyzer-docs/cloud/*.md": "Juliako",
"articles/azure-video-analyzer/video-analyzer-docs/edge/*.md": "Juliako",
"articles/azure-video-indexer/*.md": "Juliako",
"articles/azure-vmware/**/*.md": "jjaygbay1",
"articles/backup/**/*.md": "AbhishekMallick-MS",
"articles/backup/**/*.yml": "AbhishekMallick-MS",
"articles/baremetal-infrastructure/**/*.md": "dineshga",
"articles/batch/**/*.md": "padmalathas",
"articles/blockchain/**/*.md": "PatAltimore",
"articles/business-process-tracking/*.md": "ecfan",
"articles/business-process-tracking/*.yml": "ecfan",
"articles/chef/**/*.md": "TomArcherMsft",
"articles/cloud-shell/**/*.md": "sdwheeler",
"articles/connectors/*.md": "ecfan",
"articles/container-registry/**/*.md": "tejaswikolli-web",
"articles/data-catalog/*.md": "whhender",
"articles/defender-for-iot/device-builders/*.md": "limwainstein",
"articles/defender-for-iot/organizations/*.md": "limwainstein",
"articles/defender-for-iot/organizations/**/*.md": "limwainstein",
"articles/deployment-environments/**/*.md": "RoseHJM",
"articles/dev-box/**/*.md": "RoseHJM",
"articles/dev-spaces/**/*.md": "zr-msft",
"articles/devtest-labs/**/*.md": "RoseHJM",
"articles/event-grid/**/*.md": "spelluru",
"articles/event-hubs/**/*.md": "spelluru",
"articles/governance/*.md": "davidsmatlak",
"articles/governance/blueprints/**/*.md": "mumian",
"articles/governance/machine-configuration/**/*.md": "michaeltlombardi",
"articles/governance/management-groups/**/*.md": "rthorn17",
"articles/governance/policy/**/*.md": "davidsmatlak",
"articles/governance/resource-graph/**/*.md": "daphnemamsft",
"articles/hdinsight-aks/*.md": "sreekzz",
"articles/hdinsight-aks/*.yml": "sreekzz",
"articles/hdinsight-aks/**/*.md": "sreekzz",
"articles/hdinsight/*.md": "sreekzz",
"articles/hdinsight/*.yml": "sreekzz",
"articles/hdinsight/**/*.md": "sreekzz",
"articles/integration-environments/*.md": "ecfan",
"articles/integration-environments/*.yml": "ecfan",
"articles/jenkins/**/*.md": "TomArcherMsft",
"articles/lab-services/**/*.md": "emaher",
"articles/lighthouse/**/*.md": "JnHs",
"articles/load-balancer/*.md": "mbender-ms",
"articles/load-balancer/*.yml": "mbender-ms",
"articles/logic-apps/*.md": "ecfan",
"articles/logic-apps/*.yml": "ecfan",
"articles/logic-apps/**/.md": "ecfan",
"articles/media-services/**/*.md": "Juliako",
"articles/media-services/**/**/*.md": "Juliako",
"articles/notebooks/*.md": "j-martens",
"articles/openshift/**/*.md": "johnmarco",
"articles/openshift/**/*.yml": "johnmarco",
"articles/operator-insights/**/*.md": "rcdun",
"articles/operator-insights/**/*.yml": "rcdun",
"articles/partner-solutions/**/*.md": "ProfessorKendrick",
"articles/partner-solutions/**/*.yml": "ProfessorKendrick",
"articles/partner-solutions/split-experimentation/**/*.md": "maud-lv",
"articles/partner-solutions/split-experimentation/**/*.yml": "maud-lv",
"articles/playwright-testing/**/*.md": "vvs11",
"articles/quotas/**/*.md": "JnHs",
"articles/quotas/**/*.yml": "JnHs",
"articles/sap/**/*.md": "lauradolan",
"articles/service-bus-messaging/*.md": "spelluru",
"articles/service-health/*.md": "rboucher",
"articles/site-recovery/*.md": "ankitaduttaMSFT",
"articles/stream-analytics/*.md": "alicialimicrosoft",
"articles/terraform/**/*.md": "TomArcherMsft",
"articles/update-center/**/*.md": "SnehaSudhirG",
"articles/virtual-network-manager/*.md": "mbender-ms",
"articles/virtual-network-manager/*.yml": "mbender-ms"
},
"featureFlags": {
"articles/**/*.md": [
"show_learn_banner"
]
},
"feedback_product_url": {
"articles/*.md": "https://feedback.azure.com/d365community/forum/b822bb63-8b26-ec11-b6e6-000d3a4f0789",
"articles/active-directory-b2c/**/*.md": "https://docs.microsoft.com/azure/active-directory/develop/developer-support-help-options",
"articles/advisor/**/*.md": "https://feedback.azure.com/d365community/forum/44a8566e-0525-ec11-b6e6-000d3a4f0858",
"articles/analysis-services/**/*.md": "https://feedback.azure.com/d365community/forum/d92323a0-0525-ec11-b6e6-000d3a4f0858",
"articles/ansible/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/api-management/**/*.md": "https://feedback.azure.com/d365community/forum/e808a70c-ff24-ec11-b6e6-000d3a4f0858",
"articles/app-service-mobile/**/*.md": "https://github.com/Azure/azure-mobile-apps/issues",
"articles/app-service/**/*.md": "https://feedback.azure.com/d365community/forum/b09330d1-c625-ec11-b6e6-000d3a4f0f1c",
"articles/application-gateway/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=8d429912-8326-ec11-b6e6-000d3a4f0789",
"articles/application-insights/**/*.md": "https://feedback.azure.com/d365community/forum/3887dc70-2025-ec11-b6e6-000d3a4f09d0",
"articles/automation/**/*.md": "https://feedback.azure.com/d365community/forum/8ddd03a2-0225-ec11-b6e6-000d3a4f0858",
"articles/availability-zones/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/azure-app-configuration/**/*.md": "https://github.com/Azure/AppConfiguration/issues",
"articles/azure-arc/**/*.md": "https://feedback.azure.com/d365community/forum/5c778dec-0625-ec11-b6e6-000d3a4f0858",
"articles/azure-cache-for-redis/**/*.md": "https://feedback.azure.com/d365community/forum/a96a82f3-0c25-ec11-b6e6-000d3a4f07b8",
"articles/azure-databricks/**/*.md": "https://feedback.azure.com/d365community/forum/2efba7dc-ef24-ec11-b6e6-000d3a4f0da0",
"articles/azure-functions/**/*.md": "https://feedback.azure.com/d365community/forum/9df02822-f224-ec11-b6e6-000d3a4f0da0",
"articles/azure-government/**/*.md": "",
"articles/azure-maps/**/*.md": "https://feedback.azure.com/d365community/forum/fc834083-0925-ec11-b6e6-000d3a4f09d0",
"articles/azure-monitor/**/*.md": "https://feedback.azure.com/d365community/forum/3887dc70-2025-ec11-b6e6-000d3a4f09d0",
"articles/azure-monitor/app/**/*.md": "https://feedback.azure.com/d365community/forum/3887dc70-2025-ec11-b6e6-000d3a4f09d0",
"articles/azure-monitor/log-query/**/*.md": "https://feedback.azure.com/d365community/forum/aa68334e-1925-ec11-b6e6-000d3a4f09d0",
"articles/azure-monitor/platform/**/alert-*.md": "https://feedback.azure.com/d365community/forum/3887dc70-2025-ec11-b6e6-000d3a4f09d0",
"articles/azure-percept/**/*.md": "https://feedback.azure.com/d365community/forum/4a4c60f9-4e4d-ec11-8f8e-0022481f2bb0",
"articles/azure-portal/**/*.md": "https://feedback.azure.com/d365community/forum/a222eda7-2425-ec11-b6e6-000d3a4f09d0",
"articles/azure-portal/supportability/**/*.md": "https://feedback.azure.com/d365community/forum/a222eda7-2425-ec11-b6e6-000d3a4f09d0",
"articles/azure-relay/**/*.md": "https://feedback.azure.com/d365community/forum/7c0a897d-2125-ec11-b6e6-000d3a4f0f84",
"articles/azure-resource-manager/**/*.md": "https://feedback.azure.com/d365community/forum/9a0ece70-ff24-ec11-b6e6-000d3a4f07b8",
"articles/azure-signalr/**/*.md": "https://feedback.azure.com/d365community/forum/819c820b-0725-ec11-b6e6-000d3a4f07b8",
"articles/azure-stack/**/*.md": "https://feedback.azure.com/d365community/forum/ef24cacb-0725-ec11-b6e6-000d3a4f07b8",
"articles/azure-vmware/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/backup/**/*.md": "https://feedback.azure.com/d365community/forum/153aa817-0725-ec11-b6e6-000d3a4f0858",
"articles/batch-ai/**/*.md": "https://feedback.azure.com/d365community/forum/31e95054-0c25-ec11-b6e6-000d3a4f07b8",
"articles/batch/**/*.md": "https://feedback.azure.com/d365community/forum/7462aa60-0c25-ec11-b6e6-000d3a4f07b8",
"articles/biztalk-services/**/*.md": "https://feedback.azure.com/d365community/forum/6b0c7198-0c25-ec11-b6e6-000d3a4f07b8",
"articles/blockchain/**/*.md": "https://feedback.azure.com/d365community/forum/1117d1aa-0c25-ec11-b6e6-000d3a4f07b8",
"articles/cdn/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=78a5490b-8326-ec11-b6e6-000d3a4f0789",
"articles/center-sap-solutions/*.md": "https://feedback.azure.com/d365community/forum/9ed90375-d5e0-ec11-bb3d-000d3a57bc26",
"articles/chaos-studio/**/*.md": "https://feedback.azure.com/d365community/forum/18f8dc01-dc37-ec11-b6e6-000d3a9c7101",
"articles/chef/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/cloud-partner-portal/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/cloud-services/**/*.md": "https://feedback.azure.com/d365community/forum/a80be93d-0d25-ec11-b6e6-000d3a4f07b8",
"articles/cloud-shell/**/*.md": "https://aka.ms/cloudshell/feedback",
"articles/cloudfoundry/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/communication-services/**/*.md": "https://feedback.azure.com/d365community/forum/81ff6d2b-0c25-ec11-b6e6-000d3a4f0858",
"articles/connectors/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/container-registry/**/*.md": "https://feedback.azure.com/d365community/forum/180a533d-0d25-ec11-b6e6-000d3a4f0858",
"articles/container-service/**/*.md": "https://feedback.azure.com/d365community/forum/aabe212a-f724-ec11-b6e6-000d3a4f0da0",
"articles/containers/**/*.md": "https://feedback.azure.com/d365community/forum/1e5d6956-0c25-ec11-b6e6-000d3a4f0858",
"articles/cost-management-billing/**/*.md": "https://feedback.azure.com/d365community/forum/748a4eaa-0e25-ec11-b6e6-000d3a4f07b8",
"articles/cost-management-billing/costs/**/*.md": "https://feedback.azure.com/d365community/forum/748a4eaa-0e25-ec11-b6e6-000d3a4f07b8",
"articles/cost-management-billing/manage/**/*.md": "https://feedback.azure.com/d365community/forum/ebeaa30a-2425-ec11-b6e6-000d3a4f0f84",
"articles/cost-management-billing/reservations/**/*.md": "https://feedback.azure.com/d365community/forum/f54500da-fd24-ec11-b6e6-000d3a4f07b8",
"articles/data-catalog/**/*.md": "https://feedback.azure.com/d365community/forum/3bedd14b-6b26-ec11-b6e6-000d3a4f032c",
"articles/data-factory/**/*.md": "https://feedback.azure.com/d365community/forum/1219ec2d-6c26-ec11-b6e6-000d3a4f032c",
"articles/data-lake-store/**/*.md": "https://feedback.azure.com/d365community/forum/7fd97106-7326-ec11-b6e6-000d3a4f032c",
"articles/data-share/**/*.md": "https://feedback.azure.com/d365community/forum/82d7bddb-fb24-ec11-b6e6-000d3a4f07b8",
"articles/deployment-environments/**/*.md": "https://feedback.azure.com/d365community/forum/7a13c6c1-2546-ed11-bba2-000d3a4e3927",
"articles/dev-box/**/*.md": "https://feedback.azure.com/d365community/forum/dbaa0c2b-4e1d-ed11-b83d-000d3a4d97ea",
"articles/dev-spaces/**/*.md": "https://github.com/Azure/dev-spaces/issues",
"articles/devtest-labs/**/*.md": "https://feedback.azure.com/d365community/forum/502dba10-7726-ec11-b6e6-000d3a4f032c",
"articles/digital-twins/**/*.md": "https://feedback.azure.com/d365community/forum/9d500f96-f124-ec11-b6e6-000d3a4f0da0",
"articles/dns/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=9c429912-8326-ec11-b6e6-000d3a4f0789",
"articles/docker/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/documentdb/**/*.md": "https://feedback.azure.com/d365community/forum/3002b3be-0d25-ec11-b6e6-000d3a4f0858",
"articles/dotnet/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/energy-data-services/**/*.md": "https://feedback.azure.com/d365community/forum/f0544cc4-c338-ed11-9db0-000d3a1f475f",
"articles/event-grid/**/*.md": "https://feedback.azure.com/d365community/forum/a095b5b5-f124-ec11-b6e6-000d3a4f0da0",
"articles/event-hubs/**/*.md": "https://feedback.azure.com/d365community/forum/86c37ae9-7526-ec11-b6e6-000d3a4f032c",
"articles/expressroute/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=a34c3e27-8326-ec11-b6e6-000d3a4f0789",
"articles/firewall/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=fc894060-8326-ec11-b6e6-000d3a4f0789",
"articles/frontdoor/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=d47b0f41-8326-ec11-b6e6-000d3a4f0789",
"articles/germany/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/global-secure-access/**/*.md": "https://aka.ms/ssepreviewfeedback",
"articles/governance/**/*.md": "https://feedback.azure.com/d365community/forum/675ae472-f324-ec11-b6e6-000d3a4f0da0",
"articles/guidance/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/guides/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/hdinsight-aks/**/*.md": "https://feedback.azure.com/d365community/forum/14770d6d-7626-ec11-b6e6-000d3a4f032c",
"articles/hdinsight/**/*.md": "https://feedback.azure.com/d365community/forum/14770d6d-7626-ec11-b6e6-000d3a4f032c",
"articles/industry/agriculture/**/*.md": "https://feedback.azure.com/d365community/forum/28494f0f-f224-ec11-b6e6-000d3a4f0da0",
"articles/iot-central/**/*.md": "https://feedback.azure.com/d365community/forum/35b59d83-f424-ec11-b6e6-000d3a4f0da0",
"articles/iot-dps/**/*.md": "https://feedback.azure.com/d365community/forum/fcb810f7-f824-ec11-b6e6-000d3a4f0da0",
"articles/iot-edge/**/*.md": "https://feedback.azure.com/d365community/forum/0e2fff5d-f524-ec11-b6e6-000d3a4f0da0",
"articles/iot-hub/**/*.md": "https://feedback.azure.com/d365community/forum/fcb810f7-f824-ec11-b6e6-000d3a4f0da0",
"articles/iot-operations/**/*.md": "https://feedback.azure.com/d365community/forum/20152d6e-6a76-ee11-8179-000d3a1abe9e",
"articles/iot-suite/**/*.md": "https://feedback.azure.com/d365community/forum/fcb810f7-f824-ec11-b6e6-000d3a4f0da0",
"articles/iot/**/*.md": "https://feedback.azure.com/d365community/forum/fcb810f7-f824-ec11-b6e6-000d3a4f0da0",
"articles/jenkins/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/lighthouse/**/*.md": "https://feedback.azure.com/d365community/forum/cd8dfdcb-f824-ec11-b6e6-000d3a4f0da0",
"articles/load-balancer/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=e8894060-8326-ec11-b6e6-000d3a4f0789",
"articles/load-testing/**/*.md": "https://developercommunity.microsoft.com/loadtesting",
"articles/log-analytics/**/*.md": "https://feedback.azure.com/d365community/forum/aa68334e-1925-ec11-b6e6-000d3a4f09d0",
"articles/logic-apps/**/*.md": "https://feedback.azure.com/d365community/forum/cb47c115-7926-ec11-b6e6-000d3a4f032c",
"articles/managed-applications/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/managed-grafana/**/*.md": "https://feedback.azure.com/d365community/forum/407d7fd4-f8db-ec11-a7b5-000d3a8d7a54",
"articles/media-services/**/*.md": "https://feedback.azure.com/d365community/forum/a78db44a-0d25-ec11-b6e6-000d3a4f09d0",
"articles/media-services/video-indexer/*.md": "https://cognitive.uservoice.com/forums/598144-video-indexer",
"articles/media-services/video-indexer/**/*.md": "https://cognitive.uservoice.com/forums/598144-video-indexer",
"articles/migrate/**/*.md": "https://feedback.azure.com/d365community/forum/cd45915f-0f25-ec11-b6e6-000d3a4f09d0",
"articles/mobile-engagement/**/*.md": "https://feedback.azure.com/d365community/forum/442d23dd-8226-ec11-b6e6-000d3a4f0789",
"articles/monitoring-and-diagnostics/**/*.md": "https://feedback.azure.com/d365community/forum/07d1d6e8-7426-ec11-b6e6-000d3a4f032c",
"articles/multi-factor-authentication/**/*.md": "https://feedback.azure.com/d365community/forum/22920db1-ad25-ec11-b6e6-000d3a4f0789",
"articles/network-watcher/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=cd276b66-8326-ec11-b6e6-000d3a4f0789",
"articles/networking/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789",
"articles/notebooks/**/*.md": "https://github.com/microsoft/AzureNotebooks/issues",
"articles/notification-hubs/**/*.md": "https://feedback.azure.com/d365community/forum/405a1b30-8b26-ec11-b6e6-000d3a4f0789",
"articles/openshift/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/operations-management-suite/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/partner-solutions/apache-kafka-confluent-cloud/**/*.md": "https://developercommunity.microsoft.com/confluent/suggest",
"articles/partner-solutions/astronomer/**/*.md": "https://developercommunity.microsoft.com/astronomer/suggest",
"articles/partner-solutions/datadog/**/*.md": "https://developercommunity.microsoft.com/datadog/suggest",
"articles/partner-solutions/dynatrace/**/*.md": "https://developercommunity.microsoft.com/dynatrace/suggest",
"articles/partner-solutions/elastic/**/*.md": "https://developercommunity.microsoft.com/elastic/suggest",
"articles/partner-solutions/informatica/**/*.md": "https://developercommunity.microsoft.com/informatica/suggest",
"articles/partner-solutions/new-relic/**/*.md": "https://developercommunity.microsoft.com/newrelic/suggest",
"articles/partner-solutions/nginx/**/*.md": "https://developercommunity.microsoft.com/nginx/suggest",
"articles/partner-solutions/overview.md": "https://developercommunity.microsoft.com/home",
"articles/partner-solutions/palo-alto/**/*.md": "https://developercommunity.microsoft.com/pan/suggest",
"articles/partner-solutions/partners.md": "https://developercommunity.microsoft.com/home",
"articles/partner-solutions/qumulo/**/*.md": "https://developercommunity.microsoft.com/qumulo/suggest",
"articles/partner-solutions/split-experimentation/**/*.md":"https://github.com/Azure/AppConfiguration/issues",
"articles/playwright-testing/**/*.md": "https://aka.ms/mpt/feedback",
"articles/power-bi-embedded/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/power-bi-workspace-collections/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/resiliency/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/scheduler/**/*.md": "https://feedback.azure.com/d365community/forum/7da6a58f-8b26-ec11-b6e6-000d3a4f0789",
"articles/security/**/*.md": "https://feedback.azure.com/d365community/forum/45d643ce-2025-ec11-b6e6-000d3a4f0f84",
"articles/sentinel/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/service-bus-messaging/**/*.md": "https://feedback.azure.com/d365community/forum/7c0a897d-2125-ec11-b6e6-000d3a4f0f84",
"articles/service-bus/**/*.md": "https://feedback.azure.com/d365community/forum/7c0a897d-2125-ec11-b6e6-000d3a4f0f84",
"articles/service-connector/**/*.md": "https://github.com/Azure/ServiceConnector/issues",
"articles/service-health/**/*.md": "https://feedback.azure.com/d365community/forum/f36c61ce-0625-ec11-b6e6-000d3a4f07b8",
"articles/site-recovery/**/*.md": "https://feedback.azure.com/d365community/forum/3ccca344-2d25-ec11-b6e6-000d3a4f0f84",
"articles/spatial-anchors/**/*.md": "https://feedback.azure.com/d365community/forum/f47d9b25-0725-ec11-b6e6-000d3a4f07b8",
"articles/sql-data-warehouse/**/*.md": "https://feedback.azure.com/d365community/forum/9b9ba8e4-0825-ec11-b6e6-000d3a4f07b8?c=53209bfe-0933-ec11-b6e6-00224827b3e3",
"articles/sql-database/**/*.md": "https://feedback.azure.com/d365community/forum/04fe6ee0-3b25-ec11-b6e6-000d3a4f0da0",
"articles/sql-server-stretch-database/**/*.md": "https://feedback.azure.com/d365community/forum/04fe6ee0-3b25-ec11-b6e6-000d3a4f0da0",
"articles/storage/**/*.md": "https://feedback.azure.com/d365community/forum/a8bb4a47-3525-ec11-b6e6-000d3a4f0f84",
"articles/storsimple/**/*.md": "https://feedback.azure.com/d365community/forum/f2517c22-3525-ec11-b6e6-000d3a4f0f84",
"articles/stream-analytics/**/*.md": "https://feedback.azure.com/d365community/forum/d12ec4e3-b825-ec11-b6e6-000d3a4f0f1c",
"articles/synapse-analytics/**/*.md": "https://feedback.azure.com/d365community/forum/9b9ba8e4-0825-ec11-b6e6-000d3a4f07b8",
"articles/terraform/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/time-series-insights/**/*.md": "https://feedback.azure.com/d365community/forum/873d6d1c-0c25-ec11-b6e6-000d3a4f07b8",
"articles/traffic-manager/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=40ace5ab-8326-ec11-b6e6-000d3a4f0789",
"articles/update-center/**/*.md": "https://feedback.azure.com/d365community/forum/721a322e-bd25-ec11-b6e6-000d3a4f0f1c",
"articles/virtual-desktop/**/*.md": "https://techcommunity.microsoft.com/t5/azure-virtual-desktop/idb-p/AzureVirtualDesktop",
"articles/virtual-network/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=f2c41334-8326-ec11-b6e6-000d3a4f0789",
"articles/visual-studio/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/vpn-gateway/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-ec11-b6e6-000d3a4f0789?c=9fa5490b-8326-ec11-b6e6-000d3a4f0789"
},
"feedback_system": {
},
"feedback_help_link_url": {
"articles/active-directory-b2c/**/*": "https://learn.microsoft.com/answers/tags/455/entra-id",
"articles/advisor/**/*": "https://learn.microsoft.com/answers/tags/398/azure-advisor/",
"articles/analysis-services/**/*": "https://learn.microsoft.com/answers/tags/78/azure-analysis-services/",
"articles/api-center/NO-QA-TAG-USE-GLOBAL/": "",
"articles/api-management/**/*": "https://learn.microsoft.com/answers/tags/29/azure-api-management/",
"articles/app-service/**/*": "https://learn.microsoft.com/answers/tags/436/azure-app-service/",
"articles/app-spaces/NO-QA-TAG-USE-GLOBAL/": "",
"articles/application-gateway/**/*": "https://learn.microsoft.com/answers/tags/148/azure-application-gateway/",
"articles/automanage/**/*": "https://learn.microsoft.com/answers/tags/391/azure-automanage/",
"articles/automation/**/*": "https://learn.microsoft.com/answers/tags/210/azure-automation/",
"articles/avere-vfxt/**/*": "https://learn.microsoft.com/answers/tags/58/azure-avere-vFXT/",
"articles/azure-app-configuration/**/*": "https://learn.microsoft.com/answers/tags/129/azure-app-configuration/",
"articles/azure-arc/**/*": "https://learn.microsoft.com/answers/tags/146/azure-arc/",
"articles/azure-boost/NO-QA-TAG-USE-GLOBAL/": "",
"articles/azure-cache-for-redis/**/*": "https://learn.microsoft.com/answers/tags/10/azure-blueprints/",
"articles/azure-compute-fleet/NO-QA-TAG-USE-GLOBAL/": "",
"articles/azure-edge-hardware-center/NO-QA-TAG-USE-GLOBAL/": "",
"articles/azure-fluid-relay/**/*": "https://learn.microsoft.com/answers/tags/286/azure-fluid-relay/",
"articles/azure-functions/**/*": "https://learn.microsoft.com/answers/tags/87/azure-functions/",
"articles/azure-government/NO-QA-TAG-USE-GLOBAL/": "",
"articles/azure-health-insights/**/*": "https://learn.microsoft.com/answers/tags/441/ai-services/",
"articles/azure-large-instances/NO-QA-TAG-USE-GLOBAL/": "",
"articles/azure-linux/NO-QA-TAG-USE-GLOBAL/": "",
"articles/azure-maps/**/*": "https://learn.microsoft.com/answers/tags/209/azure-maps/",
"articles/azure-monitor/**/*": "https://learn.microsoft.com/answers/tags/20/azure-monitor/",
"articles/azure-netapp-files/**/*": "https://learn.microsoft.com/answers/tags/139/azure-netapp-files/",
"articles/azure-portal/NO-QA-TAG-USE-GLOBAL/": "",
"articles/azure-relay/**/*": "https://learn.microsoft.com/answers/tags/73/azure-service-bus",
"articles/azure-resource-manager/managed-applications/**/*": "https://learn.microsoft.com/answers/tags/153/azure-managed-applications",
"articles/azure-resource-manager/NO-QA-TAG-USE-GLOBAL/": "",
"articles/azure-signalr/**/*": "https://learn.microsoft.com/answers/tags/175/azure-signalr-service/",
"articles/azure-sql-edge/**/*": "https://learn.microsoft.com/answers/tags/120/azure-sql-edge/",
"articles/azure-video-analyzer/**/*": "https://learn.microsoft.com/answers/tags/16/azure-video-indexer",
"articles/azure-vmware/NO-QA-TAG-USE-GLOBAL/": "",
"articles/azure-web-pubsub/NO-QA-TAG-USE-GLOBAL/": "",
"articles/backup/**/*": "https://learn.microsoft.com/answers/tags/28/azure-backup/",
"articles/baremetal-infrastructure/NO-QA-TAG-USE-GLOBAL/": "",
"articles/bastion/**/*": "https://learn.microsoft.com/answers/tags/119/azure-bastion/",
"articles/batch/**/*": "https://learn.microsoft.com/answers/tags/140/azure-batch/",
"articles/business-continuity-center/NO-QA-TAG-USE-GLOBAL/": "",
"articles/business-process-tracking/NO-QA-TAG-USE-GLOBAL/": "",
"articles/cdn/**/*": "https://learn.microsoft.com/answers/tags/155/azure-cdn/",
"articles/certification/NO-QA-TAG-USE-GLOBAL/": "",
"articles/chaos-studio/**/*": "https://learn.microsoft.com/answers/tags/456/chaos-studio/",
"articles/cloud-services-extended-support/**/*": "https://learn.microsoft.com/answers/tags/84/azure-cloud-services/",
"articles/cloud-services/**/*": "https://learn.microsoft.com/answers/tags/84/azure-cloud-services/",
"articles/cloud-shell/**/*": "https://learn.microsoft.com/answers/tags/84/azure-cloud-services",
"articles/communication-services/**/*": "https://learn.microsoft.com/answers/tags/128/azure-communication-services/",
"articles/communications-gateway/NO-QA-TAG-USE-GLOBAL/": "",
"articles/compliance/NO-QA-TAG-USE-GLOBAL/": "",
"articles/confidential-computing/**/*": "https://learn.microsoft.com/answers/tags/94/azure-virtual-machines/",
"articles/connectors/NO-QA-TAG-USE-GLOBAL/": "",
"articles/container-apps/**/*": "https://learn.microsoft.com/answers/tags/418/azure-container-apps/",
"articles/container-registry/**/*": "https://learn.microsoft.com/answers/tags/62/azure-container-registry/",
"articles/containers/NO-QA-TAG-USE-GLOBAL/": "",
"articles/copilot/**/*": "https://learn.microsoft.com/answers/tags/467/ms-copilot",
"articles/cost-management-billing/**/*": "https://learn.microsoft.com/answers/tags/118/azure-cost-management/",
"articles/data-catalog/**/*": "https://learn.microsoft.com/answers/tags/226/azure-data-catalog/",
"articles/data-factory/**/*": "https://learn.microsoft.com/answers/tags/194/azure-data-factory/",
"articles/data-manager-for-agri/NO-QA-TAG-USE-GLOBAL/": "",
"articles/data-share/**/*": "https://learn.microsoft.com/answers/tags/31/azure-data-share/",
"articles/databox-gateway/NO-QA-TAG-USE-GLOBAL/": "",
"articles/databox-online/NO-QA-TAG-USE-GLOBAL/": "",
"articles/databox/**/*": "https://learn.microsoft.com/answers/tags/88/azure-data-box-family/",
"articles/ddos-protection/**/*": "https://learn.microsoft.com/answers/tags/63/azure-ddos-protection/",
"articles/defender-for-iot/**/*": "https://techcommunity.microsoft.com/t5/microsoft-defender-for-iot-blog/bg-p/MicrosoftDefenderIoTBlog",
"articles/deployment-environments/**/*": "https://developercommunity.microsoft.com/deploymentenvironments",
"articles/dev-box/**/*": "https://developercommunity.microsoft.com/devbox",
"articles/devtest-labs/**/*": "https://learn.microsoft.com/answers/tags/104/azure-devtest-labs/",
"articles/devtest/NO-QA-TAG-USE-GLOBAL/": "",
"articles/digital-twins/**/*": "https://learn.microsoft.com/answers/tags/59/azure-digital-twins/",
"articles/dns/**/*": "https://learn.microsoft.com/answers/tags/77/azure-dns/",
"articles/education-hub/NO-QA-TAG-USE-GLOBAL/*/*": "",
"articles/energy-data-services/NO-QA-TAG-USE-GLOBAL/": "",
"articles/event-grid/**/*": "https://learn.microsoft.com/answers/tags/232/azure-event-grid/",
"articles/event-hubs/**/*": "https://learn.microsoft.com/answers/tags/165/azure-event-hubs/",
"articles/expressroute/**/*": "https://learn.microsoft.com/answers/tags/225/azure-expressroute/",
"articles/external-attack-surface-management/NO-QA-TAG-USE-GLOBAL/": "",
"articles/fasttrack/NO-QA-TAG-USE-GLOBAL/": "",
"articles/firewall-manager/**/*": "https://learn.microsoft.com/answers/tags/234/azure-firewall-manager/",
"articles/firewall/**/*": "https://learn.microsoft.com/answers/tags/113/azure-firewall/",
"articles/frontdoor/**/*": "https://learn.microsoft.com/answers/tags/96/azure-front-door/",
"articles/fxt-edge-filer/**/*": "https://learn.microsoft.com/answers/tags/50/azure-fxt-edge-filer/",
"articles/governance/blueprints/NO-QA-TAG-USE-GLOBAL": "",
"articles/governance/management-groups/NO-QA-TAG-USE-GLOBAL": "",
"articles/governance/NO-QA-TAG-USE-GLOBAL/": "",
"articles/governance/policy/**/*": "https://learn.microsoft.com/answers/tags/228/azure-policy",
"articles/governance/resource-graph/NO-QA-TAG-USE-GLOBAL/": "",
"articles/hdinsight-aks/**/*": "https://learn.microsoft.com/answers/tags/453/azure-hdinsight-aks/",
"articles/hdinsight/**/*": "https://learn.microsoft.com/answers/tags/168/azure-hdinsight/",
"articles/healthcare-apis/**/*": "https://learn.microsoft.com/answers/tags/389/azure-health-data-services/",
"articles/high-performance-computing/NO-QA-TAG-USE-GLOBAL/": "",
"articles/hpc-cache/**/*": "https://learn.microsoft.com/answers/tags/212/azure-hpc-cache/",
"articles/import-export/NO-QA-TAG-USE-GLOBAL/": "",
"articles/integration-environments/NO-QA-TAG-USE-GLOBAL/": "",
"articles/internet-peering/NO-QA-TAG-USE-GLOBAL/": "",
"articles/iot-central/**/*": "https://learn.microsoft.com/answers/tags/138/azure-iot-central/",
"articles/iot-dps/**/*": "https://learn.microsoft.com/answers/tags/35/azure-iot/",
"articles/iot-edge/**/*": "https://learn.microsoft.com/answers/tags/36/azure-iot-edge/",
"articles/iot-hub-device-update/**/*": "https://learn.microsoft.com/answers/tags/35/azure-iot/",
"articles/iot-hub/**/*": "https://learn.microsoft.com/answers/tags/158/azure-iot-hub/",
"articles/iot-operations/**/*": "https://learn.microsoft.com/answers/tags/464/azure-iot-operations/",
"articles/iot/**/*": "https://learn.microsoft.com/answers/tags/35/azure-iot/",
"articles/kinect-dk/**/*": "https://learn.microsoft.com/answers/tags/190/azure-kinect-dk/",
"articles/lab-services/**/*": "https://learn.microsoft.com/answers/tags/186/azure-lab-services/",
"articles/lighthouse/**/*": "https://learn.microsoft.com/answers/tags/95/azure-lighthouse/",
"articles/load-balancer/**/*": "https://learn.microsoft.com/answers/tags/230/azure-load-balancer/",
"articles/load-testing/**/*": "https://learn.microsoft.com/answers/tags/439/azure-load-testing/",
"articles/logic-apps/**/*": "https://learn.microsoft.com/answers/tags/134/azure-logic-apps/",
"articles/managed-ccf/NO-QA-TAG-USE-GLOBAL/": "",
"articles/managed-grafana/**/*": "https://learn.microsoft.com/answers/tags/249/azure-managed-grafana/",
"articles/media/**/*": "https://learn.microsoft.com/answers/tags/101/azure-media-services/",
"articles/messaging-services/**/*": "https://learn.microsoft.com/answers/tags/73/azure-service-bus/",
"articles/migrate/**/*": "https://learn.microsoft.com/answers/tags/116/azure-migrate/",
"articles/modeling-simulation-workbench/NO-QA-TAG-USE-GLOBAL/": "",
"articles/nat-gateway/**/*": "https://learn.microsoft.com/answers/tags/445/azure-nat-gateway/",
"articles/network-function-manager/**/*": "https://learn.microsoft.com/answers/tags/500/network-function-manager/",
"articles/network-watcher/**/*": "https://learn.microsoft.com/answers/tags/183/azure-network-watcher/",
"articles/networking/**/*": "https://learn.microsoft.com/answers/tags/143/azure-virtual-network",
"articles/notification-hubs/**/*": "https://learn.microsoft.com/answers/tags/12/azure-notification-hubs/",
"articles/object-anchors/**/*": "https://learn.microsoft.com/answers/tags/107/azure-object-anchors/",
"articles/openshift/**/*": "https://learn.microsoft.com/answers/tags/137/azure-redhat-openshift/",
"articles/operational-excellence/NO-QA-TAG-USE-GLOBAL/": "",
"articles/operator-5g-core/NO-QA-TAG-USE-GLOBAL/": "",
"articles/operator-call-protection/NO-QA-TAG-USE-GLOBAL/": "",
"articles/operator-insights/NO-QA-TAG-USE-GLOBAL/": "",
"articles/operator-nexus/NO-QA-TAG-USE-GLOBAL/": "",
"articles/operator-service-manager/NO-QA-TAG-USE-GLOBAL/": "",
"articles/oracle/**/*": "https://learn.microsoft.com/answers/tags/94/azure-virtual-machines/",
"articles/orbital/NO-QA-TAG-USE-GLOBAL/": "",
"articles/partner-solutions/NO-QA-TAG-USE-GLOBAL/": "",
"articles/peering-service/NO-QA-TAG-USE-GLOBAL/": "",
"articles/playwright-testing/**/*": "https://aka.ms/mpt/feedback",
"articles/private-5g-core/NO-QA-TAG-USE-GLOBAL/": "",
"articles/private-link/**/*": "https://learn.microsoft.com/answers/tags/180/azure-private-link/",
"articles/private-multi-access-edge-compute-mec/NO-QA-TAG-USE-GLOBAL/": "",
"articles/programmable-connectivity/NO-QA-TAG-USE-GLOBAL/": "",
"articles/public-multi-access-edge-compute-mec/NO-QA-TAG-USE-GLOBAL/": "",
"articles/quotas/NO-QA-TAG-USE-GLOBAL/": "",
"articles/reliability/NO-QA-TAG-USE-GLOBAL/": "",
"articles/remote-rendering/**/*": "https://learn.microsoft.com/answers/tags/46/azure-remote-rendering/",
"articles/resource-mover/**/*": "https://learn.microsoft.com/answers/tags/265/azure-resource-mover/",
"articles/role-based-access-control/**/*": "https://learn.microsoft.com/answers/tags/189/azure-rbac/",
"articles/route-server/**/*": "https://learn.microsoft.com/answers/tags/501/route-server/",
"articles/sap/**/*": "https://learn.microsoft.com/answers/tags/112/azure-sap/",
"articles/scheduler/**/*": "https://learn.microsoft.com/answers/tags/134/azure-logic-apps/",
"articles/security/NO-QA-TAG-USE-GLOBAL/": "",
"articles/sentinel/**/*": "https://learn.microsoft.com/answers/tags/423/microsoft-sentinel/",
"articles/service-bus-messaging/**/*": "https://learn.microsoft.com/answers/tags/73/azure-service-bus/",
"articles/service-connector/NO-QA-TAG-USE-GLOBAL/": "",
"articles/service-health/**/*": "https://learn.microsoft.com/answers/tags/20/azure-monitor",
"articles/site-recovery/**/*": "https://learn.microsoft.com/answers/tags/227/azure-site-recovery/",
"articles/site-reliability-engineering/NO-QA-TAG-USE-GLOBAL/": "",
"articles/spatial-anchors/**/*": "https://learn.microsoft.com/answers/tags/26/azure-spatial-anchors/",
"articles/spring-apps/**/*": "https://learn.microsoft.com/answers/tags/424/azure-spring-apps/",
"articles/sql-server-stretch-database/**/*": "hhttps://learn.microsoft.com/answers/tags/191/sql-server",
"articles/static-web-apps/**/*": "https://learn.microsoft.com/answers/tags/448/static-web-apps/",
"articles/storage-actions/**/*": "https://learn.microsoft.com/answers/tags/125/azure-blob-storage",
"articles/storage-mover/**/*": "https://learn.microsoft.com/answers/tags/98/azure-storage-accounts",
"articles/storage/**/*": "https://learn.microsoft.com/answers/tags/125/azure-blob-storage/",
"articles/storage/blobs/**/*": "https://learn.microsoft.com/answers/tags/125/azure-blob-storage/",
"articles/storage/elastic-san/**/*": "https://learn.microsoft.com/answers/tags/433/elastic-san/",
"articles/storage/queues/**/*": "https://learn.microsoft.com/answers/tags/185/azure-queue-storage/",
"articles/storage/storage-explorer/**/*": "https://learn.microsoft.com/answers/tags/93/azure-storage-explorer/",
"articles/storage/tables/**/*": "https://learn.microsoft.com/answers/tags/27/azure-table-storage/",
"articles/storsimple/**/*": "https://learn.microsoft.com/answers/tags/229/azure-storsimple/",
"articles/stream-analytics/**/*": "https://learn.microsoft.com/answers/tags/179/azure-stream-analytics/",
"articles/synapse-analytics/**/*": "https://learn.microsoft.com/answers/tags/167/azure-synapse-analytics/",
"articles/time-series-insights/**/*": "https://learn.microsoft.com/answers/tags/188/azure-time-series-insights/",
"articles/traffic-manager/**/*": "https://learn.microsoft.com/answers/tags/103/azure-traffic-manager/",
"articles/trusted-signing/**/*": "https://learn.microsoft.com/answers/tags/509/trusted-signing/",
"articles/update-manager/**/*": "https://learn.microsoft.com/answers/tags/452/update-manager/",
"articles/virtual-desktop/**/*": "https://learn.microsoft.com/answers/tags/221/azure-virtual-desktop/",
"articles/virtual-network-manager/**/*": "https://learn.microsoft.com/answers/tags/143/azure-virtual-network/",
"articles/virtual-network/**/*": "https://learn.microsoft.com/answers/tags/143/azure-virtual-network/",
"articles/virtual-wan/**/*": "https://learn.microsoft.com/answers/tags/34/azure-virtual-wan/",
"articles/vmware-cloudsimple/**/*": "https://learn.microsoft.com/answers/tags/117/azure-vmware-solution/",
"articles/vpn-gateway/**/*": "https://learn.microsoft.com/answers/tags/102/azure-vpn-gateway/",
"articles/web-application-firewall/**/*": "https://learn.microsoft.com/answers/tags/192/azure-web-application-firewall/"
},
"feedback_help_link_type": {
"**/*": "get-help-at-qna",
"articles/defender-for-iot/**/*": "ask-the-community",
"articles/deployment-environments/**/*": "ask-the-community",
"articles/dev-box/**/*": "ask-the-community",
"articles/playwright-testing/**/*": "ask-the-community"
},
"learn_banner_products": {
"articles/**/*.md": [
"azure"
],
"articles/azure-portal/**/*.md": [
"azure-portal"
],
"articles/azure-functions/**/*.md": [
"azure-functions"
]
},
"manager": {
"articles/app-service-mobile/**/*.md": "crdun",
"articles/automanage/*md": "akashdubey",
"articles/azure-arc/servers/**/*.md": "rayoflores",
"articles/azure-functions/**/*.md": "susanpotter",
"articles/azure-monitor/**/*.md": "orspodek",
"articles/azure-portal/**/*.md": "rayoflores",
"articles/azure-sql-edge/**/*.md" : "jroth",
"articles/azure-vmware/**/*.md": "rayoflores",
"articles/baremetal-infrastructure/**/*.md": "akashdubey",
"articles/batch/**/*.md": "akashdubey",
"articles/business-process-tracking/*.md": "susanpotter",
"articles/cloud-shell/**/*.md": "jasongroce",
"articles/connectors/*.md": "susanpotter",
"articles/defender-for-iot/device-builders/*.md": "raynew",
"articles/defender-for-iot/organizations/*.md": "raynew",
"articles/defender-for-iot/organizations/**/*.md": "raynew",
"articles/deployment-environments/**/*.md": "mijacobs",
"articles/dev-box/**/*.md": "mijacobs",
"articles/devtest-labs/**/*.md": "mijacobs",
"articles/integration-environments/*.md": "susanpotter",
"articles/lab-services/**/*.md": "mijacobs",
"articles/logic-apps/*.md": "susanpotter",
"articles/logic-apps/**/*.md": "susanpotter",
"articles/playwright-testing/**/*.md": "mijacobs",
"articles/quotas/**/*.md": "rayoflores",
"articles/remote-rendering/**/*.md": "jlyons",
"articles/virtual-desktop/**/*.md": "eliotgra",
"articles/virtual-desktop/**/*.yml": "eliotgra"
},
"ms.author": {
"articles/advisor/*.md": "ikhapova",
"articles/ansible/**/*.md": "tarcher",
"articles/api-center/**/*.md": "dlepow",
"articles/app-service-mobile/**/*.md": "emalani",
"articles/app-service/containers/*.md": "cephalin",
"articles/app-service/environment/*.md": "madsd",
"articles/app-service/scripts/*.md": "cephalin",
"articles/app-spaces/*.md": "msangapu",
"articles/automanage/*md": "orspodek",
"articles/automation/**/*.md": "sudhirsneha",
"articles/azure-arc/**/*.md": "jenhayes",
"articles/azure-arc/servers/**/*.md": "johnmarc",
"articles/azure-cache-for-redis/**/*.md": "franlanglois",
"articles/azure-cache-for-redis/**/*.yml": "franlanglois",
"articles/azure-fluid-relay/**/*.md": "jken",
"articles/azure-functions/**/*.md": "glenga",
"articles/azure-government/**/*.md": "eliotgra",
"articles/azure-monitor/*.*": "bwren",
"articles/azure-monitor/agents/*.md": "guywild",
"articles/azure-monitor/alerts/*.md": "abbyweisberg",
"articles/azure-monitor/app/*.md": "aaronmax",
"articles/azure-monitor/autoscale/*.md": "edbaynash",
"articles/azure-monitor/change/*.md": "hannahhunter",
"articles/azure-monitor/containers/*.md": "bwren",
"articles/azure-monitor/essentials/*.md": "edbaynash",
"articles/azure-monitor/insights/*.md": "robb",
"articles/azure-monitor/insights/container-insights*.md": "bwren",
"articles/azure-monitor/logs/*.md": "guywild",
"articles/azure-monitor/profiler/*.md": "hannahhunter",
"articles/azure-monitor/snapshot-debugger/*.md": "hannahhunter",
"articles/azure-monitor/visualize/**/*.md": "abbyweisberg",
"articles/azure-monitor/vm/*.md": "bwren",
"articles/azure-percept/*.md": "ngt",
"articles/azure-percept/*.yml": "ngt",
"articles/azure-portal/**/*.md": "jenhayes",
"articles/azure-portal/**/*.yml": "jenhayes",
"articles/azure-relay/*.md": "spelluru",
"articles/azure-resource-manager/*.md": "jgao",
"articles/azure-resource-manager/bicep/**/*.md": "jgao",
"articles/azure-resource-manager/custom-providers/**/*.md": "evanhi",
"articles/azure-resource-manager/managed-applications/**/*.md": "evanhi",
"articles/azure-resource-manager/management/**/*.md": "jgao",
"articles/azure-resource-manager/templates/**/*.md": "jgao",
"articles/azure-resource-manager/troubleshooting/**/*.md": "jgao",
"articles/azure-video-analyzer/video-analyzer-docs/*.md": "juliako",
"articles/azure-video-analyzer/video-analyzer-docs/cloud/*.md": "juliako",
"articles/azure-video-analyzer/video-analyzer-docs/edge/*.md": "juliako",
"articles/azure-video-indexer/*.md": "Juliako",
"articles/azure-vmware/**/*.md": "jacobjaygbay",
"articles/backup/**/*.md": "v-abhmallick",
"articles/backup/**/*.yml": "AbhishekMallick-MS",
"articles/baremetal-infrastructure/**/*.md": "kalyank",
"articles/batch/**/*.md": "padmalathas",
"articles/blockchain/**/*.md": "patricka",
"articles/business-process-tracking/*.md": "estfan",
"articles/business-process-tracking/*.yml": "estfan",
"articles/chef/**/*.md": "tarcher",
"articles/cloud-shell/**/*.md": "sewhee",
"articles/connectors/*.md": "estfan",
"articles/container-registry/**/*.md": "tejaswikolli",
"articles/data-catalog/*.md": "whhender",
"articles/defender-for-iot/device-builders/*.md": "lwainstein",
"articles/defender-for-iot/organizations/*.md": "lwainstein",
"articles/defender-for-iot/organizations/**/*.md": "lwainstein",
"articles/deployment-environments/**/*.md": "rosemalcolm",
"articles/dev-box/**/*.md": "rosemalcolm",
"articles/dev-spaces/**/*.md": "zarhoads",
"articles/devtest-labs/**/*.md": "rosemalcolm",
"articles/event-grid/**/*.md": "spelluru",
"articles/event-hubs/*.md": "spelluru",
"articles/governance/*.md": "davidsmatlak",
"articles/governance/blueprints/**/*.md": "jgao",
"articles/governance/machine-configuration/**/*.md": "mlombardi",
"articles/governance/management-groups/**/*.md": "rithorn",
"articles/governance/policy/**/*.md": "davidsmatlak",
"articles/governance/resource-graph/**/*.md": "daphnema",
"articles/hdinsight-aks/*.md": "v-sreeiyer",
"articles/hdinsight-aks/*.yml": "v-sreeiyer",
"articles/hdinsight-aks/**/*.md": "v-sreeiyer",
"articles/hdinsight/*.md": "v-sreeiyer",
"articles/hdinsight/*.yml": "v-sreeiyer",
"articles/hdinsight/**/*.md": "v-sreeiyer",
"articles/integration-environments/*.md": "estfan",
"articles/integration-environments/*.yml": "estfan",
"articles/jenkins/**/*.md": "tarcher",
"articles/lab-services/**/*.md": "enewman",
"articles/lighthouse/**/*.md": "jenhayes",
"articles/logic-apps/*.md": "estfan",
"articles/logic-apps/*.yml": "estfan",
"articles/logic-apps/**/*.md": "estfan",
"articles/media-services/*.md": "juliako",
"articles/media-services/**/*.md": "juliako",
"articles/migrate/*.md": "sudhirsneha",
"articles/notebooks/*.md": "joshuapa",
"articles/openshift/**/*.md": "johnmarc",
"articles/openshift/**/*.yml": "johnmarc",
"articles/operator-insights/**/*.md": "rdunstan",
"articles/operator-insights/**/*.yml": "rdunstan",
"articles/partner-solutions/**/*.md": "kkendrick",
"articles/partner-solutions/**/*.yml": "kkendrick",
"articles/partner-solutions/split-experimentation/**/*.md":"malev",
"articles/partner-solutions/split-experimentation/**/*.yml":"malev",
"articles/playwright-testing/**/*.md": "vanshsingh",
"articles/quotas/**/*.md": "jenhayes",
"articles/quotas/**/*.yml": "jenhayes",
"articles/service-bus-messaging/*.md": "spelluru",
"articles/service-health/*.md": "robb",
"articles/site-recovery/*.md": "jsuri",
"articles/stream-analytics/*.md": "ali",
"articles/terraform/**/*.md": "tarcher"
},
"ms.collection": {
"articles/application-gateway/*.md": "networking",
"articles/application-gateway/*.yml": "networking",
"articles/bastion/*.md": "networking",
"articles/bastion/*.yml": "networking",
"articles/cdn/*.md": "networking",
"articles/cdn/*.yml": "networking",
"articles/copilot/*.md": "ce-skilling-ai-copilot",
"articles/copilot/*.yml": "ce-skilling-ai-copilot",
"articles/ddos-protection/*.md": "networking",
"articles/ddos-protection/*.yml": "networking",
"articles/dns/*.md": "networking",
"articles/dns/*.yml": "networking",
"articles/expressroute/*.md": "networking",
"articles/expressroute/*.yml": "networking",
"articles/extended-zones/*.md": "networking",
"articles/extended-zones/*.yml": "networking",
"articles/firewall-manager/*.md": "networking",
"articles/firewall-manager/*.yml": "networking",
"articles/firewall/*.md": "networking",
"articles/firewall/*.yml": "networking",
"articles/frontdoor/*.md": "networking",
"articles/frontdoor/*.yml": "networking",
"articles/internet-analyzer/*.md": "networking",
"articles/internet-analyzer/*.yml": "networking",
"articles/internet-peering/*.md": "networking",
"articles/internet-peering/*.yml": "networking",
"articles/load-balancer/*.md": "networking",
"articles/load-balancer/*.yml": "networking",
"articles/network-watcher/*.md": "networking",
"articles/network-watcher/*.yml": "networking",
"articles/networking/*.md": "networking",
"articles/networking/*.yml": "networking",
"articles/peering-service/*.md": "networking",
"articles/peering-service/*.yml": "networking",
"articles/private-link/*.md": "networking",
"articles/private-link/*.yml": "networking",
"articles/traffic-manager/*.md": "networking",
"articles/traffic-manager/*.yml": "networking",
"articles/virtual-network/*.md": "networking",
"articles/virtual-network/*.yml": "networking",
"articles/virtual-wan/*.md": "networking",
"articles/virtual-wan/*.yml": "networking",
"articles/vpn-gateway/*.md": "networking",
"articles/vpn-gateway/*.yml": "networking",
"articles/web-application-firewall/*.md": "networking",
"articles/web-application-firewall/*.yml": "anetworking"
},
"ms.service": {
"articles/advisor/**/*.md": "azure-advisor",
"articles/ansible/**/*.md": "ansible",
"articles/app-service-mobile/**/*.md": "app-service-mobile",
"articles/app-service/**/*.md": "azure-app-service",
"articles/app-spaces/**/*.md": "app-spaces",
"articles/automation/**/*.md": "azure-automation",
"articles/azure-arc/**/*.md": "azure-arc",
"articles/azure-cache-for-redis/**/*.md": "azure-cache-redis",
"articles/azure-cache-for-redis/**/*.yml": "azure-cache-redis",
"articles/azure-fluid-relay/**/*.md": "azure-fluid",
"articles/azure-functions/**/*.md": "azure-functions",
"articles/azure-government/**/*.md": "azure-government",
"articles/azure-monitor/**/*.md": "azure-monitor",
"articles/azure-portal/**/*.md": "azure-portal",
"articles/azure-portal/supportability/**/*.md": "azure-supportability",
"articles/azure-relay/**/*": "azure-relay",
"articles/azure-resource-manager/**/*.md": "azure-resource-manager",
"articles/azure-resource-manager/custom-providers/**/*.md": "azure-custom-providers",
"articles/azure-resource-manager/managed-applications/**/*.md": "azure-managed-applications",
"articles/azure-video-analyzer/video-analyzer-docs/*.md": "azure-video-analyzer",
"articles/azure-video-analyzer/video-analyzer-docs/cloud/*.md": "azure-video-analyzer",
"articles/azure-video-analyzer/video-analyzer-docs/edge/*.md": "azure-video-analyzer",
"articles/azure-video-indexer/*.md": "azure-video-indexer",
"articles/azure-vmware/**/*.md": "azure-vmware",
"articles/backup/**/*.md": "azure-backup",
"articles/baremetal-infrastructure/**/*.md": "azure-baremetal-infrastructure",
"articles/batch/**/*.md": "azure-batch",
"articles/blockchain/**/*.md": "azure-blockchain",
"articles/business-process-tracking/*.md": "azure-business-process-tracking",
"articles/chef/**/*.md": "chef",
"articles/cloud-shell/**/*.md": "azure-cloud-shell",
"articles/connectors/*.md": "azure-logic-apps",
"articles/container-registry/**/*.md": "azure-container-registry",
"articles/data-factory/**/*": "azure-data-factory",
"articles/defender-for-iot/device-builders/*.md": "defender-for-iot",
"articles/defender-for-iot/organizations/*.md": "defender-for-iot",
"articles/defender-for-iot/organizations/**/*.md": "defender-for-iot",
"articles/deployment-environments/**/*.md": "azure-deployment-environments",
"articles/dev-box/**/*.md": "dev-box",
"articles/dev-spaces/**/*.md": "azure-dev-spaces",
"articles/devtest-labs/**/*.md": "azure-devtest-labs",
"articles/event-grid/**/*": "azure-event-grid",
"articles/event-hubs/**/*": "azure-event-hubs",
"articles/governance/*.md": "azure-policy",
"articles/governance/blueprints/**/*.md": "azure-blueprints",
"articles/governance/machine-configuration/**/*.md": "machine-configuration",
"articles/governance/management-groups/**/*.md": "azure",
"articles/governance/policy/**/*.md": "azure-policy",
"articles/governance/resource-graph/**/*.md": "azure-resource-graph",
"articles/hdinsight-aks/**/*.md": "azure-hdinsight-on-aks",
"articles/industry/**/*.md": "azure-industry",
"articles/integration-environments/*.md": "azure-integration-environments",
"articles/iot-operations/**/*.md": "azure-iot-operations",
"articles/iot-operations/**/*.yml": "azure-iot-operations",
"articles/jenkins/**/*.md": "jenkins",
"articles/lab-services/**/*.md": "azure-lab-services",
"articles/lighthouse/**/*.md": "azure-lighthouse",
"articles/logic-apps/*.md": "azure-logic-apps",
"articles/logic-apps/**/*.md": "azure-logic-apps",
"articles/media-services/*.md": "azure-media-services",
"articles/media-services/**/*.md": "azure-media-services",
"articles/migrate/*.md": "azure-migrate",
"articles/notebooks/*.md": "azure-notebooks",
"articles/object-anchors/**/*.md": "azure-object-anchors",
"articles/openshift/**/*.md": "azure-redhat-openshift",
"articles/partner-solutions/**/*.md": "partner-services",
"articles/partner-solutions/**/*.yml": "partner-services",
"articles/playwright-testing/**/*.md": "playwright-testing",
"articles/quotas/**/*.md": "azure-quotas",
"articles/remote-rendering/**/*.md": "azure-remote-rendering",
"articles/sentinel/**/*.md": "microsoft-sentinel",
"articles/service-bus-messaging/**/*": "azure-service-bus",
"articles/service-health/**/*.md": "azure-service-health",
"articles/site-recovery/*.md": "azure-site-recovery",
"articles/synapse-analytics/**/*": "azure-synapse-analytics",
"articles/terraform/**/*.md": "terraform",
"articles/virtual-desktop/**/*.md": "azure-virtual-desktop",
"articles/virtual-desktop/**/*.yml": "azure-virtual-desktop"
},
"ms.reviewer": {
"articles/advisor/*.md": "ikhapova"
},
"search.appverid": {
"articles/private-5g-core/**/*.md": "ap5gc",
"articles/sentinel/**/*.md": "met150",
"articles/sentinel/**/*yml": "met150"
},
"ms.subservice": {
"articles/azure-arc/kubernetes/**/*.md": "azure-arc-kubernetes",
"articles/azure-arc/servers/**/*.md": "azure-arc-servers",
"articles/azure-functions/durable/**/*.md": "durable",
"articles/azure-monitor/*.md": "general",
"articles/azure-monitor/agents/**/*.md": "agents",
"articles/azure-monitor/alerts/**/*.md": "alerts",
"articles/azure-monitor/app/**/*.md": "application-insights",
"articles/azure-monitor/autoscale/**/*.md": "autoscale",
"articles/azure-monitor/change/*.md": "change-analysis",
"articles/azure-monitor/containers/**/*.md": "containers",
"articles/azure-monitor/essentials/**/*.md": "essentials",
"articles/azure-monitor/insights/**/*.md": "insights",
"articles/azure-monitor/logs/**/*.md": "logs",
"articles/azure-monitor/profiler/*.md": "profiler",
"articles/azure-monitor/snapshot-debugger/*.md": "snapshot-debugger",
"articles/azure-monitor/visualize/**/*.md": "visualizations",
"articles/azure-monitor/vm/**/*.md": "virtual-machines",
"articles/azure-resource-manager/bicep/**/*.md": "bicep",
"articles/azure-resource-manager/management/**/*.md": "management",
"articles/azure-resource-manager/templates/**/*.md": "templates",
"articles/azure-resource-manager/troubleshooting/**/*.md": "troubleshooting",
"articles/defender-for-iot/device-builders/*.md": "device-builders",
"articles/media-services/azure-media-player/*.md": "media-player",
"articles/media-services/latest/*.md": "rest-v3",
"articles/media-services/live-video-analytics-edge/*.md": "lva-edge",
"articles/media-services/previous/*.md": "rest-v2",
"articles/media-services/video-indexer/*.md": "video-indexer",
"articles/partner-solutions/apache-kafka-confluent-cloud/**/*.md": "confluent",
"articles/partner-solutions/apache-kafka-confluent-cloud/**/*.yml": "confluent",
"articles/partner-solutions/astronomer/**/*.md": "astronomer",
"articles/partner-solutions/astronomer/**/*.yml": "astronomer",
"articles/partner-solutions/datadog/**/*.md": "datadog",
"articles/partner-solutions/datadog/**/*.yml": "datadog",
"articles/partner-solutions/dynatrace/**/*.md": "dynatrace",
"articles/partner-solutions/dynatrace/**/*.yml": "dynatrace",
"articles/partner-solutions/elastic/**/*.md": "elastic",
"articles/partner-solutions/elastic/**/*.yml": "elastic",
"articles/partner-solutions/informatica/**/*.md": "informatica",
"articles/partner-solutions/informatica/**/*.yml": "informatica",
"articles/partner-solutions/logzio/**/*.md": "logzio",
"articles/partner-solutions/logzio/**/*.yml": "logzio",
"articles/partner-solutions/new-relic/**/*.md": "new-relic",
"articles/partner-solutions/new-relic/**/*.yml": "new-relic",
"articles/partner-solutions/nginx/**/*.md": "nginx",
"articles/partner-solutions/nginx/**/*.yml": "nginx",
"articles/partner-solutions/palo-alto/**/*.md": "palo-alto",
"articles/partner-solutions/palo-alto/**/*.yml": "palo-alto",
"articles/partner-solutions/qumulo/**/*.md": "qumulo",