forked from GouNiNi/azure-docs.fr-fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocfx.json
1452 lines (1452 loc) · 74 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_product_url": "https://feedback.azure.com/forums/34192--general-feedback",
"feedback_system": "None",
"searchScope": [
"Azure"
],
"recommendations": true,
"uhfHeaderId": "azure",
"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"
],
"disable_contribution_on_translation_quality": [
"MTE95",
"MTE75",
"MT",
"Blank"
]
},
"fileMetadata": {
"author": {
"articles/advisor/*.md": "saket-ms",
"articles/aks/**/*.md": "mlearned",
"articles/ansible/**/*.md": "TomArcherMsft",
"articles/app-service/*.md": "cephalin",
"articles/app-service/containers/*.md": "cephalin",
"articles/app-service/environment/*.md": "ccompy",
"articles/app-service/scripts/*.md": "cephalin",
"articles/app-service-mobile/**/*.md": "elamalani",
"articles/automanage/*md": "daberry",
"articles/automation/**/*.md": "mgoedtel",
"articles/azure-arc/**/*.md": "mgoedtel",
"articles/azure-arc/servers/**/*.md": "mgoedtel",
"articles/azure-functions/**/*.md": "ggailey777",
"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": "lgayhardt",
"articles/azure-monitor/agents/*.md": "bwren",
"articles/azure-monitor/alerts/*.md": "rboucher",
"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": "rboucher",
"articles/azure-monitor/visualize/**/*.md": "lgayhardt",
"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": "tfitzmac",
"articles/azure-resource-manager/management/**/*.md": "tfitzmac",
"articles/azure-resource-manager/templates/**/*.md": "mumian",
"articles/azure-resource-manager/bicep/**/*.md": "mumian",
"articles/azure-vmware/**/*.md": "shortpatti",
"articles/backup/**/*.md": "v-amallick",
"articles/baremetal-infrastructure/**/*.md": "Ajayan1008",
"articles/batch/**/*.md": "JnHs",
"articles/blockchain/**/*.md": "PatAltimore",
"articles/chef/**/*.md": "TomArcherMsft",
"articles/cognitive-services/**/*.md": "erhopf",
"articles/cognitive-services/Anomaly-Detector/**/*.md": "aahill",
"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/cognitive-services/form-recognizer/**/*.md": "PatrickFarley",
"articles/cognitive-services/Ink-Recognizer/**/*.md": "aahill",
"articles/cognitive-services/LUIS/**/*.md": "aahill",
"articles/cognitive-services/personalizer/**/*.md": "edjez",
"articles/cognitive-services/QnAMaker/**/*.md": "nerajput1607",
"articles/cognitive-services/Speech/**/*.md": "nitinme",
"articles/cognitive-services/Speech-Service/**/*.md": "trevorbye",
"articles/cognitive-services/text-analytics/**/*.md": "aahill",
"articles/connectors/*.md": "ecfan",
"articles/container-instances/**/*.md": "macolso",
"articles/container-registry/**/*.md": "dlepow",
"articles/data-lake-analytics/*.md": "xujxu",
"articles/defender-for-iot/organizations/*.md": "shhazam-ms",
"articles/defender-for-iot/device-builders/*.md": "elazark",
"articles/dev-spaces/**/*.md": "zr-msft",
"articles/devtest-labs/**/*.md": "juliako",
"articles/event-grid/**/*.md": "spelluru",
"articles/event-hubs/**/*.md": "spelluru",
"articles/governance/*.md": "DCtheGeek",
"articles/governance/blueprints/**/*.md": "DCtheGeek",
"articles/governance/management-groups/**/*.md": "rthorn17",
"articles/governance/policy/**/*.md": "DCtheGeek",
"articles/governance/resource-graph/**/*.md": "DCtheGeek",
"articles/hdinsight/*.md": "JasonWHowell",
"articles/hdinsight/kafka/*.md": "arnabganguly",
"articles/hdinsight/**/*.md": "JasonWHowell",
"articles/jenkins/**/*.md": "TomArcherMsft",
"articles/lab-services/**/*.md": "juliako",
"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/notebooks/*.md": "JoshuaPartlow",
"articles/service-bus-messaging/*.md": "spelluru",
"articles/service-fabric/*.md": "sukanyamsft",
"articles/service-health/*.md": "stephbaron",
"articles/site-recovery/*.md": "JYOTHIRMAISURI",
"articles/stream-analytics/*.md": "jasonwhowell",
"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-analyzer/video-analyzer-for-media-docs/*.md": "Juliako",
"articles/azure-video-analyzer/video-analyzer-docs/*.md": "Juliako"
},
"featureFlags": {
"articles/**/*.md": [
"show_learn_banner"
],
"articles/active-directory/**/*.md": [
"binaryRatingUpdate"
]
},
"feedback_product_url": {
"articles/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/active-directory/**/*.md": "https://feedback.azure.com/forums/169401-azure-active-directory",
"articles/active-directory-b2c/**/*.md": "https://feedback.azure.com/forums/169401-azure-active-directory",
"articles/active-directory-domain-services/**/*.md": "https://feedback.azure.com/forums/169401-azure-active-directory",
"articles/advisor/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/aks/**/*.md": "https://feedback.azure.com/forums/914020-azure-kubernetes-service-aks",
"articles/analysis-services/**/*.md": "https://feedback.azure.com/forums/556165-azure-analysis-services",
"articles/ansible/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/api-management/**/*.md": "https://feedback.azure.com/forums/248703-api-management",
"articles/application-gateway/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=134448",
"articles/application-insights/**/*.md": "https://feedback.azure.com/forums/357324-application-insights",
"articles/app-service/**/*.md": "https://feedback.azure.com/forums/169385-web-apps",
"articles/app-service-mobile/**/*.md": "https://github.com/Azure/azure-mobile-apps/issues",
"articles/automation/**/*.md": "https://feedback.azure.com/forums/246290-automation",
"articles/availability-zones/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/azure-app-configuration/**/*.md": "https://github.com/Azure/AppConfiguration/issues",
"articles/azure-cache-for-redis/**/*.md": "https://feedback.azure.com/forums/169382-cache",
"articles/azure-databricks/**/*.md": "https://feedback.azure.com/forums/909463-azure-databricks",
"articles/azure-functions/**/*.md": "https://feedback.azure.com/forums/355860-azure-functions",
"articles/azure-government/**/*.md": "https://feedback.azure.com/forums/558487-azure-government",
"articles/azure-maps/**/*.md": "https://feedback.azure.com/forums/909172-azure-maps",
"articles/azure-monitor/**/*.md": "https://feedback.azure.com/forums/913690-azure-monitor",
"articles/azure-monitor/app/**/*.md": "https://feedback.azure.com/forums/357324-azure-monitor-application-insights",
"articles/azure-monitor/log-query/**/*.md": "https://feedback.azure.com/forums/267889-azure-monitor-log-analytics",
"articles/azure-monitor/platform/**/alert-*.md": "https://feedback.azure.com/forums/602299-azure-monitor-alert-management",
"articles/azure-portal/**/*.md": "https://feedback.azure.com/forums/223579-azure-portal",
"articles/azure-portal/supportability/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/azure-relay/**/*.md": "https://feedback.azure.com/forums/216926-service-bus",
"articles/azure-resource-manager/**/*.md": "https://feedback.azure.com/forums/281804-azure-resource-manager",
"articles/azure-signalr/**/*.md": "https://feedback.azure.com/forums/915436-azure-signalr-service",
"articles/azure-stack/**/*.md": "https://feedback.azure.com/forums/344565-azure-stack",
"articles/azure-sql/*.md": "https://feedback.azure.com/forums/217321-sql-database",
"articles/azure-sql/database/**/*.md": "https://feedback.azure.com/forums/217321-sql-database",
"articles/azure-sql/virtual-machines/**/*.md": "https://feedback.azure.com/forums/908035-sql-server",
"articles/azure-sql/managed-instance/**/*.md": "https://feedback.azure.com/forums/915676-sql-managed-instance",
"articles/azure-vmware/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/backup/**/*.md": "https://feedback.azure.com/forums/258995-azure-backup-and-scdpm",
"articles/batch/**/*.md": "https://feedback.azure.com/forums/269742-batch",
"articles/batch-ai/**/*.md": "https://feedback.azure.com/forums/905575-batch-ai",
"articles/biztalk-services/**/*.md": "https://feedback.azure.com/forums/216276-biztalk-services",
"articles/blockchain/**/*.md": "https://feedback.azure.com/forums/586780-blockchain",
"articles/cdn/**/*.md": "https://feedback.azure.com/forums/169397-cdn",
"articles/chef/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/cloudfoundry/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/cloud-partner-portal/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/cloud-services/**/*.md": "https://feedback.azure.com/forums/169386-cloud-services-web-and-worker-role",
"articles/cloud-shell/**/*.md": "https://feedback.azure.com/forums/598699-azure-cloud-shell",
"articles/cognitive-services/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395737",
"articles/cognitive-services/Anomaly-Detector/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395746",
"articles/cognitive-services/Bing-Autosuggest/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395737",
"articles/cognitive-services/Bing-Custom-Search**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395737",
"articles/cognitive-services/Bing-Entities-Search/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395737",
"articles/cognitive-services/Bing-Image-Search/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395737",
"articles/cognitive-services/Bing-News-Search/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395737",
"articles/cognitive-services/Bing-Spell-Check/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395737",
"articles/cognitive-services/Bing-Video-Search/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395737",
"articles/cognitive-services/Bing-Web-Search/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395737",
"articles/cognitive-services/Computer-vision/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395743",
"articles/cognitive-services/Content-Moderator/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395746",
"articles/cognitive-services/Custom-Vision-Service/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395743",
"articles/cognitive-services/Face/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395743",
"articles/cognitive-services/form-recognizer/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395743",
"articles/cognitive-services/Immersive-Reader/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395749",
"articles/cognitive-services/LUIS/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395749",
"articles/cognitive-services/Metrics-Advisor/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395746",
"articles/cognitive-services/QnAMaker/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395749",
"articles/cognitive-services/Personalizer/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395746",
"articles/cognitive-services/Speaker-recognition/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395740",
"articles/cognitive-services/speech-service/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395740",
"articles/cognitive-services/text-analytics/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395749",
"articles/cognitive-services/Translator/**/*.md": "https://feedback.azure.com/forums/932041-azure-cognitive-services?category_id=395749",
"articles/communication-services/**/*.md": "https://feedback.azure.com/forums/934536-azure-communication-services",
"articles/connectors/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/container-instances/**/*.md": "https://feedback.azure.com/forums/602224-azure-container-instances",
"articles/container-registry/**/*.md": "https://feedback.azure.com/forums/903958-azure-container-registry",
"articles/containers/**/*.md": "https://feedback.azure.com/forums/602224-azure-container-instances",
"articles/container-service/**/*.md": "https://feedback.azure.com/forums/914020-azure-kubernetes-service-aks",
"articles/cosmos-db/**/*.md": "https://feedback.azure.com/forums/263030-azure-cosmos-db",
"articles/managed-instance-apache-cassandra/**/*.md": "https://feedback.azure.com/forums/263030-azure-cosmos-db?category_id=398548",
"articles/cost-management-billing/**/*.md": "https://feedback.azure.com/forums/170030-signup-and-billing",
"articles/cost-management-billing/costs/**/*.md": "https://feedback.azure.com/forums/906772-cost-management",
"articles/cost-management-billing/manage/**/*.md": "https://feedback.azure.com/forums/170030-signup-and-billing",
"articles/cost-management-billing/reservations/**/*.md": "https://feedback.azure.com/forums/926206-azure-reservations",
"articles/data-catalog/**/*.md": "https://feedback.azure.com/forums/906052-data-catalog",
"articles/data-factory/**/*.md": "https://feedback.azure.com/forums/270578-data-factory",
"articles/data-lake-analytics/**/*.md": "https://feedback.azure.com/forums/327234-data-lake",
"articles/data-lake-store/**/*.md": "https://feedback.azure.com/forums/327234-data-lake",
"articles/data-share/**/*.md": "https://feedback.azure.com/forums/922759-azure-data-share-public-preview",
"articles/dev-spaces/**/*.md": "https://github.com/Azure/dev-spaces/issues",
"articles/devtest-lab/**/*.md": "https://feedback.azure.com/forums/320373-devtest-labs",
"articles/digital-twins/**/*.md": "https://feedback.azure.com/forums/916621-azure-digital-twins",
"articles/dms/**/*.md": "https://feedback.azure.com/forums/906100-azure-database-migration-service",
"articles/dns/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=77466",
"articles/docker/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/documentdb/**/*.md": "https://feedback.azure.com/forums/263030-azure-cosmos-db",
"articles/dotnet/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/event-grid/**/*.md": "https://feedback.azure.com/forums/909934-azure-event-grid",
"articles/event-hubs/**/*.md": "https://feedback.azure.com/forums/911458-event-hubs",
"articles/expressroute/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=86745",
"articles/firewall/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=345022",
"articles/frontdoor/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=345025",
"articles/genomics/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/germany/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/governance/**/*.md": "https://feedback.azure.com/forums/915958-azure-governance",
"articles/guidance/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/guides/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/hdinsight/**/*.md": "https://feedback.azure.com/forums/217335-hdinsight",
"articles/industry/agriculture/**/*.md": "https://feedback.azure.com/forums/924718-Azure-farmbeats",
"articles/iot-central/**/*.md": "https://feedback.azure.com/forums/911455-azure-iot-central",
"articles/iot-dps/**/*.md": "https://feedback.azure.com/forums/321918-azure-iot",
"articles/iot-edge/**/*.md": "https://feedback.azure.com/forums/907045-azure-iot-edge",
"articles/iot-hub/**/*.md": "https://feedback.azure.com/forums/321918-azure-iot",
"articles/iot-suite/**/*.md": "https://feedback.azure.com/forums/321918-azure-iot",
"articles/jenkins/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/key-vault/**/*.md": "https://feedback.azure.com/forums/906355-azure-key-vault",
"articles/lighthouse/**/*.md": "https://feedback.azure.com/forums/922753-azure-lighthouse",
"articles/load-balancer/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=77467",
"articles/log-analytics/**/*.md": "https://feedback.azure.com/forums/267889-log-analytics",
"articles/logic-apps/**/*.md": "https://feedback.azure.com/forums/287593-logic-apps",
"articles/machine-learning/*.md": "https://feedback.azure.com/forums/257792-machine-learning",
"articles/machine-learning/data-science-virtual-machine/*.md": "https://feedback.azure.com/forums/910651-data-science-vms",
"articles/machine-learning/studio/*.md": "https://feedback.azure.com/forums/257792-machine-learning",
"articles/machine-learning/team-data-science-process/*.md": "https://feedback.azure.com/forums/257792-machine-learning",
"articles/managed-applications/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/marketplace/**/*.md": "https://feedback.azure.com/forums/216369-azure-marketplace",
"articles/marketplace-consumer/**/*.md": "https://feedback.azure.com/forums/216369-azure-marketplace",
"articles/marketplace-publishing/**/*.md": "https://feedback.azure.com/forums/216369-azure-marketplace",
"articles/media-services/**/*.md": "https://feedback.azure.com/forums/169396-azure-media-services",
"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/forums/907195-azure-migrate",
"articles/mobile-engagement/**/*.md": "https://feedback.azure.com/forums/285737-mobile-engagement",
"articles/monitoring-and-diagnostics/**/*.md": "https://feedback.azure.com/forums/231545-diagnostics-and-monitoring",
"articles/multi-factor-authentication/**/*.md": "https://feedback.azure.com/forums/169401-azure-active-directory",
"articles/mysql/**/*.md": "https://feedback.azure.com/forums/597982-azure-database-for-mysql",
"articles/networking/**/*.md": "https://feedback.azure.com/forums/217313-networking",
"articles/network-watcher/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=195844",
"articles/notebooks/**/*.md": "https://github.com/microsoft/AzureNotebooks/issues",
"articles/notification-hubs/**/*.md": "https://feedback.azure.com/forums/218849-notification-hubs",
"articles/openshift/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/operations-management-suite/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/postgresql/**/*.md": "https://feedback.azure.com/forums/597976-azure-database-for-postgresql",
"articles/power-bi-embedded/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/power-bi-workspace-collections/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/purview/**/*.md": "https://feedback.azure.com/forums/932437-azure-purview",
"articles/resiliency/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/scheduler/**/*.md": "https://feedback.azure.com/forums/230896-scheduler",
"articles/search/**/*.md": "https://feedback.azure.com/forums/263029-azure-search",
"articles/security/**/*.md": "https://feedback.azure.com/forums/216840-security-and-compliance",
"articles/security-center/**/*.md": "https://feedback.azure.com/forums/347535-azure-security-center",
"articles/sentinel/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/service-bus/**/*.md": "https://feedback.azure.com/forums/216926-service-bus",
"articles/service-bus-messaging/**/*.md": "https://feedback.azure.com/forums/216926-service-bus",
"articles/service-fabric/**/*.md": "https://feedback.azure.com/forums/293901-service-fabric",
"articles/service-health/**/*.md": "https://feedback.azure.com/forums/919477-azure-service-health",
"articles/site-recovery/**/*.md": "https://feedback.azure.com/forums/256299-site-recovery",
"articles/spatial-anchors/**/*.md": "https://feedback.azure.com/forums/919252-azure-spatial-anchors",
"articles/sql-database/**/*.md": "https://feedback.azure.com/forums/217321-sql-database",
"articles/sql-data-warehouse/**/*.md": "https://feedback.azure.com/forums/307516-sql-data-warehouse",
"articles/sql-server-stretch-database/**/*.md": "https://feedback.azure.com/forums/217321-sql-database",
"articles/storage/**/*.md": "https://feedback.azure.com/forums/217298-storage",
"articles/storsimple/**/*.md": "https://feedback.azure.com/forums/257791-storsimple",
"articles/stream-analytics/**/*.md": "https://feedback.azure.com/forums/270577-stream-analytics",
"articles/terraform/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/time-series-insights/**/*.md": "https://feedback.azure.com/forums/906859-azure-time-series-insights",
"articles/traffic-manager/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=77466",
"articles/virtual-desktop/**/*.md": "https://windowsvirtualdesktop.uservoice.com/forums/921118-general",
"articles/virtual-machines/**/*.md": "https://feedback.azure.com/forums/216843-virtual-machines",
"articles/virtual-machine-scale-sets/**/*.md": "https://feedback.azure.com/forums/216843-virtual-machines",
"articles/virtual-network/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=77469",
"articles/visual-studio/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/vpn-gateway/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=77470"
},
"feedback_system": {
"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": "gwallace",
"articles/app-service-mobile/**/*.md": "crdun",
"articles/automanage/*md": "mamccrea",
"articles/automation/**/*.md": "evansma",
"articles/azure-arc/servers/**/*.md": "evansma",
"articles/azure-functions/**/*.md": "gwallace",
"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": "gwallace",
"articles/backup/**/*.md": "evansma",
"articles/baremetal-infrastructure/**/*.md": "gwallace",
"articles/batch/**/*.md": "evansma",
"articles/cognitive-services/**/*.md": "nitinme",
"articles/defender-for-iot/organizations/*.md": "raynew",
"articles/defender-for-iot/device-builders/*.md": "raynew",
"articles/devtest-labs/**/*.md": "femila",
"articles/lab-services/**/*.md": "femila",
"articles/migrate/**/*.md": "evansma",
"articles/remote-rendering/**/*.md": "jlyons",
"articles/site-recovery/**/*.md": "evansma",
"articles/synapse-analytics/**/*.md": "jroth",
"articles/virtual-machines/**/*.md": "mamccrea",
"articles/virtual-machine-scale-sets/**/*.md": "mamccrea"
},
"ms.author": {
"articles/advisor/*.md": "sagupt",
"articles/aks/**/*.md": "mlearned",
"articles/ansible/**/*.md": "tarcher",
"articles/app-service/*.md": "cephalin",
"articles/app-service/containers/*.md": "cephalin",
"articles/app-service/environment/*.md": "ccompy",
"articles/app-service/scripts/*.md": "cephalin",
"articles/app-service-mobile/**/*.md": "emalani",
"articles/automanage/*md": "daberry",
"articles/automation/**/*.md": "magoedte",
"articles/azure-arc/**/*.md": "magoedte",
"articles/azure-arc/servers/**/*.md": "magoedte",
"articles/azure-functions/**/*.md": "glenga",
"articles/azure-government/**/*.md": "stevevi",
"articles/azure-monitor/app/*.md": "lagayhar",
"articles/azure-monitor/containers/**/*.md": "bwren",
"articles/azure-monitor/insights/container-insights*.md": "bwren",
"articles/azure-monitor/log-query/*.md": "robb",
"articles/azure-monitor/platform/*.md": "robb",
"articles/azure-monitor/agents/*.md": "bwren",
"articles/azure-monitor/alerts/*.md": "robb",
"articles/azure-monitor/autoscale/*.md": "robb",
"articles/azure-monitor/containers/*.md": "bwren",
"articles/azure-monitor/essentials/*.md": "robb",
"articles/azure-monitor/*.md": "bwren",
"articles/azure-monitor/insights/*.md": "bwren",
"articles/azure-monitor/logs/*.md": "robb",
"articles/azure-monitor/visualize/**/*.md": "lagayhar",
"articles/azure-monitor/vm/*.md": "bwren",
"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": "tomfitz",
"articles/azure-resource-manager/management/**/*.md": "tomfitz",
"articles/azure-resource-manager/templates/**/*.md": "jgao",
"articles/azure-resource-manager/bicep/**/*.md": "jgao",
"articles/azure-vmware/**/*.md": "v-patsho",
"articles/backup/**/*.md": "v-amallick",
"articles/baremetal-infrastructure/**/*.md": "v-hborys",
"articles/batch/**/*.md": "jenhayes",
"articles/blockchain/**/*.md": "patricka",
"articles/chef/**/*.md": "tarcher",
"articles/cognitive-services/**/*.md": "erhopf",
"articles/cognitive-services/Anomaly-Detector/**/*.md": "aahi",
"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/cognitive-services/form-recognizer/**/*.md": "pafarley",
"articles/cognitive-services/Ink-Recognizer/**/*.md": "aahi",
"articles/cognitive-services/LUIS/**/*.md": "aahi",
"articles/cognitive-services/personalizer/**/*.md": "edjez",
"articles/cognitive-services/QnAMaker/**/*.md": "nerajput",
"articles/cognitive-services/Speech/**/*.md": "nitinme",
"articles/cognitive-services/Speech-Service/**/*.md": "trbye",
"articles/cognitive-services/text-analytics/**/*.md": "aahi",
"articles/connectors/*.md": "estfan",
"articles/container-instances/**/*.md": "macolso",
"articles/container-registry/**/*.md": "danlep",
"articles/data-lake-analytics/*.md": "xujiang1",
"articles/defender-for-iot/organizations/*.md": "shhazam",
"articles/defender-for-iot/device-builders/*.md": "v-ekrieg",
"articles/dev-spaces/**/*.md": "zarhoads",
"articles/devtest-labs/**/*.md": "juliako",
"articles/event-grid/**/*.md": "spelluru",
"articles/event-hubs/*.md": "spelluru",
"articles/governance/*.md": "dacoulte",
"articles/governance/blueprints/**/*.md": "dacoulte",
"articles/governance/management-groups/**/*.md": "rithorn",
"articles/governance/policy/**/*.md": "dacoulte",
"articles/governance/resource-graph/**/*.md": "dacoulte",
"articles/hdinsight/*.md": "jasonh",
"articles/hdinsight/kafka/*.md": "argangu",
"articles/hdinsight/**/*.md": "jasonh",
"articles/jenkins/**/*.md": "tarcher",
"articles/lab-services/**/*.md": "juliako",
"articles/lighthouse/**/*.md": "jenhayes",
"articles/logic-apps/*.md": "estfan",
"articles/machine-learning/*.md": "jmartens",
"articles/machine-learning/studio/*.md": "jmartens",
"articles/marketplace/**/*.md": "mingshen",
"articles/media-services/**/*.md": "juliako",
"articles/media-services/*.md": "juliako",
"articles/migrate/*.md": "raynew",
"articles/notebooks/*.md": "joshuapa",
"articles/service-bus-messaging/*.md": "spelluru",
"articles/service-fabric/*.md": "sukanyas",
"articles/service-health/*.md": "stbaron",
"articles/site-recovery/*.md": "v-jysur",
"articles/stream-analytics/*.md": "jasonh",
"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-for-media-docs/*.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": "networking"
},
"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-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/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-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/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-for-media-docs/*.md": "azure-video-analyzer"
},
"ms.subservice": {
"articles/azure-arc/kubernetes/**/*.md": "azure-arc-kubernetes",
"articles/azure-arc/servers/**/*.md": "azure-arc-servers",
"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/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/cognitive-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/cognitive-services/personalizer/**/*.md": "personalizer",
"articles/cognitive-services/QnAMaker/**/*.md": "qna-maker",
"articles/cognitive-services/Speech/**/*.md": "bing-speech",
"articles/cognitive-services/Speech-Service/**/*.md": "speech-service",
"articles/cognitive-services/text-analytics/**/*.md": "text-analytics",
"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-for-media-docs/*.md": "azure-video-analyzer-media",
"articles/azure-video-analyzer/video-analyzer-docs/*.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"
},
"monikerRange": {
"articles/iot-edge/**/*.md": ">=iotedge-2018-06"
},
"recommendations": {
"articles/cognitive-services/Translator/**/*.md": false,
"articles/azure-video-analyzer/video-analyzer-docs/*.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/**/*.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",