forked from MicrosoftDocs/azure-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docfx.json
1243 lines (1241 loc) · 80.8 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",
"healthcare-apis/**"
]
},
{
"group": "grp-iot-edge",
"src": "articles/iot-edge",
"dest": "./iot-edge/",
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"**/_themes/**",
"**/includes/**",
"**/obj/**"
]
},
{
"group": "healthcare-apis",
"src": "articles/healthcare-apis",
"dest": "./healthcare-apis/",
"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/**",
"healthcare-apis/**"
]
},
{
"group": "grp-iot-edge",
"src": "articles/iot-edge",
"dest": "./iot-edge/",
"files": [
"**/*.gif",
"**/*.jpeg",
"**/*.jpg",
"**/*.png",
"**/*.svg"
],
"exclude": [
"**/_themes/**",
"**/obj/**"
]
},
{
"group": "healthcare-apis",
"src": "articles/healthcare-apis",
"dest": "./healthcare-apis/",
"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-2018-06"
}
},
"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_product_url": "https://feedback.azure.com/d365community/forum/79b1327d-d925-ec11-b6e6-000d3a4f06a4",
"feedback_system": "GitHub",
"searchScope": [
"Azure"
],
"recommendations": true,
"uhfHeaderId": "azure",
"ms.suite": "office",
"contributors_to_exclude": [
"atookey",
"chbain",
"Court72",
"deneha",
"denrea",
"DuncanmaMSFT",
"garycentric",
"GitHubber17",
"hexiaokai",
"itechedit",
"Ja-Dunn",
"Jak-MS",
"jborsecnik",
"john-par",
"jomolnar",
"KatieCumming",
"Kellylorenebaker",
"kiwhit",
"ktoliver",
"Lisaco88",
"MattGLaBelle",
"meganbradley",
"megvanhuygen",
"openpublishingbuild",
"PMEds28",
"PRmerger",
"PRMerger17",
"PRMerger-2",
"PRMerger3",
"PRMerger4",
"PRMerger5",
"PRMerger9",
"rjagiewich",
"rmca14",
"Saisang",
"sdwheeler",
"ShannonLeavitt",
"ShawnJackson",
"shawnmariejones",
"TedA-M",
"tfosmark",
"TimShererWithAquent",
"tiburd",
"trishamc",
"ttorble",
"tysonn",
"v-albemi",
"v-andreaco",
"v-anpasi",
"v-ccolin",
"v-dansch",
"v-dihans",
"v-rihow",
"v-shils",
"v-shmck",
"v-thepet"
]
},
"fileMetadata": {
"author": {
"articles/advisor/*.md": "ikhapova",
"articles/aks/**/*.md": "zr-msft",
"articles/ansible/**/*.md": "TomArcherMsft",
"articles/app-service/*.md": "cephalin",
"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/automanage/*md": "daberry",
"articles/automation/**/*.md": "sgsneha",
"articles/azure-arc/**/*.md": "JnHs",
"articles/azure-arc/servers/**/*.md": "johnmarco",
"articles/azure-functions/**/*.md": "ggailey777",
"articles/azure-fluid-relay/**/*.md": "hickeys",
"articles/azure-government/**/*.md": "stevevi",
"articles/azure-monitor/containers/**/*.md": "bwren",
"articles/azure-monitor/insights/container-insights*.md": "bwren",
"articles/azure-monitor/log-query/*.md": "bwren",
"articles/azure-monitor/platform/*.md": "rboucher",
"articles/azure-monitor/app/*.md": "AaronMaxwell",
"articles/azure-monitor/agents/*.md": "bwren",
"articles/azure-monitor/alerts/*.md": "AbbyMSFT",
"articles/azure-monitor/autoscale/*.md": "rboucher",
"articles/azure-monitor/containers/*.md": "bwren",
"articles/azure-monitor/essentials/*.md": "rboucher",
"articles/azure-monitor/*.md": "bwren",
"articles/azure-monitor/insights/*.md": "bwren",
"articles/azure-monitor/logs/*.md": "guywi-ms",
"articles/azure-monitor/visualize/**/*.md": "rboucher",
"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": "tfitzmac",
"articles/azure-resource-manager/custom-providers/**/*.md": "tfitzmac",
"articles/azure-resource-manager/managed-applications/**/*.md": "davidsmatlak",
"articles/azure-resource-manager/management/**/*.md": "tfitzmac",
"articles/azure-resource-manager/templates/**/*.md": "mumian",
"articles/azure-resource-manager/bicep/**/*.md": "mumian",
"articles/azure-resource-manager/troubleshooting/**/*.md": "davidsmatlak",
"articles/azure-vmware/**/*.md": "suzizuber",
"articles/backup/**/*.md": "v-amallick",
"articles/backup/**/*.yml": "v-amallick",
"articles/baremetal-infrastructure/**/*.md": "dineshga",
"articles/batch/**/*.md": "prkannap",
"articles/blockchain/**/*.md": "PatAltimore",
"articles/chef/**/*.md": "TomArcherMsft",
"articles/applied-ai-services/**/*.md": "mrbullwinkle",
"articles/cognitive-services/**/*.md": "PatrickFarley",
"articles/cognitive-services/Anomaly-Detector/**/*.md": "mrbullwinkle",
"articles/cognitive-services/Bing-Autosuggest/**/*.md": "aahill",
"articles/cognitive-services/Bing-Custom-Search/**/*.md": "aahill",
"articles/cognitive-services/Bing-Entities-Search/**/*.md": "aahill",
"articles/cognitive-services/Bing-Image-Search/**/*.md": "aahill",
"articles/cognitive-services/bing-local-business-search/**/*.md": "aahill",
"articles/cognitive-services/Bing-News-Search/**/*.md": "aahill",
"articles/cognitive-services/Bing-Spell-Check/**/*.md": "aahill",
"articles/cognitive-services/Bing-Video-Search/**/*.md": "aahill",
"articles/cognitive-services/bing-visual-search/**/*.md": "aahill",
"articles/cognitive-services/Bing-Web-Search/**/*.md": "aahill",
"articles/cognitive-services/Computer-vision/**/*.md": "PatrickFarley",
"articles/cognitive-services/Content-Moderator/**/*.md": "PatrickFarley",
"articles/cognitive-services/Custom-Vision-Service/**/*.md": "PatrickFarley",
"articles/cognitive-services/Face/**/*.md": "PatrickFarley",
"articles/applied-ai-services/form-recognizer/**/*.md": "laujan",
"articles/cognitive-services/LUIS/**/*.md": "aahill",
"articles/applied-ai-services/metrics-advisor/**/*.md": "mrbullwinkle",
"articles/cognitive-services/personalizer/**/*.md": "edjez",
"articles/cognitive-services/QnAMaker/**/*.md": "jboback",
"articles/cognitive-services/Speech-Service/**/*.md": "eric-urban",
"articles/cognitive-services/language-service/**/*.md": "aahill",
"articles/cognitive-services/Translator/**/*.md": "laujan",
"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": "elazark",
"articles/defender-for-iot/organizations/*.md": "batamig",
"articles/defender-for-iot/organizations/**/*.md": "batamig",
"articles/defender-for-iot/device-builders/*.md": "batamig",
"articles/dev-spaces/**/*.md": "zr-msft",
"articles/devtest-labs/**/*.md": "j-martens",
"articles/event-grid/**/*.md": "spelluru",
"articles/event-hubs/**/*.md": "spelluru",
"articles/governance/*.md": "timwarner-msft",
"articles/governance/blueprints/**/*.md": "timwarner-msft",
"articles/governance/management-groups/**/*.md": "rthorn17",
"articles/governance/policy/**/*.md": "timwarner-msft",
"articles/governance/resource-graph/**/*.md": "timwarner-msft",
"articles/hdinsight/*.md": "sreekzz",
"articles/hdinsight/*.yml": "sreekzz",
"articles/hdinsight/**/*.md": "sreekzz",
"articles/jenkins/**/*.md": "TomArcherMsft",
"articles/lab-services/**/*.md": "j-martens",
"articles/lighthouse/**/*.md": "JnHs",
"articles/logic-apps/*.md": "ecfan",
"articles/marketplace/**/*.md": "mingshen-ms",
"articles/media-services/**/**/*.md": "Juliako",
"articles/media-services/**/*.md": "Juliako",
"articles/search/*.md": "HeidiSteen",
"articles/notebooks/*.md": "j-martens",
"articles/open-datasets/**/*.md": "samuel100",
"articles/open-datasets/**/*.yml": "samuel100",
"articles/service-bus-messaging/*.md": "spelluru",
"articles/service-fabric/*.md": "sukanyamsft",
"articles/service-health/*.md": "rboucher",
"articles/site-recovery/*.md": "v-ssenthilna",
"articles/stream-analytics/*.md": "sidramadoss",
"articles/terraform/**/*.md": "TomArcherMsft",
"articles/virtual-machines/*.md": "cynthn",
"articles/virtual-machines/linux/*.md": "cynthn",
"articles/virtual-machines/windows/*.md": "cynthn",
"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"
},
"featureFlags": {
"articles/**/*.md": [
"show_learn_banner"
],
"articles/active-directory/**/*.md": [
"binaryRatingUpdate"
]
},
"feedback_product_url": {
"articles/*.md": "https://feedback.azure.com/d365community/forum/b822bb63-8b26-ec11-b6e6-000d3a4f0789",
"articles/active-directory/**/*.md": "https://docs.microsoft.com/azure/active-directory/fundamentals/support-help-options",
"articles/active-directory/develop/*.md": "https://docs.microsoft.com/azure/active-directory/develop/developer-support-help-options",
"articles/active-directory-b2c/**/*.md": "https://docs.microsoft.com/azure/active-directory/develop/developer-support-help-options",
"articles/active-directory-domain-services/**/*.md": "https://feedback.azure.com/d365community/forum/22920db1-ad25-ec11-b6e6-000d3a4f0789",
"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/8849e04d-1325-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-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/8849e04d-1325-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/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://feedback.azure.com/d365community/forum/4518e8d7-0925-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Anomaly-Detector/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=6c8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Bing-Autosuggest/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Bing-Custom-Search**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Bing-Entities-Search/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Bing-Image-Search/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Bing-News-Search/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Bing-Spell-Check/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Bing-Video-Search/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Bing-Web-Search/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Computer-vision/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=7a8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Content-Moderator/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=6c8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Custom-Vision-Service/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=7a8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Face/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=7a8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/applied-ai-services/form-recognizer/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=7a8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Immersive-Reader/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=449a6fba-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/LUIS/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/applied-ai-services/metrics-advisor/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=6c8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/QnAMaker/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=449a6fba-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Personalizer/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=6c8853b4-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/Speaker-recognition/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/speech-service/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=21041fae-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-services/language-service/**/*.md": "https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858?c=449a6fba-0b25-ec11-b6e6-000d3a4f0858",
"articles/cognitive-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-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/dev-spaces/**/*.md": "https://github.com/Azure/dev-spaces/issues",
"articles/devtest-lab/**/*.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/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/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/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-fundamentals/**/*.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/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://github.com/microsoft/azure-load-testing/issues",
"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/marketplace/**/*.md": "https://feedback.azure.com/d365community/forum/45156b35-0a25-ec11-b6e6-000d3a4f09d0",
"articles/marketplace-consumer/**/*.md": "https://feedback.azure.com/d365community/forum/45156b35-0a25-ec11-b6e6-000d3a4f09d0",
"articles/marketplace-publishing/**/*.md": "https://feedback.azure.com/d365community/forum/45156b35-0a25-ec11-b6e6-000d3a4f09d0",
"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/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-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/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/active-directory/user-help/*.md": "None",
"articles/cognitive-services/Academic-Knowledge/**/*.md": "None",
"articles/cognitive-services/custom-decision-service/**/*.md": "None",
"articles/cognitive-services/Emotion/**/*.md": "None",
"articles/cognitive-services/EntityLinking/**/*.md": "None",
"articles/cognitive-services/KES/**/*.md": "None",
"articles/cognitive-services/LinguisticAnalysisAPI/**/*.md": "None",
"articles/cognitive-services/Recommendations/**/*.md": "None",
"articles/cognitive-services/Web-Language-Model/**/*.md": "None",
"articles/virtual-machines/linux/classic/**/*": "None",
"articles/virtual-machines/windows/classic/**/*": "None"
},
"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/app-service/**/*.md": "mijacobs",
"articles/app-service-mobile/**/*.md": "crdun",
"articles/automanage/*md": "mamccrea",
"articles/automation/**/*.md": "evansma",
"articles/azure-arc/servers/**/*.md": "rayoflores",
"articles/azure-functions/**/*.md": "mijacobs",
"articles/azure-monitor/**/*.md": "orspodek",
"articles/azure-portal/**/*.md": "evansma",
"articles/azure-sql/**/*.md": "jroth",
"articles/azure-sql-edge/**/*.md" : "jroth",
"articles/azure-vmware/**/*.md": "rayoflores",
"articles/backup/**/*.md": "evansma",
"articles/baremetal-infrastructure/**/*.md": "akashdubey",
"articles/batch/**/*.md": "mamccrea",
"articles/cognitive-services/**/*.md": "nitinme",
"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/devtest-labs/**/*.md": "j-martens",
"articles/lab-services/**/*.md": "j-martens",
"articles/migrate/**/*.md": "evansma",
"articles/remote-rendering/**/*.md": "jlyons",
"articles/site-recovery/**/*.md": "evansma",
"articles/virtual-machines/**/*.md": "mamccrea",
"articles/virtual-machine-scale-sets/**/*.md": "mamccrea"
},
"ms.author": {
"articles/advisor/*.md": "ikhapova",
"articles/aks/**/*.md": "zarhoads",
"articles/ansible/**/*.md": "tarcher",
"articles/app-service/*.md": "cephalin",
"articles/app-service/containers/*.md": "cephalin",
"articles/app-service/environment/*.md": "madsd",
"articles/app-service/scripts/*.md": "cephalin",
"articles/app-service-mobile/**/*.md": "emalani",
"articles/automanage/*md": "daberry",
"articles/automation/**/*.md": "sudhirsneha",
"articles/azure-arc/**/*.md": "jenhayes",
"articles/azure-arc/servers/**/*.md": "johnmarc",
"articles/azure-functions/**/*.md": "glenga",
"articles/azure-fluid-relay/**/*.md": "hickeys",
"articles/azure-government/**/*.md": "stevevi",
"articles/azure-monitor/*.*": "bwren",
"articles/azure-monitor/app/*.md": "aaronmax",
"articles/azure-monitor/agents/*.md": "bwren",
"articles/azure-monitor/alerts/*.md": "abbyweisberg",
"articles/azure-monitor/autoscale/*.md": "robb",
"articles/azure-monitor/containers/*.md": "bwren",
"articles/azure-monitor/insights/container-insights*.md": "bwren",
"articles/azure-monitor/insights/*.md": "robb",
"articles/azure-monitor/essentials/*.md": "robb",
"articles/azure-monitor/logs/*.md": "guywild",
"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": "tomfitz",
"articles/azure-resource-manager/custom-providers/**/*.md": "tomfitz",
"articles/azure-resource-manager/managed-applications/**/*.md": "davidsmatlak",
"articles/azure-resource-manager/management/**/*.md": "tomfitz",
"articles/azure-resource-manager/templates/**/*.md": "jgao",
"articles/azure-resource-manager/bicep/**/*.md": "jgao",
"articles/azure-resource-manager/troubleshooting/**/*.md": "davidsmatlak",
"articles/azure-vmware/**/*.md": "v-szuber",
"articles/backup/**/*.md": "v-amallick",
"articles/backup/**/*.yml": "v-amallick",
"articles/baremetal-infrastructure/**/*.md": "kalyank",
"articles/batch/**/*.md": "prkannap",
"articles/blockchain/**/*.md": "patricka",
"articles/chef/**/*.md": "tarcher",
"articles/applied-ai-services/**/*.md": "mbullwin",
"articles/cognitive-services/**/*.md": "pafarley",
"articles/cognitive-services/Anomaly-Detector/**/*.md": "mbullwin",
"articles/cognitive-services/Bing-Autosuggest/**/*.md": "aahi",
"articles/cognitive-services/Bing-Custom-Search/**/*.md": "aahi",
"articles/cognitive-services/Bing-Entities-Search/**/*.md": "aahi",
"articles/cognitive-services/Bing-Image-Search/**/*.md": "aahi",
"articles/cognitive-services/bing-local-business-search/**/*.md": "aahi",
"articles/cognitive-services/Bing-News-Search/**/*.md": "aahi",
"articles/cognitive-services/Bing-Spell-Check/**/*.md": "aahi",
"articles/cognitive-services/Bing-Video-Search/**/*.md": "aahi",
"articles/cognitive-services/bing-visual-search/**/*.md": "aahi",
"articles/cognitive-services/Bing-Web-Search/**/*.md": "aahi",
"articles/cognitive-services/Computer-vision/**/*.md": "pafarley",
"articles/cognitive-services/Content-Moderator/**/*.md": "pafarley",
"articles/cognitive-services/Custom-Vision-Service/**/*.md": "pafarley",
"articles/cognitive-services/Face/**/*.md": "pafarley",
"articles/applied-ai-services/form-recognizer/**/*.md": "lajanuar",
"articles/cognitive-services/LUIS/**/*.md": "aahi",
"articles/applied-ai-services/metrics-advisor/**/*.md": "mbullwin",
"articles/cognitive-services/personalizer/**/*.md": "edjez",
"articles/cognitive-services/QnAMaker/**/*.md": "mbullwin",
"articles/cognitive-services/Speech-Service/**/*.md": "eur",
"articles/cognitive-services/language-service/**/*.md": "aahi",
"articles/cognitive-services/Translator/**/*.md": "lajanuar",
"articles/connectors/*.md": "estfan",
"articles/container-instances/**/*.md": "macolso",
"articles/container-registry/**/*.md": "tejaswikolli",
"articles/data-catalog/*.md": "whhender",
"articles/data-lake-analytics/*.md": "mrys",
"articles/defender-for-cloud/*.md": "elkrieger",
"articles/defender-for-iot/organizations/*.md": "bagol",
"articles/defender-for-iot/organizations/**/*.md": "bagol",
"articles/defender-for-iot/device-builders/*.md": "bagol",
"articles/dev-spaces/**/*.md": "zarhoads",
"articles/devtest-labs/**/*.md": "juliako",
"articles/event-grid/**/*.md": "spelluru",
"articles/event-hubs/*.md": "spelluru",
"articles/governance/*.md": "timwarner",
"articles/governance/blueprints/**/*.md": "timwarner",
"articles/governance/management-groups/**/*.md": "rithorn",
"articles/governance/policy/**/*.md": "timwarner",
"articles/governance/resource-graph/**/*.md": "timwarner",
"articles/hdinsight/*.md": "v-sreiyer",
"articles/hdinsight/*.yml": "v-sreiyer",
"articles/hdinsight/**/*.md": "v-sreiyer",
"articles/jenkins/**/*.md": "tarcher",
"articles/lab-services/**/*.md": "nicktrog",
"articles/lighthouse/**/*.md": "jenhayes",
"articles/logic-apps/*.md": "estfan",
"articles/marketplace/**/*.md": "mingshen",
"articles/media-services/**/*.md": "juliako",
"articles/media-services/*.md": "juliako",
"articles/migrate/*.md": "sudhirsneha",
"articles/notebooks/*.md": "joshuapa",
"articles/open-datasets/**/*.md": "samkemp",
"articles/open-datasets/**/*.yml": "samkemp",
"articles/search/*.md": "heidist",
"articles/service-bus-messaging/*.md": "spelluru",
"articles/service-fabric/*.md": "sukanyas",
"articles/service-health/*.md": "robb",
"articles/site-recovery/*.md": "v-ssenthilna",
"articles/stream-analytics/*.md": "sidram",
"articles/terraform/**/*.md": "tarcher",
"articles/virtual-machines/*.md": "cynthn",
"articles/virtual-machines/linux/*.md": "cynthn",
"articles/virtual-machines/windows/*.md": "cynthn",
"articles/virtual-machines-scale-sets/*.md": "jushiman",
"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/azure-video-indexer/*.md": "Juliako"
},
"ms.collection": {
"articles/application-gateway/*.md": "networking",
"articles/application-gateway/*.yml": "networking",
"articles/cdn/*.md": "networking",
"articles/cdn/*.yml": "networking",
"articles/bastion/*.md": "networking",
"articles/bastion/*.yml": "networking",
"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/firewall/*.md": "networking",
"articles/firewall/*.yml": "networking",
"articles/firewall-manager/*.md": "networking",
"articles/firewall-manager/*.yml": "networking",
"articles/frontdoor/*.md": "networking",
"articles/frontdoor/*.yml": "networking",
"articles/internet-peering/*.md": "networking",
"articles/internet-peering/*.yml": "networking",
"articles/internet-analyzer/*.md": "networking",
"articles/internet-analyzer/*.yml": "networking",
"articles/load-balancer/*.md": "networking",
"articles/load-balancer/*.yml": "networking",
"articles/networking/*.md": "networking",
"articles/networking/*.yml": "networking",
"articles/network-watcher/*.md": "networking",
"articles/network-watcher/*.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": "advisor",
"articles/aks/**/*.md": "container-service",
"articles/ansible/**/*.md": "ansible",
"articles/app-service/**/*.md": "app-service",
"articles/app-service-mobile/**/*.md": "app-service-mobile",
"articles/automation/**/*.md": "automation",
"articles/azure-arc/**/*.md": "azure-arc",
"articles/azure-functions/**/*.md": "azure-functions",
"articles/azure-fluid-relay/**/*.md": "azure-fluid",
"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/*.md": "service-bus-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": "managed-applications",
"articles/partner-solutions/**/*.md": "partner-services",
"articles/azure-vmware/**/*.md": "azure-vmware",
"articles/backup/**/*.md": "backup",
"articles/baremetal-infrastructure/**/*.md": "baremetal-infrastructure",
"articles/batch/**/*.md": "batch",
"articles/blockchain/**/*.md": "azure-blockchain",
"articles/chef/**/*.md": "chef",
"articles/cognitive-services/**/*.md": "cognitive-services",
"articles/connectors/*.md": "logic-apps",
"articles/container-instances/**/*.md": "container-instances",
"articles/container-registry/**/*.md": "container-registry",
"articles/dev-spaces/**/*.md": "azure-dev-spaces",
"articles/devtest-labs/**/*.md": "devtest-lab",
"articles/defender-for-cloud/*.md": "defender-for-cloud",
"articles/defender-for-iot/organizations/*.md": "defender-for-iot",
"articles/defender-for-iot/organizations/**/*.md": "defender-for-iot",
"articles/defender-for-iot/device-builders/*.md": "defender-for-iot",
"articles/event-grid/**/*.md": "event-grid",
"articles/event-hubs/*.md": "event-hubs",
"articles/governance/*.md": "governance",
"articles/governance/blueprints/**/*.md": "blueprints",
"articles/governance/management-groups/**/*.md": "governance",
"articles/governance/policy/**/*.md": "azure-policy",
"articles/governance/resource-graph/**/*.md": "resource-graph",
"articles/industry/**/*.md": "azure-industry",
"articles/jenkins/**/*.md": "jenkins",
"articles/lab-services/**/*.md": "lab-services",
"articles/lighthouse/**/*.md": "lighthouse",
"articles/logic-apps/*.md": "logic-apps",
"articles/marketplace/**/*.md": "marketplace",
"articles/media-services/**/*.md": "media-services",
"articles/media-services/*.md": "media-services",
"articles/migrate/*.md": "azure-migrate",
"articles/notebooks/*.md": "azure-notebooks",
"acticles/object-anchors/**/*.md": "azure-object-anchors",
"articles/remote-rendering/**/*.md": "azure-remote-rendering",
"articles/sentinel/**/*.md": "microsoft-sentinel",
"articles/service-bus-messaging/*.md": "service-bus-messaging",
"articles/service-fabric/*.md": "service-fabric",
"articles/service-health/**/*.md": "service-health",
"articles/site-recovery/*.md": "site-recovery",
"articles/terraform/**/*.md": "terraform",
"articles/virtual-desktop/**/*.md": "virtual-desktop",
"articles/virtual-machines/*.md": "virtual-machines",
"articles/virtual-machine-scale-sets/*.md": "virtual-machine-scale-sets",
"articles/azure-video-analyzer/video-analyzer-docs/*.md": "azure-video-analyzer",
"articles/azure-video-analyzer/video-analyzer-docs/edge/*.md": "azure-video-analyzer",
"articles/azure-video-analyzer/video-analyzer-docs/cloud/*.md": "azure-video-analyzer",
"articles/azure-video-indexer/*.md": "azure-video-indexer"
},
"ms.reviewer": {
"articles/advisor/*.md": "ikhapova"
},
"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/app/**/*.md": "application-insights",
"articles/azure-monitor/agents/**/*.md": "agents",
"articles/azure-monitor/alerts/**/*.md": "alerts",
"articles/azure-monitor/autoscale/**/*.md": "autoscale",
"articles/azure-monitor/containers/**/*.md": "containers",
"articles/azure-monitor/essentials/**/*.md": "essentials",
"articles/azure-monitor/*.md": "general",
"articles/azure-monitor/insights/**/*.md": "insights",
"articles/azure-monitor/logs/**/*.md": "logs",
"articles/azure-monitor/visualize/**/*.md": "visualizations",
"articles/azure-monitor/vm/**/*.md": "virtual-machines",
"articles/azure-resource-manager/management/**/*.md": "management",
"articles/azure-resource-manager/templates/**/*.md": "templates",
"articles/azure-resource-manager/bicep/**/*.md": "bicep",
"articles/azure-resource-manager/troubleshooting/**/*.md": "troubleshooting",
"articles/partner-solutions/apache-kafka-confluent-cloud/**/*.md": "confluent",
"articles/partner-solutions/datadog/**/*.md": "datadog",
"articles/partner-solutions/elastic/**/*.md": "elastic",
"articles/partner-solutions/logzio/**/*.md": "logzio",
"articles/cognitive-services/Anomaly-Detector/**/*.md": "anomaly-detector",
"articles/cognitive-services/Bing-Autosuggest/**/*.md": "bing-autosuggest",
"articles/cognitive-services/Bing-Custom-Search/**/*.md": "bing-custom-search",
"articles/cognitive-services/Bing-Entities-Search/**/*.md": "bing-entity-search",
"articles/cognitive-services/Bing-Image-Search/**/*.md": "bing-image-search",
"articles/cognitive-services/bing-local-business-search/**/*.md": "bing-local-business",
"articles/cognitive-services/Bing-News-Search/**/*.md": "bing-news-search",
"articles/cognitive-services/Bing-Spell-Check/**/*.md": "bing-spell-check",
"articles/cognitive-services/Bing-Video-Search/**/*.md": "bing-video-search",
"articles/cognitive-services/bing-visual-search/**/*.md": "bing-visual-search",
"articles/cognitive-services/Bing-Web-Search/**/*.md": "bing-web-search",
"articles/cognitive-services/Computer-vision/**/*.md": "computer-vision",
"articles/cognitive-services/Content-Moderator/**/*.md": "content-moderator",
"articles/cognitive-services/Custom-Vision-Service/**/*.md": "custom-vision",
"articles/cognitive-services/Face/**/*.md": "face-api",
"articles/applied-ai-services/form-recognizer/**/*.md": "forms-recognizer",
"articles/cognitive-services/immersive-reader/**/*.md": "immersive-reader",
"articles/cognitive-services/Ink-Recognizer/**/*.md": "ink-recognizer",
"articles/cognitive-services/LUIS/**/*.md": "language-understanding",
"articles/applied-ai-services/metrics-advisor/**/*.md": "metrics-advisor",
"articles/cognitive-services/personalizer/**/*.md": "personalizer",
"articles/cognitive-services/QnAMaker/**/*.md": "qna-maker",
"articles/cognitive-services/Speech-Service/**/*.md": "speech-service",
"articles/cognitive-services/language-service/**/*.md": "language-service",
"articles/cognitive-services/Translator/**/*.md": "translator-text",
"articles/industry/agriculture/**/*.md": "agriculture",
"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/azure-video-analyzer/video-analyzer-docs/*.md": "video-analyzer-subservice",
"articles/azure-video-analyzer/video-analyzer-docs/edge/*.md": "video-analyzer-subservice",
"articles/azure-video-analyzer/video-analyzer-docs/cloud/*.md": "video-analyzer-subservice",
"articles/cosmos-db/mongodb/*.md": "cosmosdb-mongo",
"articles/cosmos-db/cassandra/*.md": "cosmosdb-cassandra",
"articles/cosmos-db/graph/*.md": "cosmosdb-graph",
"articles/cosmos-db/table/*.md": "cosmosdb-table",
"articles/cosmos-db/sql/*.md": "cosmosdb-sql",
"articles/sentinel/**/*.md": "microsoft-sentinel"
},
"monikerRange": {
"articles/iot-edge/**/*.md": ">=iotedge-2018-06"
},
"recommendations": {
"articles/cognitive-services/Translator/**/*.md": false
},
"no-loc": {
"articles/governance/policy/**/*.md": "[audit, deny, modify, disabled, auditifnotexists, deployifnotexists]",
"includes/policy/**/*.md": "[audit, deny, modify, disabled, auditifnotexists, deployifnotexists]"
},
"searchScope": {
"articles/advisor/**/*.md": ["Azure","Azure Advisor"],
"articles/advisor/**/*.yml": ["Azure","Azure Advisor"],
"articles/app-service/**/*.md": ["Azure","App Service"],
"articles/azure-app-configuration/**/*.md": ["Azure","AppConfig"],
"articles/azure-app-configuration/**/*.yml": ["Azure","AppConfig"],
"articles/azure-cache-for-redis/**/*.md": ["Azure","Cache for Redis"],
"articles/azure-cache-for-redis/**/*.yml": ["Azure","Cache for Redis"],
"articles/azure-databricks/**/*.md": ["Azure","Azure Databricks"],
"articles/azure-databricks/**/*.yml": ["Azure","Azure Databricks"],
"articles/azure-monitor/**/*.md": ["Azure","Azure Monitor"],
"articles/azure-monitor/**/*.yml": ["Azure","Azure Monitor"],
"articles/azure-portal/**/*.md": ["Azure","Azure portal"],
"articles/azure-portal/**/*.yml": ["Azure","Azure portal"],
"articles/azure-portal/supportability/**/*.md": ["Azure","Azure supportability"],
"articles/azure-portal/supportability/**/*.yml": ["Azure","Azure supportability"],
"articles/azure-relay/**/*.md": ["Azure","Azure Relay"],
"articles/azure-relay/**/*.yml": ["Azure","Azure Relay"],
"articles/backup/**/*.md": ["Azure","Azure Backup"],
"articles/backup/**/*.yml": ["Azure","Azure Backup"],
"articles/cosmos-db/**/*.md": ["Azure","Azure Cosmos DB"],
"articles/cosmos-db/**/*.yml": ["Azure","Azure Cosmos DB"],
"articles/cost-management-billing/**/*.md": ["Azure","Cost Management Billing"],
"articles/cost-management-billing/**/*.yml": ["Azure","Cost Management Billing"],
"articles/data-catalog/**/*.md": ["Azure","Azure Data Catalog"],
"articles/data-catalog/**/*.yml": ["Azure","Azure Data Catalog"],
"articles/data-factory/**/*.md": ["Azure","Azure Data Factory"],
"articles/data-factory/**/*.yml": ["Azure","Azure Data Factory"],
"articles/data-lake-analytics/**/*.md": ["Azure","Azure Data Lake Analytics"],
"articles/data-lake-analytics/**/*.yml": ["Azure","Azure Data Lake Analytics"],
"articles/data-share/**/*.md": ["Azure","Azure Data Share"],
"articles/data-share/**/*.yml": ["Azure","Azure Data Share"],
"articles/defender-for-iot/*.md": ["Azure","Defender for IoT"],
"articles/defender-for-iot/**/*.yml": ["Azure","Defender for IoT"],
"articles/defender-for-iot/organizations/*.md": ["Azure","Defender for IoT"],
"articles/defender-for-iot/organizations/**/*.md": ["Azure","Defender for IoT"],
"articles/defender-for-iot/organizations/**/*.yml": ["Azure","Defender for IoT"],
"articles/defender-for-iot/device-builders/*.md": ["Azure","Defender for IoT"],
"articles/defender-for-iot/device-builders/**/*.yml": ["Azure","Defender for IoT"],
"articles/digital-twins/**/*.md": ["Azure","IoT","Azure Digital Twins"],
"articles/digital-twins/**/*.yml": ["Azure","IoT","Azure Digital Twins"],
"articles/event-grid/**/*.md": ["Azure","Azure Event Grid"],
"articles/event-grid/**/*.yml": ["Azure","Azure Event Grid"],
"articles/event-hubs/**/*.md": ["Azure","Azure Event Hubs"],
"articles/event-hubs/**/*.yml": ["Azure","Azure Event Hubs"],
"articles/hdinsight/**/*.md": ["Azure","Azure HDInsight"],
"articles/hdinsight/**/*.yml": ["Azure","Azure HDInsight"],
"articles/iot-central/**/*.md": ["Azure","IoT","Azure IoT Central"],
"articles/iot-central/**/*.yml": ["Azure","IoT","Azure IoT Central"],
"articles/iot-dps/**/*.md": ["Azure","Azure IoT Hub","IoT","Azure IoT DPS"],
"articles/iot-dps/**/*.yml": ["Azure","Azure IoT Hub","IoT","Azure IoT DPS"],
"articles/iot-edge/**/*.md": ["Azure","IoT","Azure IoT Edge"],
"articles/iot-edge/**/*.yml": ["Azure","IoT","Azure IoT Edge"],
"articles/iot-fundamentals/**/*.md": ["Azure","IoT"],
"articles/iot-fundamentals/**/*.yml": ["Azure","IoT"],
"articles/iot-hub/**/*.md": ["Azure","IoT","Azure IoT Hub"],
"articles/iot-hub/**/*.yml": ["Azure","IoT","Azure IoT Hub"],
"articles/iot-develop/**/*.md": ["Azure","IoT","IoT Plug and Play", "IoT device devloper"],
"articles/iot-develop/**/*.yml": ["Azure","IoT","IoT Plug and Play", "IoT device devloper"],
"articles/managed-instance-apache-cassandra/**/*.md": ["Azure","Azure Managed instance for Apache Cassandra"],
"articles/managed-instance-apache-cassandra/**/*.yml": ["Azure","Azure Managed instance for Apache Cassandra"],
"articles/mariadb/**/*.md": ["Azure","Azure Database for MariaDB"],
"articles/mariadb/**/*.yml": ["Azure","Azure Database for MariaDB"],
"articles/marketplace/**/*.md": ["Azure","Partner Center","Microsoft commercial marketplace"],
"articles/marketplace/**/*.yml": ["Azure","Partner Center","Microsoft commercial marketplace"],
"articles/mysql/**/*.md": ["Azure","Azure Database for MySQL"],
"articles/mysql/**/*.yml": ["Azure","Azure Database for MySQL"],
"articles/notebooks/**/*.md": ["Azure","Azure Notebooks"],
"articles/notebooks/**/*.yml": ["Azure","Azure Notebooks"],
"articles/postgresql/**.md": ["Azure","Azure Database for PostgreSQL"],
"articles/postgresql/**.yml": ["Azure","Azure Database for PostgreSQL"],
"articles/purview/**/*.md": ["Azure","Azure Purview","Microsoft Purview"],
"articles/purview/**/*.yml": ["Azure","Azure Purview","Microsoft Purview"],
"articles/service-bus-messaging/**/*.md": ["Azure","Azure Service Bus Messaging"],
"articles/service-bus-messaging/**/*.yml": ["Azure","Azure Service Bus Messaging"],
"articles/service-health/**/*.md": ["Azure","Service Health"],
"articles/service-health/**/*.yml": ["Azure","Service Health"],
"articles/stream-analytics/**/*.md": ["Azure","Stream Analytics"],
"articles/stream-analytics/**/*.yml": ["Azure","Stream Analytics"],
"articles/synapse-analytics/**/*.md": ["Synapse Analytics","Azure"],
"articles/synapse-analytics/**/*.yml": ["Synapse Analytics","Azure"],
"articles/time-series-insights/**/*.md": ["Azure","Time Series Insights"],
"articles/time-series-insights/**/*.yml": ["Azure","Time Series Insights"],
"articles/virtual-machines/**/*.md": ["Azure","Virtual Machines"],
"articles/virtual-machines/**/*.yml": ["Azure","Virtual Machines"],
"articles/virtual-machines/linux/**/*.md": ["Azure","Linux Virtual Machines"],
"articles/virtual-machines/linux/**/*.yml": ["Azure","Linux Virtual Machines"],
"articles/virtual-machines/windows/**/*.md": ["Azure","Windows Virtual Machines"],
"articles/virtual-machines/windows/**/*.yml": ["Azure","Windows Virtual Machines"],
"articles/virtual-machine-scale-sets/**/*.md": ["Azure","Virtual Machine Scale Sets"],
"articles/virtual-machine-scale-sets/**/*.yml": ["Azure","Virtual Machine Scale Sets"]
},
"titleSuffix": {
"articles/advisor/*.yml": "Azure Advisor",
"articles/advisor/**/*.md": "Azure Advisor",
"articles/aks/**/*.md": "Azure Kubernetes Service",
"articles/ansible/**/*.yml": "Ansible",
"articles/app-service-mobile/**/*.md": "Azure Mobile Apps",
"articles/app-service-mobile/**/*.yml": "Azure Mobile Apps",
"articles/app-service/*.md": "Azure App Service",
"articles/app-service/*.yml": "Azure App Service",
"articles/app-service/environment/*.md": "Azure App Service Environment",
"articles/app-service/environment/*.yml": "Azure App Service Environment",
"articles/app-service/scripts/*.md": "Azure App Service",
"articles/app-service/scripts/*.yml": "Azure App Service",
"articles/asc-for-iot/**/*.md": "Azure Security Center for IoT",
"articles/asc-for-iot/**/*.yml": "Azure Security Center for IoT",
"articles/active-directory/develop/**/*.md": "Microsoft identity platform",
"articles/active-directory/develop/**/*.yml": "Microsoft identity platform",
"articles/azure-arc/**/*.md": "Azure Arc",
"articles/azure-fluid-relay/**/*.md": "Azure Fluid Relay",
"articles/azure-fluid-relay/**/*.yml": "Azure Fluid Relay",
"articles/azure-government/**/*.md": "Azure Government",
"articles/azure-monitor/**/*.md" : "Azure Monitor",