forked from MicrosoftDocs/azure-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docfx.json
1814 lines (1814 loc) · 118 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/**",
"ai-services/document-intelligence/**",
"**/_themes/**",
"**/includes/**",
"**/obj/**",
"**/*.graffle",
"machine-learning/**",
"machine-learning/v1/**"
]
},
{
"group": "grp-iot-edge",
"src": "articles/iot-edge",
"dest": "./iot-edge/",
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"**/_themes/**",
"**/includes/**",
"**/obj/**"
]
},
{
"group": "grp-document-intelligence",
"src": "articles/ai-services/document-intelligence",
"dest": "./ai-services/document-intelligence/",
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"**/_themes/**",
"**/includes/**",
"**/obj/**"
]
},
{
"group": "grp-machine-learning",
"src": "articles/machine-learning",
"dest": "./machine-learning",
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"**/_themes/**",
"**/includes/**",
"**/obj/**",
"**/v1/**",
"**/v-fake/**"
]
},
{
"group": "grp-machine-learningv1",
"src": "articles/machine-learning/v1",
"dest": "./machine-learning",
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"**/_themes/**",
"**/includes/**",
"**/obj/**"
]
},
{
"group": "grp-machine-learningv1",
"src": "articles/machine-learning/v-fake",
"dest": "./machine-learning/v1",
"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/**",
"ai-services/document-intelligence/**",
"**/_themes/**",
"**/obj/**",
"machine-learning/**",
"machine-learning/v1/**"
]
},
{
"group": "grp-iot-edge",
"src": "articles/iot-edge",
"dest": "./iot-edge/",
"files": [
"**/*.gif",
"**/*.jpeg",
"**/*.jpg",
"**/*.png",
"**/*.svg"
],
"exclude": [
"**/_themes/**",
"**/obj/**"
]
},
{
"group": "grp-document-intelligence",
"src": "articles/ai-services/document-intelligence",
"dest": "./ai-services/document-intelligence/",
"files": [
"**/*.gif",
"**/*.jpeg",
"**/*.jpg",
"**/*.png",
"**/*.svg"
],
"exclude": [
"**/_themes/**",
"**/obj/**"
]
},
{
"group": "grp-machine-learning",
"src": "articles/machine-learning",
"dest": "./machine-learning/",
"files": [
"**/*.gif",
"**/*.jpeg",
"**/*.jpg",
"**/*.png",
"**/*.svg"
],
"exclude": [
"**/_themes/**",
"**/obj/**",
"**/v1/**",
"**/v-fake/**"
]
},
{
"group": "grp-machine-learningv1",
"src": "articles/machine-learning/v1",
"dest": "./machine-learning/",
"files": [
"**/*.gif",
"**/*.jpeg",
"**/*.jpg",
"**/*.png",
"**/*.svg"
],
"exclude": [
"**/_themes/**",
"**/obj/**"
]
},
{
"group": "grp-machine-learningv1",
"src": "articles/machine-learning/v-fake",
"dest": "./machine-learning/v1",
"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"
},
"grp-document-intelligence": {
"dest": "destdocumentintelligence",
"moniker_range": ">=doc-intel-2.1.0"
},
"grp-machine-learning": {
"dest": "destmachinelearning",
"moniker_range": "azureml-api-2 || azureml-api-1"
},
"grp-machine-learningv1": {
"dest": "destmachinelearningv1",
"moniker_range": "azureml-api-1"
}
},
"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"
]
},
"fileMetadata": {
"adobe-target": {
"articles/azure-functions/*": true,
"articles/container-apps/*": true,
"articles/cosmos-db/*": true,
"articles/app-service/*": true,
"articles/app-spaces/*": true,
"articles/static-web-apps/*": true,
"articles/aks/*": true,
"articles/kubernetes-fleet/*": true,
"articles/api-management/*": true,
"articles/messaging-services/*": true,
"articles/defender-for-cloud/*": true,
"articles/azure-monitor/*": true,
"articles/key-vault/*": true,
"articles/network-watcher/*": true
},
"archive_url": {
"articles/iot-edge/*": "/previous-versions/azure/iot-edge/"
},
"author": {
"articles/advisor/*.md": "ikhapova",
"articles/aks/**/*.md": "schaffererin",
"articles/ansible/**/*.md": "TomArcherMsft",
"articles/app-service/containers/*.md": "cephalin",
"articles/app-service/environment/*.md": "madsd",
"articles/app-service/scripts/*.md": "cephalin",
"articles/app-service-mobile/**/*.md": "elamalani",
"articles/app-spaces/*.md": "msangapu-msft",
"articles/automanage/*md": "johnmarc",
"articles/automation/**/*.md": "SnehaSudhirG",
"articles/update-center/**/*.md": "SnehaSudhirG",
"articles/azure-arc/**/*.md": "JnHs",
"articles/azure-arc/servers/**/*.md": "johnmarco",
"articles/azure-functions/**/*.md": "ggailey777",
"articles/azure-fluid-relay/**/*.md": "GrantMeStrength",
"articles/azure-government/**/*.md": "EliotSeattle",
"articles/azure-monitor/containers/**/*.md": "bwren",
"articles/azure-monitor/insights/container-insights*.md": "bwren",
"articles/azure-monitor/log-query/*.md": "bwren",
"articles/azure-monitor/app/*.md": "AaronMaxwell",
"articles/azure-monitor/agents/*.md": "guywi-ms",
"articles/azure-monitor/alerts/*.md": "AbbyMSFT",
"articles/azure-monitor/autoscale/*.md": "EdB-MSFT",
"articles/azure-monitor/change/*.md": "hhunter-ms",
"articles/azure-monitor/containers/*.md": "bwren",
"articles/azure-monitor/essentials/*.md": "EdB-MSFT",
"articles/azure-monitor/*.md": "bwren",
"articles/azure-monitor/insights/*.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/custom-providers/**/*.md": "davidsmatlak",
"articles/azure-resource-manager/managed-applications/**/*.md": "davidsmatlak",
"articles/azure-resource-manager/management/**/*.md": "mumian",
"articles/azure-resource-manager/templates/**/*.md": "mumian",
"articles/azure-resource-manager/bicep/**/*.md": "mumian",
"articles/azure-resource-manager/troubleshooting/**/*.md": "mumian",
"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/sap/**/*.md": "lauradolan",
"articles/chef/**/*.md": "TomArcherMsft",
"articles/ai-studio/**/*.md": "eric-urban",
"articles/ai-services/**/*.md": "eric-urban",
"articles/ai-services/anomaly-detector/**/*.md": "mrbullwinkle",
"articles/ai-services/computer-vision/**/*.md": "PatrickFarley",
"articles/ai-services/content-moderator/**/*.md": "PatrickFarley",
"articles/ai-services/custom-vision-service/**/*.md": "PatrickFarley",
"articles/ai-services/face/**/*.md": "PatrickFarley",
"articles/ai-services/document-intelligence/**/*.md": "laujan",
"articles/ai-services/luis/**/*.md": "aahill",
"articles/ai-services/metrics-advisor/**/*.md": "mrbullwinkle",
"articles/ai-services/personalizer/**/*.md": "jcodella",
"articles/ai-services/qnamaker/**/*.md": "jboback",
"articles/ai-services/openai/**/*.md": "mrbullwinkle",
"articles/ai-services/speech-service/**/*.md": "eric-urban",
"articles/ai-services/language-service/**/*.md": "aahill",
"articles/ai-services/translator/**/*.md": "laujan",
"articles/business-process-tracking/*.md": "ecfan",
"articles/business-process-tracking/*.yml": "ecfan",
"articles/cloud-shell/**/*.md": "sdwheeler",
"articles/connectors/*.md": "ecfan",
"articles/container-instances/**/*.md": "macolso",
"articles/container-registry/**/*.md": "tejaswikolli-web",
"articles/data-catalog/*.md": "whhender",
"articles/data-lake-analytics/*.md": "MikeRys",
"articles/defender-for-cloud/*.md": "dcurwin",
"articles/defender-for-cloud/*.yml": "dcurwin",
"articles/defender-for-iot/organizations/*.md": "limwainstein",
"articles/defender-for-iot/organizations/**/*.md": "limwainstein",
"articles/defender-for-iot/device-builders/*.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/*.md": "sreekzz",
"articles/hdinsight/*.yml": "sreekzz",
"articles/hdinsight/**/*.md": "sreekzz",
"articles/hdinsight-aks/*.md": "sreekzz",
"articles/hdinsight-aks/*.yml": "sreekzz",
"articles/hdinsight-aks/**/*.md": "sreekzz",
"articles/integration-environments/*.md": "ecfan",
"articles/integration-environments/*.yml": "ecfan",
"articles/jenkins/**/*.md": "TomArcherMsft",
"articles/lab-services/**/*.md": "emaher",
"articles/playwright-testing/**/*.md": "vvs11",
"articles/lighthouse/**/*.md": "JnHs",
"articles/logic-apps/*.md": "ecfan",
"articles/logic-apps/**/.md": "ecfan",
"articles/logic-apps/*.yml": "ecfan",
"articles/media-services/**/**/*.md": "Juliako",
"articles/media-services/**/*.md": "Juliako",
"articles/search/*.md": "HeidiSteen",
"articles/notebooks/*.md": "j-martens",
"articles/open-datasets/**/*.md": "shubhirajMsft",
"articles/open-datasets/**/*.yml": "shubhirajMsft",
"articles/openshift/**/*.md": "johnmarco",
"articles/openshift/**/*.yml": "johnmarco",
"articles/operator-insights/**/*.md": "rcdun",
"articles/operator-insights/**/*.yml": "rcdun",
"articles/partner-solutions/**/*.md": "flang-msft",
"articles/partner-solutions/**/*.yml": "flang-msft",
"articles/partner-solutions/split-experimentation/**/*.md": "maud-lv",
"articles/partner-solutions/split-experimentation/**/*.yml": "maud-lv",
"articles/quotas/**/*.md": "JnHs",
"articles/quotas/**/*.yml": "JnHs",
"articles/service-bus-messaging/*.md": "spelluru",
"articles/service-fabric/*.md": "sukanyamsft",
"articles/service-health/*.md": "rboucher",
"articles/site-recovery/*.md": "ankitaduttaMSFT",
"articles/stream-analytics/*.md": "alicialimicrosoft",
"articles/terraform/**/*.md": "TomArcherMsft",
"articles/virtual-machines/*.md": "ju-shim",
"articles/virtual-machines/linux/*.md": "ju-shim",
"articles/virtual-machines/windows/*.md": "ju-shim",
"articles/virtual-machines-scale-sets/*.md": "ju-shim",
"articles/azure-video-indexer/*.md": "Juliako",
"articles/azure-video-analyzer/video-analyzer-docs/*.md": "Juliako",
"articles/azure-video-analyzer/video-analyzer-docs/edge/*.md": "Juliako",
"articles/azure-video-analyzer/video-analyzer-docs/cloud/*.md": "Juliako",
"articles/virtual-network-manager/*.yml": "mbender-ms",
"articles/virtual-network-manager/*.md": "mbender-ms",
"articles/load-balancer/*.yml": "mbender-ms",
"articles/load-balancer/*.md": "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/aks/**/*.md": "https://feedback.azure.com/d365community/forum/aabe212a-f724-ec11-b6e6-000d3a4f0da0",
"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/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/app-service/**/*.md": "https://feedback.azure.com/d365community/forum/b09330d1-c625-ec11-b6e6-000d3a4f0f1c",
"articles/app-service-mobile/**/*.md": "https://github.com/Azure/azure-mobile-apps/issues",
"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-arc/**/*.md": "https://feedback.azure.com/d365community/forum/5c778dec-0625-ec11-b6e6-000d3a4f0858",
"articles/azure-app-configuration/**/*.md": "https://github.com/Azure/AppConfiguration/issues",
"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-percept/**/*.md": "https://feedback.azure.com/d365community/forum/4a4c60f9-4e4d-ec11-8f8e-0022481f2bb0",
"articles/azure-monitor/platform/**/alert-*.md": "https://feedback.azure.com/d365community/forum/3887dc70-2025-ec11-b6e6-000d3a4f09d0",
"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-sql/*.md": "https://feedback.azure.com/d365community/forum/04fe6ee0-3b25-ec11-b6e6-000d3a4f0da0",
"articles/azure-sql/database/**/*.md": "https://feedback.azure.com/d365community/forum/04fe6ee0-3b25-ec11-b6e6-000d3a4f0da0",
"articles/azure-sql/virtual-machines/**/*.md": "https://feedback.azure.com/d365community/forum/04fe6ee0-3b25-ec11-b6e6-000d3a4f0da0",
"articles/azure-sql/managed-instance/**/*.md": "https://feedback.azure.com/d365community/forum/a99f7006-3425-ec11-b6e6-000d3a4f0f84",
"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/**/*.md": "https://feedback.azure.com/d365community/forum/7462aa60-0c25-ec11-b6e6-000d3a4f07b8",
"articles/batch-ai/**/*.md": "https://feedback.azure.com/d365community/forum/31e95054-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/cloudfoundry/**/*.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/ai-services/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/Anomaly-Detector/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=6c8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/Computer-vision/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=7a8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/Content-Moderator/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=6c8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/Custom-Vision-Service/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=7a8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/Face/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=7a8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/document-intelligence/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=7a8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/Immersive-Reader/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=449a6fba-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/LUIS/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/metrics-advisor/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=6c8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/QnAMaker/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=449a6fba-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/Personalizer/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=6c8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/Speaker-recognition/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/speech-service/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=21041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/language-service/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=449a6fba-0b25-ec11-b6e6-000d3a4f0858",
"articles/ai-services/Translator/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=449a6fba-0b25-ec11-b6e6-000d3a4f0858",
"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-instances/**/*.md": "https://feedback.azure.com/d365community/forum/1e5d6956-0c25-ec11-b6e6-000d3a4f0858",
"articles/container-registry/**/*.md": "https://feedback.azure.com/d365community/forum/180a533d-0d25-ec11-b6e6-000d3a4f0858",
"articles/containers/**/*.md": "https://feedback.azure.com/d365community/forum/1e5d6956-0c25-ec11-b6e6-000d3a4f0858",
"articles/container-service/**/*.md": "https://feedback.azure.com/d365community/forum/aabe212a-f724-ec11-b6e6-000d3a4f0da0",
"articles/cosmos-db/**/*.md": "https://feedback.azure.com/d365community/forum/3002b3be-0d25-ec11-b6e6-000d3a4f0858",
"articles/managed-grafana/**/*.md": "https://feedback.azure.com/d365community/forum/407d7fd4-f8db-ec11-a7b5-000d3a8d7a54",
"articles/managed-instance-apache-cassandra/**/*.md": "https://feedback.azure.com/d365community/forum/3002b3be-0d25-ec11-b6e6-000d3a4f0858?c=e6e5c7c4-0d25-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-analytics/**/*.md": "https://feedback.azure.com/d365community/forum/7fd97106-7326-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/defender-for-cloud/**/*.md": "https://feedback.azure.com/d365community/forum/0f853254-0425-ec11-b6e6-000d3a4f07b8",
"articles/defender-for-cloud/**/*.yml": "https://feedback.azure.com/d365community/forum/0f853254-0425-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/dms/**/*.md": "https://feedback.azure.com/d365community/forum/2dd7eb75-ef24-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/genomics/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"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/**/*.md": "https://feedback.azure.com/d365community/forum/14770d6d-7626-ec11-b6e6-000d3a4f032c",
"articles/hdinsight-aks/**/*.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/**/*.md": "https://feedback.azure.com/d365community/forum/fcb810f7-f824-ec11-b6e6-000d3a4f0da0",
"articles/iot-hub/**/*.md": "https://feedback.azure.com/d365community/forum/fcb810f7-f824-ec11-b6e6-000d3a4f0da0",
"articles/iot-suite/**/*.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/jenkins/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"articles/key-vault/**/*.md": "https://feedback.azure.com/d365community/forum/285c5ae0-f524-ec11-b6e6-000d3a4f0da0",
"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/machine-learning/**/*.md": "https://feedback.azure.com/d365community/forum/b9a0c624-ad25-ec11-b6e6-000d3a4f09d0",
"articles/machine-learning/classic/*.md": "https://feedback.azure.com/d365community/forum/b9a0c624-ad25-ec11-b6e6-000d3a4f09d0",
"articles/machine-learning/data-science-virtual-machine/*.md": "https://feedback.azure.com/d365community/forum/fe7451c9-7426-ec11-b6e6-000d3a4f032c",
"articles/machine-learning/studio/*.md": "https://feedback.azure.com/d36a5community/forum/b9a0c624-ad25-ec11-b6e6-000d3a4f09d0",
"articles/machine-learning/team-data-science-process/*.md": "https://feedback.azure.com/d365community/forum/b9a0c624-ad25-ec11-b6e6-000d3a4f09d0",
"articles/managed-applications/**/*.md": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"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/mysql/**/*.md": "https://feedback.azure.com/d365community/forum/47b1e71d-ee24-ec11-b6e6-000d3a4f0da0",
"articles/networking/**/*.md": "https://feedback.azure.com/d365community/forum/8ae9bf04-8326-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/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/postgresql/**/*.md": "https://feedback.azure.com/d365community/forum/c5e32b97-ee24-ec11-b6e6-000d3a4f0da0",
"articles/partner-solutions/elastic/**/*.md": "https://developercommunity.microsoft.com/elastic/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/apache-kafka-confluent-cloud/**/*.md": "https://developercommunity.microsoft.com/confluent/suggest",
"articles/partner-solutions/nginx/**/*.md": "https://developercommunity.microsoft.com/nginx/suggest",
"articles/partner-solutions/qumulo/**/*.md": "https://developercommunity.microsoft.com/qumulo/suggest",
"articles/partner-solutions/new-relic/**/*.md": "https://developercommunity.microsoft.com/newrelic/suggest",
"articles/partner-solutions/palo-alto/**/*.md": "https://developercommunity.microsoft.com/pan/suggest",
"articles/partner-solutions/astronomer/**/*.md": "https://developercommunity.microsoft.com/astronomer/suggest",
"articles/partner-solutions/informatica/**/*.md": "https://developercommunity.microsoft.com/informatica/suggest",
"articles/partner-solutions/partners.md": "https://developercommunity.microsoft.com/home",
"articles/partner-solutions/overview.md": "https://developercommunity.microsoft.com/home",
"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/purview/**/*.md": "https://feedback.azure.com/d365community/forum/82d7bddb-fb24-ec11-b6e6-000d3a4f07b8",
"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/search/**/*.md": "https://feedback.azure.com/d365community/forum/9325d19e-0225-ec11-b6e6-000d3a4f07b8",
"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/**/*.md": "https://feedback.azure.com/d365community/forum/7c0a897d-2125-ec11-b6e6-000d3a4f0f84",
"articles/service-bus-messaging/**/*.md": "https://feedback.azure.com/d365community/forum/7c0a897d-2125-ec11-b6e6-000d3a4f0f84",
"articles/service-connector/**/*.md": "https://github.com/Azure/ServiceConnector/issues",
"articles/service-fabric/**/*.md": "https://feedback.azure.com/d365community/forum/e622b37a-2225-ec11-b6e6-000d3a4f0f84",
"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-database/**/*.md": "https://feedback.azure.com/d365community/forum/04fe6ee0-3b25-ec11-b6e6-000d3a4f0da0",
"articles/sql-data-warehouse/**/*.md": "https://feedback.azure.com/d365community/forum/9b9ba8e4-0825-ec11-b6e6-000d3a4f07b8?c=53209bfe-0933-ec11-b6e6-00224827b3e3",
"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-machines/**/*.md": "https://feedback.azure.com/d365community/forum/ec2f1827-be25-ec11-b6e6-000d3a4f0f1c",
"articles/virtual-machine-scale-sets/**/*.md": "https://feedback.azure.com/d365community/forum/ec2f1827-be25-ec11-b6e6-000d3a4f0f1c",
"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": {
"articles/ai-services/Anomaly-Detector/**/*.*": "None",
"articles/ai-services/content-moderator/**/*.*": "None",
"articles/ai-services/metrics-advisor/**/*.*": "None",
"articles/ai-services/personalizer/**/*.*": "None",
"articles/ai-services/qnamaker/**/*.*": "None",
"articles/ai-services/LUIS/**/*.*": "None",
"articles/aks/**/*": "OpenSource",
"articles/virtual-machines/linux/classic/**/*": "None",
"articles/virtual-machines/windows/classic/**/*": "None"
},
"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/ai-services/**/*": "https://learn.microsoft.com/answers/tags/441/ai-services/",
"articles/ai-services/Anomaly-Detector/**/*": "https://learn.microsoft.com/answers/tags/81/azure-anomaly-detector/",
"articles/ai-services/Computer-vision/**/*": "https://learn.microsoft.com/answers/tags/127/azure-computer-vision/",
"articles/ai-services/Content-Moderator/**/*": "https://learn.microsoft.com/answers/tags/481/content-safety/",
"articles/ai-services/Custom-Vision-Service/**/*": "https://learn.microsoft.com/answers/tags/195/azure-custom-vision/",
"articles/ai-services/Face/**/*": "https://learn.microsoft.com/answers/tags/156/azure-face/",
"articles/ai-services/document-intelligence/**/*": "https://learn.microsoft.com/answers/tags/440/document-intelligence/",
"articles/ai-services/Immersive-Reader/**/*": "https://learn.microsoft.com/answers/tags/43/azure-immersive-reader/",
"articles/ai-services/LUIS/**/*": "https://learn.microsoft.com/answers/tags/441/ai-services",
"articles/ai-services/metrics-advisor/**/*": "https://learn.microsoft.com/answers/tags/149/azure-metrics-advisor/",
"articles/ai-services/openai/**/*": "https://learn.microsoft.com/answers/tags/387/azure-openai",
"articles/ai-services/QnAMaker/**/*": "https://learn.microsoft.com/answers/tags/441/ai-services/",
"articles/ai-services/Personalizer/**/": "https://learn.microsoft.com/answers/tags/219/azure-personalizer/",
"articles/ai-services/Speaker-recognition/**/*": "https://learn.microsoft.com/answers/tags/441/ai-services",
"articles/ai-services/speech-service/**/*": "https://learn.microsoft.com/answers/tags/55/azure-speech/",
"articles/ai-services/language-service/**/*": "https://learn.microsoft.com/answers/tags/416/language-service/",
"articles/ai-services/Translator/**/*": "https://learn.microsoft.com/answers/tags/132/azure-translator/",
"articles/ai-studio/**/*": "https://learn.microsoft.com/answers/tags/387/azure-openai",
"articles/aks/**/*": "https://learn.microsoft.com/answers/tags/200/azure-kubernetes-service/",
"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/attestation/NO-QA-TAG-USE-GLOBAL/": "",
"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/NO-QA-TAG-USE-GLOBAL/": "",
"articles/azure-resource-manager/managed-applications/**/*": "https://learn.microsoft.com/answers/tags/153/azure-managed-applications",
"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/**/*": "https://learn.microsoft.com/answers/tags/84/azure-cloud-services/",
"articles/cloud-services-extended-support/**/*": "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/confidential-ledger/**/*": "https://learn.microsoft.com/answers/tags/455/entra-id",
"articles/connectors/NO-QA-TAG-USE-GLOBAL/": "",
"articles/container-apps/**/*": "https://learn.microsoft.com/answers/tags/418/azure-container-apps/",
"articles/container-instances/**/*": "https://learn.microsoft.com/answers/tags/72/azure-container-instances/",
"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/cosmos-db/**/*": "https://learn.microsoft.com/answers/tags/187/azure-cosmos-db/",
"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/**/*": "https://learn.microsoft.com/answers/tags/88/azure-data-box-family/",
"articles/databox-gateway/NO-QA-TAG-USE-GLOBAL/": "",
"articles/databox-online/NO-QA-TAG-USE-GLOBAL/": "",
"articles/ddos-protection/**/*": "https://learn.microsoft.com/answers/tags/63/azure-ddos-protection/",
"articles/dedicated-hsm/**/*": "https://learn.microsoft.com/answers/tags/144/azure-dedicated-hsm/",
"articles/defender-for-cloud/**/*": "https://techcommunity.microsoft.com/t5/microsoft-defender-for-cloud/bd-p/MicrosoftDefenderCloud",
"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/NO-QA-TAG-USE-GLOBAL/": "",
"articles/devtest-labs/**/*": "https://learn.microsoft.com/answers/tags/104/azure-devtest-labs/",
"articles/digital-twins/**/*": "https://learn.microsoft.com/answers/tags/59/azure-digital-twins/",
"articles/dms/**/*": "https://learn.microsoft.com/answers/tags/37/azure-database-migration/",
"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/**/*": "https://learn.microsoft.com/answers/tags/113/azure-firewall/",
"articles/firewall-manager/**/*": "https://learn.microsoft.com/answers/tags/234/azure-firewall-manager/",
"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/genomics/**/*": "https://learn.microsoft.com/answers/tags/45/azure-genomics/",
"articles/governance/NO-QA-TAG-USE-GLOBAL/": "",
"articles/governance/blueprints/NO-QA-TAG-USE-GLOBAL": "",
"articles/governance/management-groups/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/**/*": "https://learn.microsoft.com/answers/tags/168/azure-hdinsight/",
"articles/hdinsight-aks/**/*": "https://learn.microsoft.com/answers/tags/453/azure-hdinsight-aks/",
"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/**/*": "https://learn.microsoft.com/answers/tags/35/azure-iot/",
"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/**/*": "https://learn.microsoft.com/answers/tags/158/azure-iot-hub/",
"articles/iot-hub-device-update/**/*": "https://learn.microsoft.com/answers/tags/35/azure-iot/",
"articles/iot-operations/**/*": "https://learn.microsoft.com/answers/tags/464/azure-iot-operations/",
"articles/key-vault/**/*": "https://learn.microsoft.com/answers/tags/5/azure-key-vault/",
"articles/kinect-dk/**/*": "https://learn.microsoft.com/answers/tags/190/azure-kinect-dk/",
"articles/kubernetes-fleet/**/*": "https://learn.microsoft.com/answers/tags/200/azure-kubernetes-service/",
"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/machine-learning/**/*": "https://learn.microsoft.com/answers/tags/75/azure-machine-learning/",
"articles/machine-learning/data-science-virtual-machine/**/*": "https://learn.microsoft.com/answers/tags/201/azure-data-science-vm/",
"articles/managed-ccf/NO-QA-TAG-USE-GLOBAL/": "",
"articles/managed-grafana/**/*": "https://learn.microsoft.com/answers/tags/249/azure-managed-grafana/",
"articles/managed-instance-apache-cassandra/**/*": "https://learn.microsoft.com/answers/tags/187/azure-cosmos-db/",
"articles/mariadb/**/*": "https://learn.microsoft.com/answers/tags/56/azure-database-mariadb/",
"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/mysql/**/*": "https://learn.microsoft.com/answers/tags/181/azure-database-mysql/",
"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/open-datasets/**/*": "https://learn.microsoft.com/answers/tags/8/azure-open-datasets/",
"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/payment-hsm/**/*": "https://learn.microsoft.com/answers/tags/144/azure-dedicated-hsm",
"articles/peering-service/NO-QA-TAG-USE-GLOBAL/": "",
"articles/playwright-testing/**/*": "https://aka.ms/mpt/feedback",
"articles/postgresql/**/*": "https://learn.microsoft.com/answers/tags/214/azure-database-postgresql/",
"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/search/**/*": "https://learn.microsoft.com/en-us/answers/tags/109/azure-cognitive-search",
"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-fabric/**/*": "https://learn.microsoft.com/answers/tags/39/azure-service-fabric/",
"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/**/*": "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/tables/**/*": "https://learn.microsoft.com/answers/tags/27/azure-table-storage/",
"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-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/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-machine-scale-sets/**/*": "https://learn.microsoft.com/answers/tags/393/azure-vm-scalesets/",
"articles/virtual-machines/**/*": "https://learn.microsoft.com/answers/tags/94/azure-virtual-machines/",
"articles/virtual-network/**/*": "https://learn.microsoft.com/answers/tags/143/azure-virtual-network/",
"articles/virtual-network-manager/**/*": "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-cloud/**/*": "ask-the-community",
"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"
},
"open_source_feedback_contributorGuideUrl":
{
"articles/aks/**/*": "https://learn.microsoft.com/contribute/content/"
},
"open_source_feedback_issueTitle":
{
"articles/aks/**/*": "AKS Learn feedback:"
},
"open_source_feedback_issueLabels":
{
"articles/aks/**/*": "azure-kubernetes-service/svc"
},
"open_source_feedback_issueUrl":
{
"articles/aks/**/*": "https://github.com/MicrosoftDocs/azure-docs/issues/new?template=aks-customer-feedback.yml"
},
"open_source_feedback_productLogoLightUrl":
{
"articles/aks/**/*": "https://learn.microsoft.com/azure/media/index/kubernetes-services.svg"
},
"open_source_feedback_productLogoDarkUrl":
{
"articles/aks/**/*": "https://learn.microsoft.com/azure/media/index/kubernetes-services.svg"
},
"open_source_feedback_productName":
{
"articles/aks/**/*": "Azure Kubernetes Service"
},
"learn_banner_products": {
"articles/**/*.md": [
"azure"
],
"articles/virtual-machines/**/*.md": [
"azure-virtual-machines"
],
"articles/azure-portal/**/*.md": [
"azure-portal"
],
"articles/azure-functions/**/*.md": [
"azure-functions"
]
},
"manager": {
"articles/ai-studio/**/*.md": "nitinme",
"articles/ai-services/**/*.md": "nitinme",
"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/**/*.md": "jroth",
"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-cloud/*.md": "raynew",
"articles/defender-for-iot/organizations/*.md": "raynew",
"articles/defender-for-iot/organizations/**/*.md": "raynew",
"articles/defender-for-iot/device-builders/*.md": "raynew",
"articles/deployment-environments/**/*.md": "mijacobs",
"articles/dev-box/**/*.md": "mijacobs",
"articles/devtest-labs/**/*.md": "mijacobs",
"articles/genomics/**/*.md": "scottpolly",
"articles/genomics/**/*.yml": "scottpolly",
"articles/integration-environments/*.md": "susanpotter",
"articles/lab-services/**/*.md": "mijacobs",
"articles/logic-apps/*.md": "susanpotter",