forked from MicrosoftDocs/azure-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docfx.json
837 lines (837 loc) · 52.3 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
{
"build": {
"markdownEngineName": "markdig",
"content": [
{
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"**/obj/**",
"**/includes/**",
"**/_themes/**"
],
"src": "articles",
"dest": "."
},
{
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"**/obj/**",
"**/includes/**",
"**/_themes/**"
],
"src": "bread",
"dest": "bread"
}
],
"resource": [
{
"files": [
"**/*.svg",
"**/*.png",
"**/*.jpg",
"**/*.jpeg",
"**/*.gif"
],
"exclude": [
"**/obj/**",
"**/_themes/**"
],
"src": "articles",
"dest": "."
},
{
"files": [
"includes/**/*.svg",
"includes/**/*.png",
"includes/**/*.jpg",
"includes/**/*.jpeg",
"includes/**/*.gif"
],
"exclude": [
"**/obj/**",
"**/_themes/**"
],
"src": null,
"dest": null
}
],
"overwrite": [],
"externalReference": [],
"globalMetadata": {
"feedback_system": "GitHub",
"feedback_github_repo": "MicrosoftDocs/azure-docs",
"feedback_product_url": "https://feedback.azure.com/forums/34192--general-feedback",
"breadcrumb_path": "/azure/bread/toc.json",
"brand": "azure",
"uhfHeaderId": "azure",
"searchScope": [
"Azure"
],
"recommendations": true,
"contributors_to_exclude": [
"PRmerger",
"PRMerger9",
"PRMerger17",
"PRMerger5",
"PRMerger4",
"PRMerger3",
"PRMerger-2",
"openpublishingbuild",
"tysonn",
"hexiaokai",
"v-anpasi",
"kiwhit",
"DuncanmaMSFT",
"Saisang",
"deneha",
"atookey",
"chbain",
"garycentric",
"GitHubber17",
"itechedit",
"Ja-Dunn",
"Jak-MS",
"jborsecnik",
"jomolnar",
"KatieCumming",
"Kellylorenebaker",
"ktoliver",
"Lisaco88",
"MattGLaBelle",
"megvanhuygen",
"PMEds28",
"rjagiewich",
"rmca14",
"ShannonLeavitt",
"ShawnJackson",
"TedA-M",
"tfosmark",
"tiburd",
"trishamc",
"ttorble",
"v-albemi",
"v-dansch",
"v-rihow",
"v-shils",
"v-thepet",
"sdwheeler",
"meganbradley"
],
"_op_documentIdPathDepotMapping": {
"articles/iot-central/": {
"depot_name": "MSDN.microsoft-iot-central",
"folder_relative_path_in_docset": "articles"
}
}
},
"fileMetadata": {
"author": {
"articles/advisor/*.md": "saket-ms",
"articles/azure-arc/servers/**/*.md": "mgoedtel",
"articles/azure-arc/**/*.md": "mgoedtel",
"articles/connectors/*.md": "ecfan",
"articles/batch/**/*.md": "JnHs",
"articles/event-grid/**/*.md": "spelluru",
"articles/event-hubs/**/*.md": "spelluru",
"articles/logic-apps/*.md": "ecfan",
"articles/governance/*.md": "DCtheGeek",
"articles/governance/blueprints/**/*.md": "DCtheGeek",
"articles/governance/policy/**/*.md": "DCtheGeek",
"articles/governance/management-groups/**/*.md": "rthorn17",
"articles/governance/resource-graph/**/*.md": "DCtheGeek",
"articles/azure-functions/**/*.md": "ggailey777",
"articles/devtest-labs/**/*.md": "juliako",
"articles/lab-services/**/*.md": "juliako",
"articles/azure-monitor/insights/container-insights*.md": "bwren",
"articles/azure-monitor/app/*.md": "mrbullwinkle",
"articles/azure-monitor/log-query/*.md": "rboucher",
"articles/azure-monitor/platform/*.md": "rboucher",
"articles/app-service/*.md": "cephalin",
"articles/app-service/containers/*.md": "cephalin",
"articles/app-service/scripts/*.md": "cephalin",
"articles/app-service/environment/*.md": "ccompy",
"articles/app-service-mobile/**/*.md": "elamalani",
"articles/ansible/**/*.md": "TomArcherMsft",
"articles/automation/**/*.md": "mgoedtel",
"articles/azure-relay/*.md": "spelluru",
"articles/azure-vmware/**/*.md": "shortpatti",
"articles/backup/**/*.md": "dcurwin",
"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": "diberry",
"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/container-instances/**/*.md": "macolso",
"articles/container-registry/**/*.md": "dlepow",
"articles/jenkins/**/*.md": "TomArcherMsft",
"articles/terraform/**/*.md": "TomArcherMsft",
"articles/lighthouse/**/*.md": "JnHs",
"articles/notebooks/*.md": "JoshuaPartlow",
"articles/service-health/*.md": "stephbaron",
"articles/azure-resource-manager/*.md": "tfitzmac",
"articles/azure-resource-manager/templates/**/*.md": "mumian",
"articles/azure-resource-manager/management/**/*.md": "tfitzmac",
"articles/azure-resource-manager/managed-applications/**/*.md": "tfitzmac",
"articles/azure-resource-manager/custom-providers/**/*.md": "tfitzmac",
"articles/dev-spaces/**/*.md": "zr-msft",
"articles/service-bus-messaging/*.md": "axisc",
"articles/site-recovery/*.md": "rayne-wiselman",
"articles/migrate/*.md": "rayne-wiselman",
"articles/virtual-machines/linux/*.md": "cynthn",
"articles/virtual-machines/windows/*.md": "cynthn",
"articles/virtual-machines/*.md": "cynthn",
"articles/virtual-machines-scale-sets/*.md": "ju-shim",
"articles/service-fabric/*.md": "athinanthny",
"articles/service-fabric-mesh/*.md": "athinanthny",
"articles/aks/**/*.md": "mlearned",
"articles/media-services/**/*.md": "Juliako",
"articles/media-services/**/**/*.md": "Juliako",
"articles/marketplace/**/*.md": "mingshen-ms",
"articles/azure-government/**/*.md": "stevevi",
"articles/data-lake-analytics/*.md": "xujxu"
},
"feedback_system": {
"articles/virtual-machines/windows/classic/**/*": "None",
"articles/virtual-machines/linux/classic/**/*": "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"
},
"feedback_product_url": {
"articles/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"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/active-directory/**/*.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/app-service-mobile/**/*.md": "https://github.com/Azure/azure-mobile-apps/issues",
"articles/app-service/**/*.md": "https://feedback.azure.com/forums/169385-web-apps",
"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/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-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-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/industry/agriculture/**/*.md": "https://feedback.azure.com/forums/924718-Azure-farmbeats",
"articles/azure-maps/**/*.md": "https://feedback.azure.com/forums/909172-azure-maps",
"articles/azure-portal/**/*.md": "https://feedback.azure.com/forums/223579-azure-portal",
"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-supportability/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"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-ai/**/*.md": "https://feedback.azure.com/forums/905575-batch-ai",
"articles/batch/**/*.md": "https://feedback.azure.com/forums/269742-batch",
"articles/billing/**/*.md": "https://feedback.azure.com/forums/170030-signup-and-billing",
"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/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/cloudfoundry/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/cognitive-services/Academic-Knowledge/**/*.md": "https://cognitive.uservoice.com/forums/555931-academic-knowledge",
"articles/cognitive-services/Anomaly-Detector/**/*.md": "https://cognitive.uservoice.com/forums/912196-anomaly-detector",
"articles/cognitive-services/Bing-Autosuggest/**/*.md": "https://cognitive.uservoice.com/forums/598198-bing-autosuggest",
"articles/cognitive-services/Bing-Custom-Search**/*.md": "https://cognitive.uservoice.com/forums/598147-bing-custom-search",
"articles/cognitive-services/Bing-Entities-Search/**/*.md": "https://cognitive.uservoice.com/forums/601036-bing-entity-search",
"articles/cognitive-services/Bing-Image-Search/**/*.md": "https://cognitive.uservoice.com/forums/555907-bing-search",
"articles/cognitive-services/Bing-News-Search/**/*.md": "https://cognitive.uservoice.com/forums/555907-bing-search",
"articles/cognitive-services/Bing-Video-Search/**/*.md": "https://cognitive.uservoice.com/forums/555907-bing-search",
"articles/cognitive-services/Bing-Web-Search/**/*.md": "https://cognitive.uservoice.com/forums/555907-bing-search",
"articles/cognitive-services/Speech/**/*.md": "https://cognitive.uservoice.com/forums/430321-bing-speech",
"articles/cognitive-services/Bing-Spell-Check/**/*.md": "https://cognitive.uservoice.com/forums/598195-bing-spell-check",
"articles/cognitive-services/Computer-vision/**/*.md": "https://cognitive.uservoice.com/forums/430309-computer-vision",
"articles/cognitive-services/Content-Moderator/**/*.md": "https://cognitive.uservoice.com/forums/559960-content-moderator",
"articles/cognitive-services/custom-decision-service/**/*.md": "https://cognitive.uservoice.com/forums/598138-custom-decision-service",
"articles/cognitive-services/Custom-Speech-Service/**/*.md": "https://cognitive.uservoice.com/forums/555934-custom-speech-service",
"articles/cognitive-services/Custom-Vision-Service/**/*.md": "https://cognitive.uservoice.com/forums/598141-custom-vision-service",
"articles/cognitive-services/Emotion/**/*.md": "https://cognitive.uservoice.com/forums/430312-emotion",
"articles/cognitive-services/EntityLinking/**/*.md": "https://cognitive.uservoice.com/forums/555937-entity-linking-intelligent-service",
"articles/cognitive-services/Face/**/*.md": "https://cognitive.uservoice.com/forums/430315-face",
"articles/cognitive-services/*.md": "https://cognitive.uservoice.com/forums/356325-general-feedback",
"articles/cognitive-services/KES/**/*.md": "https://cognitive.uservoice.com/forums/555946-knowledge-exploration",
"articles/cognitive-services/LinguisticAnalysisAPI/**/*.md": "https://cognitive.uservoice.com/forums/555928-linguistic-analysis",
"articles/cognitive-services/LUIS/**/*.md": "https://cognitive.uservoice.com/forums/551524-luis",
"articles/cognitive-services/QnAMaker/**/*.md": "https://cognitive.uservoice.com/forums/578689-qna-maker",
"articles/cognitive-services/Recommendations/**/*.md": "https://cognitive.uservoice.com/forums/555940-recommendations",
"articles/cognitive-services/Speaker-recognition/**/*.md": "https://cognitive.uservoice.com/forums/555925-speaker-recognition",
"articles/cognitive-services/text-analytics/**/*.md": "https://cognitive.uservoice.com/forums/555922-text-analytics",
"articles/cognitive-services/Translator/**/*.md": "https://cognitive.uservoice.com/forums/558796-translator",
"articles/cognitive-services/translator-speech/**/*.md": "https://cognitive.uservoice.com/forums/558796-translator",
"articles/media-services/video-indexer/**/*.md": "https://cognitive.uservoice.com/forums/598144-video-indexer",
"articles/cognitive-services/Web-Language-Model/**/*.md": "https://cognitive.uservoice.com/forums/555943-weblm",
"articles/cognitive-services/form-recognizer/**/*.md": "https://cognitive.uservoice.com/forums/921556-form-recognizer",
"articles/cognitive-services/Ink-Recognizer/**/*.md": "https://cognitive.uservoice.com/forums/921559-ink-recognizer",
"articles/cognitive-services/speech-service/**/*.md": "https://cognitive.uservoice.com/forums/912208-speech-service",
"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/container-service/**/*.md": "https://feedback.azure.com/forums/914020-azure-kubernetes-service-aks",
"articles/containers/**/*.md": "https://feedback.azure.com/forums/602224-azure-container-instances",
"articles/cosmos-db/**/*.md": "https://feedback.azure.com/forums/263030-azure-cosmos-db",
"articles/cost-management/**/*.md": "https://feedback.azure.com/forums/906772-cost-management",
"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/34192--general-feedback",
"articles/event-hubs/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/expressroute/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=86745",
"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/governance/**/*.md": "https://feedback.azure.com/forums/915958-azure-governance",
"articles/germany/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"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/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/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/machine-learning/data-science-virtual-machine/*.md": "https://feedback.azure.com/forums/910651-data-science-vms",
"articles/managed-applications/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"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/marketplace/**/*.md": "https://feedback.azure.com/forums/216369-azure-marketplace",
"articles/media-services/**/*.md": "https://feedback.azure.com/forums/169396-azure-media-services",
"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/network-watcher/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=195844",
"articles/networking/**/*.md": "https://feedback.azure.com/forums/217313-networking",
"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/azure-cache-for-redis/**/*.md": "https://feedback.azure.com/forums/169382-cache",
"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-center/**/*.md": "https://feedback.azure.com/forums/347535-azure-security-center",
"articles/security/**/*.md": "https://feedback.azure.com/forums/216840-security-and-compliance",
"articles/sentinel/**/*.md": "https://feedback.azure.com/forums/34192--general-feedback",
"articles/service-bus-messaging/**/*.md": "https://feedback.azure.com/forums/216926-service-bus",
"articles/azure-relay/**/*.md": "https://feedback.azure.com/forums/216926-service-bus",
"articles/service-bus/**/*.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-data-warehouse/**/*.md": "https://feedback.azure.com/forums/307516-sql-data-warehouse",
"articles/sql-database/**/*.md": "https://feedback.azure.com/forums/217321-sql-database",
"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-machine-scale-sets/**/*.md": "https://feedback.azure.com/forums/216843-virtual-machines",
"articles/virtual-machines/**/*.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",
"articles/firewall/**/*.md": "https://feedback.azure.com/forums/217313-networking?category_id=345022"
},
"manager": {
"articles/azure-sql/**/*.md": "jroth",
"articles/synapse-analytics/**/*.md": "jroth",
"articles/azure-sql-edge/**/*.md" : "jroth",
"articles/azure-functions/**/*.md": "gwallace",
"articles/app-service/**/*.md": "gwallace",
"articles/app-service-mobile/**/*.md": "crdun",
"articles/azure-monitor/**/*.md": "carmonm",
"articles/azure-relay/*.md": "femila",
"articles/automation/**/*.md": "carmonm",
"articles/azure-vmware/**/*.md": "gwallace",
"articles/backup/**/*.md": "carmonm",
"articles/cognitive-services/**/*.md": "nitinme",
"articles/event-grid/**/*.md": "femila",
"articles/event-hubs/**/*.md": "femila",
"articles/devtest-labs/**/*.md": "femila",
"articles/lab-services/**/*.md": "femila",
"articles/site-recovery/**/*.md": "carmonm",
"articles/migrate/**/*.md": "carmonm",
"articles/service-bus-messaging/*.md": "femila",
"articles/batch/**/*.md": "evansma",
"articles/azure-arc/servers/**/*.md": "evansma",
"articles/virtual-machines/**/*.md": "gwallace",
"articles/virtual-machine-scale-sets/**/*.md": "gwallace",
"articles/remote-rendering/**/*.md": "jlyons"
},
"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/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.author": {
"articles/advisor/*.md": "sagupt",
"articles/azure-arc/servers/**/*.md": "magoedte",
"articles/azure-arc/**/*.md": "magoedte",
"articles/connectors/*.md": "estfan",
"articles/logic-apps/*.md": "estfan",
"articles/governance/*.md": "dacoulte",
"articles/governance/blueprints/**/*.md": "dacoulte",
"articles/governance/policy/**/*.md": "dacoulte",
"articles/governance/management-groups/**/*.md": "rithorn",
"articles/governance/resource-graph/**/*.md": "dacoulte",
"articles/azure-functions/**/*.md": "glenga",
"articles/azure-monitor/app/*.md": "mbullwin",
"articles/azure-monitor/log-query/*.md": "robb",
"articles/azure-monitor/platform/*.md": "robb",
"articles/azure-monitor/insights/container-insights*.md": "magoedte",
"articles/app-service/*.md": "cephalin",
"articles/app-service/containers/*.md": "cephalin",
"articles/app-service/scripts/*.md": "cephalin",
"articles/app-service/environment/*.md": "ccompy",
"articles/app-service-mobile/**/*.md": "emalani",
"articles/ansible/**/*.md": "tarcher",
"articles/automation/**/*.md": "magoedte",
"articles/azure-relay/*.md": "spelluru",
"articles/azure-vmware/**/*.md": "v-patsho",
"articles/backup/**/*.md": "dacurwin",
"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": "diberry",
"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/container-instances/**/*.md": "macolso",
"articles/container-registry/**/*.md": "danlep",
"articles/event-grid/**/*.md": "spelluru",
"articles/event-hubs/*.md": "spelluru",
"articles/jenkins/**/*.md": "tarcher",
"articles/terraform/**/*.md": "tarcher",
"articles/devtest-labs/**/*.md": "juliako",
"articles/lab-services/**/*.md": "juliako",
"articles/lighthouse/**/*.md": "jenhayes",
"articles/azure-resource-manager/*.md": "tomfitz",
"articles/azure-resource-manager/templates/**/*.md": "jgao",
"articles/azure-resource-manager/management/**/*.md": "tomfitz",
"articles/azure-resource-manager/managed-applications/**/*.md": "tomfitz",
"articles/azure-resource-manager/custom-providers/**/*.md": "tomfitz",
"articles/machine-learning/*.md": "jmartens",
"articles/machine-learning/studio/*.md": "jmartens",
"articles/dev-spaces/**/*.md": "zarhoads",
"articles/service-bus-messaging/*.md": "aschhab",
"articles/site-recovery/*.md": "raynew",
"articles/migrate/*.md": "raynew",
"articles/virtual-machines/linux/*.md": "cynthn",
"articles/virtual-machines/windows/*.md": "cynthn",
"articles/virtual-machines/*.md": "cynthn",
"articles/virtual-machines-scale-sets/*.md": "jushiman",
"articles/batch/**/*.md": "jenhayes",
"articles/service-fabric/*.md": "atsenthi",
"articles/service-fabric-mesh/*md": "atsenthi",
"articles/notebooks/*.md": "joshuapa",
"articles/service-health/*.md": "stbaron",
"articles/aks/**/*.md": "mlearned",
"articles/media-services/*.md": "juliako",
"articles/media-services/**/*.md": "juliako",
"articles/marketplace/**/*.md": "dsindona",
"articles/azure-government/**/*.md": "stevevi",
"articles/data-lake-analytics/*.md": "xujiang1"
},
"ms.service": {
"articles/batch/**/*.md": "batch",
"articles/connectors/*.md": "logic-apps",
"articles/event-grid/**/*.md": "event-grid",
"articles/event-hubs/*.md": "event-hubs",
"articles/logic-apps/*.md": "logic-apps",
"articles/governance/*.md": "governance",
"articles/governance/blueprints/**/*.md": "blueprints",
"articles/governance/policy/**/*.md": "azure-policy",
"articles/governance/management-groups/**/*.md": "governance",
"articles/governance/resource-graph/**/*.md": "resource-graph",
"articles/advisor/**/*.md": "advisor",
"articles/azure-arc/**/*.md": "azure-arc",
"articles/azure-functions/**/*.md": "azure-functions",
"articles/azure-monitor/**/*.md": "azure-monitor",
"articles/azure-relay/*.md": "service-bus-relay",
"articles/app-service/**/*.md": "app-service",
"articles/app-service-mobile/**/*.md": "app-service-mobile",
"articles/automation/**/*.md": "automation",
"articles/azure-vmware/**/*.md": "azure-vmware",
"articles/industry/**/*.md": "azure-industry",
"articles/ansible/**/*.md": "ansible",
"articles/backup/**/*.md": "backup",
"articles/blockchain/**/*.md": "azure-blockchain",
"articles/chef/**/*.md": "chef",
"articles/cognitive-services/**/*.md": "cognitive-services",
"articles/container-instances/**/*.md": "container-instances",
"articles/container-registry/**/*.md": "container-registry",
"articles/jenkins/**/*.md": "jenkins",
"articles/terraform/**/*.md": "terraform",
"articles/devtest-labs/**/*.md": "devtest-lab",
"articles/lab-services/**/*.md": "lab-services",
"articles/lighthouse/**/*.md": "lighthouse",
"articles/virtual-machines/*.md": "virtual-machines",
"articles/virtual-machine-scale-sets/*.md": "virtual-machine-scale-sets",
"articles/azure-resource-manager/**/*.md": "azure-resource-manager",
"articles/azure-resource-manager/managed-applications/**/*.md": "managed-applications",
"articles/azure-resource-manager/custom-providers/**/*.md": "azure-custom-providers",
"articles/dev-spaces/**/*.md": "azure-dev-spaces",
"articles/site-recovery/*.md": "site-recovery",
"articles/migrate/*.md": "azure-migrate",
"articles/notebooks/*.md": "azure-notebooks",
"articles/service-bus-messaging/*.md": "service-bus-messaging",
"articles/service-fabric/*.md": "service-fabric",
"articles/service-fabric-mesh/*.md": "service-fabric-mesh",
"articles/service-health/**/*.md": "service-health",
"articles/aks/**/*.md": "container-service",
"articles/remote-rendering/**/*.md": "azure-remote-rendering",
"articles/media-services/*.md": "media-services",
"articles/media-services/**/*.md": "media-services",
"articles/azure-government/**/*.md": "azure-government",
"articles/marketplace/**/*.md": "marketplace",
"articles/virtual-desktop/**/*.md": "virtual-desktop"
},
"ms.subservice": {
"articles/industry/agriculture/**/*.md": "agriculture",
"articles/azure-arc/servers/**/*.md": "azure-arc-servers",
"articles/azure-monitor/app/**/*.md": "application-insights",
"articles/azure-monitor/log-query/**/.md": "logs",
"articles/azure-monitor/platform/autoscale-*.md": "autoscale",
"articles/azure-monitor/platform/alert*.md": "alerts",
"articles/azure-monitor/platform/action-group*.md": "alerts",
"articles/azure-resource-manager/templates/**/*.md": "templates",
"articles/azure-resource-manager/management/**/*.md": "management",
"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/media-services/latest/*.md": "rest-v3",
"articles/media-services/previous/*.md": "rest-v2",
"articles/media-services/video-indexer/*.md": "video-indexer",
"articles/media-services/azure-media-player/*.md": "media-player",
"articles/media-services/live-video-analytics-edge/*.md": "lva-edge"
},
"no-loc": {
"articles/governance/policy/**/*.md": "[audit, deny, modify, disabled, auditifnotexists, deployifnotexists]",
"includes/policy/**/*.md": "[audit, deny, modify, disabled, auditifnotexists, deployifnotexists]"
},
"searchScope": {
"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/backup/**/*.md": ["Azure","Azure Backup"],
"articles/backup/**/*.yml": ["Azure","Azure Backup"],
"articles/cost-management-billing/**/*.md": ["Azure","Cost Management Billing"],
"articles/cost-management-billing/**/*.yml": ["Azure","Cost Management Billing"],
"articles/cosmos-db/**/*.md": ["Azure","Azure Cosmos DB"],
"articles/cosmos-db/**/*.yml": ["Azure","Azure Cosmos DB"],
"articles/data-catalog/**/*.md": ["Azure","Azure Data Catalog"],
"articles/data-catalog/**/*.yml": ["Azure","Azure Data Catalog"],
"articles/data-explorer/**/*.md": ["Azure","Kusto","Azure Data Explorer"],
"articles/data-explorer/**/*.yml": ["Azure","Kusto","Azure Data Explorer"],
"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/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-pnp/**/*.md": ["Azure","IoT","IoT Plug and Play"],
"articles/iot-pnp/**/*.yml": ["Azure","IoT","IoT Plug and Play"],
"articles/digital-twins/**/*.md": ["Azure","IoT","Azure Digital Twins"],
"articles/digital-twins/**/*.yml": ["Azure","IoT","Azure Digital Twins"],
"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-hub/**/*.md": ["Azure","IoT","Azure IoT Hub"],
"articles/iot-hub/**/*.yml": ["Azure","IoT","Azure IoT Hub"],
"articles/iot-fundamentals/**/*.md": ["Azure","IoT"],
"articles/iot-fundamentals/**/*.yml": ["Azure","IoT"],
"articles/mariadb/**/*.md": ["Azure","Azure Database for MariaDB"],
"articles/mariadb/**/*.yml": ["Azure","Azure Database for MariaDB"],
"articles/marketplace/**/*.md": ["Azure","Microsoft commercial marketplace"],
"articles/marketplace/**/*.yml": ["Azure","Microsoft commercial marketplace"],
"articles/mysql/**/*.md": ["Azure","Azure Database for MySQL"],
"articles/mysql/**/*.yml": ["Azure","Azure Database for MySQL"],
"articles/notebooks/**/*.yml": ["Azure","Azure Notebooks"],
"articles/notebooks/**/*.md": ["Azure","Azure Notebooks"],
"articles/postgresql/**.md": ["Azure","Azure Database for PostgreSQL"],
"articles/postgresql/**.yml": ["Azure","Azure Database for PostgreSQL"],
"articles/stream-analytics/**/*.md": ["Azure","Stream Analytics"],
"articles/stream-analytics/**/*.yml": ["Azure","Stream Analytics"],
"articles/virtual-machine-scale-sets/**/*.yml": ["Azure","Virtual Machine Scale Sets"],
"articles/virtual-machines/**/*.yml": ["Azure","Virtual Machines"],
"articles/virtual-machines/linux/**/*.yml": ["Azure","Linux Virtual Machines"],
"articles/virtual-machines/windows/**/*.yml": ["Azure","Windows Virtual Machines"],
"articles/virtual-machine-scale-sets/**/*.md": ["Azure","Virtual Machine Scale Sets"],
"articles/virtual-machines/**/*.md": ["Azure","Virtual Machines"],
"articles/virtual-machines/linux/**/*.md": ["Azure","Linux Virtual Machines"],
"articles/virtual-machines/windows/**/*.md": ["Azure","Windows Virtual Machines"]
},
"titleSuffix": {
"articles/service-health/**/*.md": "Azure Service Health",
"articles/service-health/*.yml": "Azure Service Health",
"articles/advisor/**/*.md": "Azure Advisor",
"articles/advisor/*.yml": "Azure Advisor",
"articles/azure-arc/**/*.md": "Azure Arc",
"articles/asc-for-iot/**/*.md": "Azure Security Center for IoT",
"articles/asc-for-iot/**/*.yml": "Azure Security Center for IoT",
"articles/azure-monitor/**/*.yml" : "Azure Monitor",
"articles/azure-monitor/**/*.md" : "Azure Monitor",
"articles/azure-relay/*.md": "Azure Relay",
"articles/azure-vmware/**/*.md" : "Azure VMWare Solution",
"articles/connectors/*.md": "Azure Logic Apps",
"articles/event-grid/**/*.md": "Azure Event Grid",
"articles/event-hubs/*.md": "Azure Event Hubs",
"articles/logic-apps/*.md": "Azure Logic Apps",
"articles/scheduler/*.md": "Azure Scheduler",
"articles/governance/blueprints/**/*.md": "Azure Blueprints",
"articles/governance/policy/**/*.md": "Azure Policy",
"articles/governance/resource-graph/**/*.md": "Azure Resource Graph",
"articles/lighthouse/**/*.md": "Azure Lighthouse",
"articles/synapse-analytics/**/*.md": "Azure Synapse Analytics",
"articles/synapse-analytics/**/*.yml": "Azure Synapse Analytics",
"articles/backup/**/*.md": "Azure Backup",
"articles/backup/**/*.yml": "Azure Backup",
"articles/blockchain/**/*.md": "Azure Blockchain",
"articles/cognitive-services/**/*.md": "Azure Cognitive Services",
"articles/container-instances/**/*.md": "Azure Container Instances",
"articles/container-registry/**/*.md": "Azure Container Registry",
"articles/industry/agriculture/**/*.md": "Azure for Industry: Agriculture",
"articles/devtest-labs/**/*.md": "Azure DevTest Labs",
"articles/lab-services/**/*.md": "Azure Lab Services",
"articles/service-bus-messaging/*.md": "Azure Service Bus",
"articles/sql-data-warehouse/**/*.md": "Azure SQL Data Warehouse",
"articles/sql-data-warehouse/**/*.yml": "Azure SQL Data Warehouse",
"articles/data-factory/**/*.md": "Azure Data Factory",
"articles/data-factory/**/*.yml": "Azure Data Factory",
"articles/virtual-machines/windows/sql/**/*.md": "SQL Server on Azure VM",
"articles/virtual-machines/windows/sql/**/*.yml": "SQL Server on Azure VM",
"articles/sql-database/**/*.md": "Azure SQL Database",
"articles/sql-database/**/*.yml": "Azure SQL Database",
"articles/azure-sql/**/*.md": "Azure SQL",
"articles/azure-sql/**/*.yml": "Azure SQL",
"articles/azure-sql/database/**/*.md": "Azure SQL Database",
"articles/azure-sql/database/**/*.yml": "Azure SQL Database",
"articles/azure-sql/managed-instance/**/*.md": "Azure SQL Managed Instance",
"articles/azure-sql/managed-instance/**/*.yml": "Azure SQL Managed Instance",
"articles/azure-sql/virtual-machines/**/*.md": "SQL Server on Azure VM",
"articles/azure-sql/virtual-machines/**/*.yml": "SQL Server on Azure VM",
"articles/ansible/**/*.yml": "Ansible",
"articles/chef/**/*.yml": "Chef",
"articles/jenkins/**/*.yml": "Jenkins",
"articles/terraform/**/*.yml": "Terraform",
"articles/azure-resource-manager/**/*.md": "Azure Resource Manager",
"articles/azure-resource-manager/managed-applications/**/*.md": "Azure Managed Applications",
"articles/azure-resource-manager/custom-providers/**/*.md": "Azure Custom Providers",
"articles/site-recovery/**/*.md": "Azure Site Recovery",
"articles/migrate/**/*.md": "Azure Migrate",
"articles/spatial-anchors/**/*.md": "Azure Spatial Anchors",
"articles/spatial-anchors/**/*.yml": "Azure Spatial Anchors",
"articles/dev-spaces/**/*.md": "Azure Dev Spaces",
"articles/app-service/*.md": "Azure App Service",
"articles/app-service/*.yml": "Azure App Service",
"articles/app-service/scripts/*.md": "Azure App Service",
"articles/app-service/scripts/*.yml": "Azure App Service",
"articles/app-service/environment/*.md": "Azure App Service Environment",
"articles/app-service/environment/*.yml": "Azure App Service Environment",
"articles/virtual-machines/**/*.md": "Azure Virtual Machines",
"articles/virtual-machines/**/*.yml": "Azure Virtual Machines",
"articles/virtual-machines/workloads/**/*.md": "Azure Virtual Machines",
"articles/virtual-machines/workloads/**/*.yml": "Azure Virtual Machines",
"articles/virtual-machine-scale-sets/*.md": "Azure Virtual Machine Scale Sets",
"articles/virtual-machine-scale-sets/*.yml": "Azure Virtual Machine Scale Sets",
"articles/batch/**/*.md": "Azure Batch",
"articles/batch/**/*.yml": "Azure Batch",
"articles/app-service-mobile/**/*.md": "Azure Mobile Apps",
"articles/app-service-mobile/**/*.yml": "Azure Mobile Apps",
"articles/service-fabric/*.md": "Azure Service Fabric",
"articles/service-fabric-mesh/*.md": "Azure Service Fabric Mesh",
"articles/aks/**/*.md": "Azure Kubernetes Service",
"articles/remote-rendering/**/*.md": "Azure Remote Rendering",
"articles/remote-rendering/**/*.yml": "Azure Remote Rendering",
"articles/media-services/*.yml": "Azure Media Services",
"articles/media-services/*.md": "Azure Media Services",
"articles/media-services/latest/*.md": "Azure Media Services v3",
"articles/media-services/video-indexer/*.md": "Azure Media Services Video Indexer",
"articles/media-services/azure-media-player/*.md": "Azure Media Player",
"articles/media-services/live-video-analytics-edge/*.md": "Live Video Analytics on IoT Edge",
"articles/azure-government/**/*.md": "Azure Government"
},
"featureFlags": {
"articles/**/*.md": [
"show_learn_banner"
],
"articles/active-directory/**/*.md": [
"binaryRatingUpdate"
]
},
"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"
]
}
},
"template": [
"docs.html"
],
"dest": "azure"
}
}