forked from MicrosoftDocs/azure-dev-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.openpublishing.redirection.json
1369 lines (1365 loc) · 65.9 KB
/
.openpublishing.redirection.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
{
"redirections": [
{ "source_path": "articles/lab/index.yml",
"redirect_url": "/azure/developer/python"
},
{ "source_path": "articles/lab/quickstart-python-flask.md",
"redirect_url": "/azure/developer/python"
},
{ "source_path": "articles/lab/quickstart-python-flask-minimized.md",
"redirect_url": "/azure/developer/python"
},
{ "source_path": "articles/lab/quickstart-python-flask-multipage.yml",
"redirect_url": "/azure/developer/python"
},
{ "source_path": "articles/lab/tool-tip-metrics.md",
"redirect_url": "/azure/developer/python"
},
{
"source_path": "articles/javascript/whats-new-developer-advocacy.md",
"redirect_url": "/azure/developer/javascript"
},
{
"source_path": "articles/javascript/whats-new-docs.md",
"redirect_url": "/azure/developer/javascript"
},
{
"source_path": "articles/javascript/how-to/common-javascript-tasks.md",
"redirect_url": "/azure/developer/javascript/core/use-azure-sdk"
},
{ "source_path": "articles/javascript/core/nodejs-sdk-azure-authenticate.md",
"redirect_url": "/azure/developer/javascript/sdk/authentication/local-development-environment-service-principal"
},
{ "source_path": "articles/javascript/how-to/with-web-app/graphql/get-started.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/graphql/azure-function-hello-world"
},
{
"source_path": "articles/javascript/how-to/with-web-app/add-authentication-to-web-app.md",
"redirect_url": "/azure/app-service/scenario-secure-app-authentication-app-service-as-user"
},
{
"source_path": "articles/javascript/tutorial-vscode-serverless-node-01.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-serverless-node-install.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial-vscode-serverless-node-02.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-serverless-node-create-local.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial-vscode-serverless-node-03.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-serverless-node-test-local.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial-vscode-serverless-node-04.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-serverless-node-deploy-hosting.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial-vscode-serverless-node-05.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-serverless-node-remove-resource.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-create-local.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-database-integration.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-deploy-hosting.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-install.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-remove-resource.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/tutorial/vscode-function-app-http-trigger/tutorial-vscode-serverless-node-test-local.md",
"redirect_url": "/azure/developer/javascript/tutorial/azure-function-cosmos-db-mongo-api"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-postgresql-server-resource.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-postgresql-db"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-mysql-db.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-mysql-mariadb?tabs=MySQL"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-mariadb.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-mysql-mariadb?tabs=MySQL"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-cosmos-sql-api-resource.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-sql-api-as-cosmos-db"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-cassandra-db.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-cassandra-as-cosmos-db"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-cache-for-redis-db.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-azure-cache-for-redis-db"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/create-mongodb-cosmosdb.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-mongodb-as-cosmosdb?tabs=azure-cli%2Cmongodb"
},
{
"source_path": "articles/javascript/how-to/with-azure-cli/configure-app-service-custom-domain-name.md",
"redirect_url": "/azure/app-service/app-service-web-tutorial-custom-domain"
},
{
"source_path": "articles/javascript/tutorial/deploy-deno-app-azure-app-service-azure-cli.md",
"redirect_url": "/azure/developer/javascript/tutorial/nodejs-virtual-machine-vm/introduction"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/introduction.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/application-architecture.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/run-the-react-cognitive-services-image-analyzer-app-locally.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/create-computer-vision-resource-use-in-code.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/create-static-web-app-visual-studio-code-extension.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/add-computer-vision-react-app.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/tutorial/static-web-app/clean-up-resources.md",
"redirect_url": "/azure/developer/javascript/tutorial/static-web-app-image-analysis"
},
{
"source_path": "articles/javascript/how-to/with-database/use-mariadb.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-mysql-mariadb"
},
{
"source_path": "articles/javascript/how-to/with-database/use-mysql-db.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/use-mysql-mariadb"
},
{
"source_path": "articles/javascript/how-to/with-web-app/azure-function-resource-group-management/view-and-query-application-logs.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/azure-function-resource-group-management/view-query-application-logs"
},
{
"source_path": "articles/javascript/how-to/with-web-app/azure-function-resource-group-management/create-function-app-for-resource-groups.md",
"redirect_url": "/azure/developer/javascript/how-to/with-web-app/azure-function-resource-group-management/create-function-app"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-06.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-04#make-change-and-deploy-to-azure-app-service-from-local-git"
},
{
"source_path": "articles/javascript/how-to/deploy-containers.md",
"redirect_url": "/azure/developer/javascript/how-to/deploy-web-app"
},
{
"source_path": "articles/javascript/how-to/integrate-database.md",
"redirect_url": "/azure/developer/javascript/how-to/with-database/getting-started"
},
{
"source_path": "articles/javascript/core/node-sdk-azure-authenticate.md",
"redirect_url": "/azure/developer/javascript/core/nodejs-sdk-azure-authenticate"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-01.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-02.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-03.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-04.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial/client/get-started.md",
"redirect_url": "/azure/developer/javascript/how-to/create-static-web-app"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-05.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-static-website-node/tutorial-vscode-static-website-node-06.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/core/node-sdk-azure-authenticate-principal.md",
"redirect_url": "/azure/developer/javascript/core/nodejs-sdk-azure-authenticate"
},
{
"source_path": "articles/javascript/concepts/identity-authentication-users.md",
"redirect_url": "/azure/developer/javascript/core/nodejs-sdk-azure-authenticate"
},
{
"source_path": "articles/javascript/how-to/with-sdk/set-up-development-environment.md",
"redirect_url": "/azure/developer/javascript/core/nodejs-sdk-azure-authenticate"
},
{
"source_path": "articles/javascript/how-to/create-static-site.md",
"redirect_url": "/azure/developer/javascript/how-to/create-static-web-app"
},
{
"source_path": "articles/javascript/how-to/develop-nodejs-on-azure.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-mongodb-app-service-from-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-01.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-01"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-02.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-02"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-03.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-03"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-04.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-04"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-06.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-06"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-05.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-05"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-cli-node-07.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-07"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-01.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-01"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-02.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-02"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-03.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-03"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-04.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-04"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-05.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-05"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-06.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-06"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-07.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-07"
},
{
"source_path": "articles/javascript/tutorial-vscode-docker-node-08.md",
"redirect_url": "/azure/developer/javascript/tutorial/tutorial-vscode-docker-node/tutorial-vscode-docker-node-08"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-01.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-02.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-03.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-04.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-05.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-static-website-node-06.md",
"redirect_url": "/azure/static-web-apps/getting-started"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-app-service-node-01.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-app-service-node-02.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-app-service-node-03.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-app-service-node-04.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-vscode-azure-app-service-node-05.md",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial/deno-visual-studio-code-azure-app-service.yml",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-deno-app-azure-app-service-azure-cli"
},
{
"source_path": "articles/javascript/tutorial/browser-file-upload.yml",
"redirect_url": "/azure/developer/javascript/tutorial/browser-file-upload-azure-storage-blob"
},
{
"source_path": "articles/javascript/tutorial/web-app-mongodb.yml",
"redirect_url": "/azure/developer/javascript/tutorial/deploy-nodejs-mongodb-app-service-from-visual-studio-code"
},
{
"source_path": "articles/javascript/tutorial-visual-studio-code-azure-app-service-deno-04.md",
"redirect_url": "/azure/developer/javascript/tutorial/deno-visual-studio-code-azure-app-service?preview=tutorialFeedback"
},
{
"source_path": "articles/javascript/tutorial-visual-studio-code-azure-app-service-deno-03.md",
"redirect_url": "/azure/developer/javascript/tutorial/deno-visual-studio-code-azure-app-service?preview=tutorialFeedback"
},
{
"source_path": "articles/javascript/tutorial-visual-studio-code-azure-app-service-deno-02.md",
"redirect_url": "/azure/developer/javascript/tutorial/deno-visual-studio-code-azure-app-service?preview=tutorialFeedback"
},
{
"source_path": "articles/javascript/tutorial-visual-studio-code-azure-app-service-deno-01.md",
"redirect_url": "/azure/developer/javascript/tutorial/deno-visual-studio-code-azure-app-service?preview=tutorialFeedback"
},
{
"source_path": "articles/javascript/node-sdk-logging.md",
"redirect_url": "/azure/developer/javascript/how-to/node-sdk-logging"
},
{
"source_path": "articles/javascript/node-sdk-azure-authenticate.md",
"redirect_url": "/azure/developer/javascript/core/node-sdk-azure-authenticate"
},
{
"source_path": "articles/javascript/node-sdk-azure-authenticate-principal.md",
"redirect_url": "/azure/developer/javascript/core/node-sdk-azure-authenticate-principal"
},
{
"source_path": "articles/javascript/configure-local-development-environment.md",
"redirect_url": "/azure/developer/javascript/core/configure-local-development-environment"
},
{
"source_path": "articles/javascript/tutorial-visualstudiocode-browser-file-upload-feedback.yml",
"redirect_url": "/azure/developer/javascript/tutorial/browser-file-upload?preview=tutorialFeedback"
},
{
"source_path": "articles/javascript/tutorial-visualstudiocode-azure-app-service-mongodb/tutorial-azure-web-app-mongodb-feedback.yml",
"redirect_url": "/azure/developer/javascript/tutorial/web-app-mongodb?preview=tutorialFeedback"
},
{
"source_path": "articles/javascript/node-howto-create-static-site-jamstack.md",
"redirect_url": "/azure/developer/javascript/how-to/create-static-site"
},
{
"source_path": "articles/javascript/node-howto-deploy-containers.md",
"redirect_url": "/azure/developer/javascript/how-to/deploy-containers"
},
{
"source_path": "articles/javascript/node-howto-deploy-web-app.md",
"redirect_url": "/azure/developer/javascript/how-to/deploy-web-app"
},
{
"source_path": "articles/javascript/node-howto-e2e.md",
"redirect_url": "/azure/developer/javascript/how-to/develop-nodejs-on-azure"
},
{
"source_path": "articles/javascript/node-howto-integrate-databases.md",
"redirect_url": "/azure/developer/javascript/how-to/integrate-database"
},
{
"source_path": "articles/javascript/node-howto-write-serverless-code.md",
"redirect_url": "/azure/developer/javascript/how-to/develop-serverless-apps"
},
{
"source_path": "articles/javascript/node-sdk-azure-install.md",
"redirect_url": "/javascript/api/?view=azure-node-latest"
},
{
"source_path": "articles/javascript/overview.md",
"redirect_url": "/azure/developer/javascript"
},
{
"source_path": "articles/javascript/retired/overview.md",
"redirect_url": "/azure/developer/javascript"
},
{
"source_path": "articles/javascript/retired/node-sdk-azure-get-started.md",
"redirect_url": "/azure/developer/javascript"
},
{
"source_path": "articles/javascript/node-samples-services-appservice.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs&products=azure-functions%2Cazure-app-service%2Cazure-logic-apps"
},
{
"source_path": "articles/javascript/node-samples-services-web-and-mobile.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs&products=azure-functions%2Cazure-app-service%2Cazure-logic-apps"
},
{
"source_path": "articles/javascript/node-samples-billing.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs"
},
{
"source_path": "articles/javascript/node-samples-services-compute.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs"
},
{
"source_path": "articles/javascript/node-samples-services-database.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs&products=azure-cosmos-db%2Cazure-sql-database"
},
{
"source_path": "articles/javascript/node-samples-services-iot.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs&products=azure-iot-hub%2Cazure-iot-edge%2Cazure-iot-central"
},
{
"source_path": "articles/javascript/node-samples-services-security-and-identity.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs&products=azure-active-directory%2Cazure-key-vault"
},
{
"source_path": "articles/javascript/node-samples-services-storage.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs&products=azure-storage"
},
{
"source_path": "articles/javascript/node-tutorials-services-databases.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs&products=azure-cosmos-db%2Cazure-sql-database"
},
{
"source_path": "articles/javascript/node-tutorials-services-enterprise.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs&products=azure-iot-hub%2Cazure-iot-edge%2Cazure-iot-central"
},
{
"source_path": "articles/javascript/node-tutorials-services-messaging-and-iot.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs&products=azure-iot-hub%2Cazure-iot-edge%2Cazure-iot-central"
},
{
"source_path": "articles/javascript/node-tutorials-services-storage.md",
"redirect_url": "/samples/browse/?languages=javascript%2Cnodejs&products=azure-storage"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-07.md",
"redirect_url": "/azure/app-service/tutorial-nodejs-mongodb-app?tabs=azure-portal%2Cterminal-bash%2Cvscode-deploy%2Cdeploy-instructions-azportal%2Cdeploy-zip-linux-mac%2Cdeploy-instructions--zip-azcli"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-05.md",
"redirect_url": "/azure/app-service/tutorial-nodejs-mongodb-app?tabs=azure-portal%2Cterminal-bash%2Cvscode-deploy%2Cdeploy-instructions-azportal%2Cdeploy-zip-linux-mac%2Cdeploy-instructions--zip-azcli"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-04.md",
"redirect_url": "/azure/app-service/tutorial-nodejs-mongodb-app?tabs=azure-portal%2Cterminal-bash%2Cvscode-deploy%2Cdeploy-instructions-azportal%2Cdeploy-zip-linux-mac%2Cdeploy-instructions--zip-azcli"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-03.md",
"redirect_url": "/azure/app-service/tutorial-nodejs-mongodb-app?tabs=azure-portal%2Cterminal-bash%2Cvscode-deploy%2Cdeploy-instructions-azportal%2Cdeploy-zip-linux-mac%2Cdeploy-instructions--zip-azcli"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-02.md",
"redirect_url": "/azure/app-service/tutorial-nodejs-mongodb-app?tabs=azure-portal%2Cterminal-bash%2Cvscode-deploy%2Cdeploy-instructions-azportal%2Cdeploy-zip-linux-mac%2Cdeploy-instructions--zip-azcli"
},
{
"source_path": "articles/javascript/tutorial/tutorial-vscode-azure-cli-node/tutorial-vscode-azure-cli-node-01.md",
"redirect_url": "/azure/app-service/tutorial-nodejs-mongodb-app?tabs=azure-portal%2Cterminal-bash%2Cvscode-deploy%2Cdeploy-instructions-azportal%2Cdeploy-zip-linux-mac%2Cdeploy-instructions--zip-azcli"
},
{
"source_path": "articles/javascript/tutorial/deploy-nodejs-mongodb-app-service-from-visual-studio-code.md",
"redirect_url": "/azure/app-service/tutorial-nodejs-mongodb-app?tabs=azure-portal%2Cterminal-bash%2Cvscode-deploy%2Cdeploy-instructions-azportal%2Cdeploy-zip-linux-mac%2Cdeploy-instructions--zip-azcli"
},
{
"source_path": "articles/javascript/tutorial/deploy-nodejs-azure-app-service-with-visual-studio-code.md",
"redirect_url": "/azure/app-service/tutorial-nodejs-mongodb-app?tabs=azure-portal%2Cterminal-bash%2Cvscode-deploy%2Cdeploy-instructions-azportal%2Cdeploy-zip-linux-mac%2Cdeploy-instructions--zip-azcli"
},
{
"source_path": "articles/javascript/tutorial/single-page-application-azure-login-button-sdk-msal.md",
"redirect_url": "/azure/active-directory/develop/tutorial-v2-react"
},
{
"source_path": "articles/java/eclipse-microprofile/cicd-microprofile-vsts.md",
"redirect_url": "/azure/developer/java/eclipse-microprofile/cicd-microprofile"
},
{
"source_path": "articles/java/spring-framework/deploy-spring-boot-java-app-with-maven-plugin.md",
"redirect_url": "/azure/app-service/quickstart-java?tabs=javase&pivots=platform-linux"
},
{
"source_path": "articles/java/spring-framework/deploy-spring-boot-java-app-using-fabric8-maven-plugin.md",
"redirect_url": "/azure/developer/java/spring-framework"
},
{
"source_path": "articles/java/spring-framework/configure-spring-boot-starter-java-app-with-azure-storage-api.md",
"redirect_url": "/azure/developer/java/spring-framework"
},
{
"source_path": "articles/java/spring-framework/configure-spring-boot-java-applicationinsights.md",
"redirect_url": "/azure/azure-monitor/app/java-in-process-agent"
},
{
"source_path": "articles/java/spring-framework/configure-spring-data-gremlin-java-app-with-cosmos-db.md",
"redirect_url": "/azure/developer/java/quickstarts/data"
},
{
"source_path": "articles/java/spring-framework/spring-cloud-azure-appendix.md",
"redirect_url": "/azure/developer/java/spring-framework/developer-guide-overview"
},
{
"source_path": "articles/java/spring-framework/spring-boot-starters-for-azure.md",
"redirect_url": "/azure/developer/java/spring-framework/spring-cloud-azure-overview"
},
{
"source_path": "articles/java/spring-framework/spring-cloud-azure.md",
"redirect_url": "/azure/developer/java/spring-framework/developer-guide-overview"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-publish-spring-boot-docker-app.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-publish-as-docker-container.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-publish-spring-boot-docker-app.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-publish-as-docker-container.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/java-azure-tools.md",
"redirect_url": "/azure/developer/java/fundamentals/java-azure-tools"
},
{
"source_path": "articles/java/java-get-started-with-logzio.md",
"redirect_url": "/azure/developer/java/fundamentals/java-get-started-with-logzio"
},
{
"source_path": "articles/java/fundamentals/java-jdk-long-term-support.md",
"redirect_url": "/azure/developer/java/fundamentals/java-support-on-azure"
},
{
"source_path": "articles/java/fundamentals/java-jdk-flight-recorder-and-mission-control.md",
"redirect_url": "/java/openjdk/java-jdk-flight-recorder-and-mission-control?toc=/azure/developer/java/fundamentals/toc.json&bc=/azure/developer/breadcrumb/toc.json"
},
{
"source_path": "articles/java/fundamentals/java-jdk-docker-images.md",
"redirect_url": "/java/openjdk/containers"
},
{
"source_path": "articles/java/fundamentals/reasons-to-move-to-java-11.md",
"redirect_url": "/java/openjdk/reasons-to-move-to-java-11?toc=/azure/developer/java/fundamentals/toc.json&bc=/azure/developer/breadcrumb/toc.json"
},
{
"source_path": "articles/java/fundamentals/transition-from-java-7-to-java-8.md",
"redirect_url": "/java/openjdk/transition-from-java-7-to-java-8?toc=/azure/developer/java/fundamentals/toc.json&bc=/azure/developer/breadcrumb/toc.json"
},
{
"source_path": "articles/java/fundamentals/transition-from-java-8-to-java-11.md",
"redirect_url": "/java/openjdk/transition-from-java-8-to-java-11?toc=/azure/developer/java/fundamentals/toc.json&bc=/azure/developer/breadcrumb/toc.json"
},
{
"source_path": "articles/java/java-sdk-add-certificate-ca-store.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/sdk/java-sdk-add-certificate-ca-store.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/java-sdk-azure-authenticate.md",
"redirect_url": "/azure/developer/java/sdk/identity"
},
{
"source_path": "articles/java/sdk/java-sdk-azure-authenticate.md",
"redirect_url": "/azure/developer/java/sdk/identity"
},
{
"source_path": "articles/java/java-sdk-azure-concepts.md",
"redirect_url": "/azure/developer/java/sdk/overview"
},
{
"source_path": "articles/java/sdk/java-sdk-azure-concepts.md",
"redirect_url": "/azure/developer/java/sdk/overview"
},
{
"source_path": "articles/java/java-sdk-azure-containers-samples.md",
"redirect_url": "/azure/developer/java/sdk/containers-samples"
},
{
"source_path": "articles/java/sdk/java-sdk-azure-containers-samples.md",
"redirect_url": "/azure/developer/java/sdk/containers-samples"
},
{
"source_path": "articles/java/java-sdk-azure-get-started.md",
"redirect_url": "/azure/developer/java/sdk/get-started"
},
{
"source_path": "articles/java/sdk/java-sdk-azure-get-started.md",
"redirect_url": "/azure/developer/java/sdk/get-started"
},
{
"source_path": "articles/java/java-sdk-azure-log.md",
"redirect_url": "/azure/developer/java/sdk/logging-overview"
},
{
"source_path": "articles/java/sdk/java-sdk-azure-log.md",
"redirect_url": "/azure/developer/java/sdk/logging-overview"
},
{
"source_path": "articles/java/java-sdk-azure-release-notes.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/java-sdk-azure-security-samples.md",
"redirect_url": "/azure/developer/java/sdk/security-samples"
},
{
"source_path": "articles/java/sdk/java-sdk-azure-security-samples.md",
"redirect_url": "/azure/developer/java/sdk/security-samples"
},
{
"source_path": "articles/java/java-sdk-azure-sql-database-samples.md",
"redirect_url": "/azure/developer/java/sdk/sql-database-samples"
},
{
"source_path": "articles/java/sdk/java-sdk-azure-sql-database-samples.md",
"redirect_url": "/azure/developer/java/sdk/sql-database-samples"
},
{
"source_path": "articles/java/java-sdk-azure-virtual-machine-samples.md",
"redirect_url": "/azure/developer/java/sdk/virtual-machine-samples"
},
{
"source_path": "articles/java/sdk/java-sdk-azure-virtual-machine-samples.md",
"redirect_url": "/azure/developer/java/sdk/virtual-machine-samples"
},
{
"source_path": "articles/java/java-sdk-azure-web-apps-samples.md",
"redirect_url": "/azure/developer/java/sdk/web-apps-samples"
},
{
"source_path": "articles/java/sdk/java-sdk-azure-web-apps-samples.md",
"redirect_url": "/azure/developer/java/sdk/web-apps-samples"
},
{
"source_path": "articles/java/java-sdk-configure-webapp-sources.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/java-sdk-manage-sql-elastic-pools.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/java-sdk-manage-storage-accounts.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/java-sdk-manage-virtual-machines.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/java-sdk-manage-virtual-networks.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/java-sdk-manage-vm-scalesets.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/java-sdk-virtual-machines-in-parallel.md",
"redirect_url": "/azure/developer/java/sdk/virtual-machine-samples"
},
{
"source_path": "articles/java/sdk/java-sdk-virtual-machines-in-parallel.md",
"redirect_url": "/azure/developer/java/sdk/virtual-machine-samples"
},
{
"source_path": "articles/java/sdk/java-sdk-azure-release-notes.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/sdk/java-sdk-configure-webapp-sources.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/sdk/java-sdk-manage-sql-elastic-pools.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/sdk/java-sdk-manage-storage-accounts.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/sdk/java-sdk-manage-virtual-machines.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/sdk/java-sdk-manage-virtual-networks.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/sdk/java-sdk-manage-vm-scalesets.md",
"redirect_url": "/azure/developer/java/sdk"
},
{
"source_path": "articles/java/migrate-java-se-to-java-se-app-service.md",
"redirect_url": "/azure/developer/java/migration/migrate-spring-boot-to-app-service"
},
{
"source_path": "articles/java/migration/migrate-java-se-to-java-se-app-service.md",
"redirect_url": "/azure/developer/java/migration/migrate-spring-boot-to-app-service"
},
{
"source_path": "articles/java/migrate-jboss-eap-to-wildfly-on-azure-kubernetes-service.md",
"redirect_url": "/azure/developer/java/migration/migrate-jboss-eap-to-wildfly-on-azure-kubernetes-service"
},
{
"source_path": "articles/java/migrate-tomcat-to-containers-on-azure-kubernetes-service.md",
"redirect_url": "/azure/developer/java/migration/migrate-tomcat-to-containers-on-azure-kubernetes-service"
},
{
"source_path": "articles/java/migrate-tomcat-to-tomcat-app-service.md",
"redirect_url": "/azure/developer/java/migration/migrate-tomcat-to-tomcat-app-service"
},
{
"source_path": "articles/java/migrate-weblogic-to-virtual-machines.md",
"redirect_url": "/azure/developer/java/migration/migrate-weblogic-to-virtual-machines"
},
{
"source_path": "articles/java/migrate-weblogic-to-wildfly-on-azure-kubernetes-service.md",
"redirect_url": "/azure/developer/java/migration/migrate-weblogic-to-wildfly-on-azure-kubernetes-service"
},
{
"source_path": "articles/java/migrate-websphere-to-wildfly-on-azure-kubernetes-service.md",
"redirect_url": "/azure/developer/java/migration/migrate-websphere-to-wildfly-on-azure-kubernetes-service"
},
{
"source_path": "articles/java/migrate-wildfly-to-wildfly-on-azure-kubernetes-service.md",
"redirect_url": "/azure/developer/java/migration/migrate-wildfly-to-wildfly-on-azure-kubernetes-service"
},
{
"source_path": "articles/java/migration-overview.md",
"redirect_url": "/azure/developer/java/migration/migration-overview"
},
{
"source_path": "articles/java/migration/migrate-spring-boot-to-azure-spring-cloud.md",
"redirect_url": "/azure/developer/java/migration/migrate-spring-boot-to-azure-spring-apps"
},
{
"source_path": "articles/java/migration/migrate-spring-cloud-to-azure-spring-cloud.md",
"redirect_url": "/azure/developer/java/migration/migrate-spring-cloud-to-azure-spring-apps"
},
{
"source_path": "articles/java/migration/migrate-tomcat-to-azure-spring-cloud.md",
"redirect_url": "/azure/developer/java/migration/migrate-tomcat-to-azure-spring-apps"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-create-hello-world-web-app-legacy-version.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/create-hello-world-web-app"
},
{
"source_path": "articles/java/toolkit-for-eclipse/create-hello-world-web-app-legacy-version.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/create-hello-world-web-app"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-create-hello-world-web-app.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/create-hello-world-web-app"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-displaying-javadoc-content-for-azure-libraries.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/displaying-javadoc-content-for-azure-libraries"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-hello-world-web-app-linux.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/hello-world-web-app-linux"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-installation.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/installation"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-managing-redis-caches-using-azure-explorer.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/managing-redis-caches-using-azure-explorer"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-managing-storage-accounts-using-azure-explorer.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/managing-storage-accounts-using-azure-explorer"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-managing-virtual-machines-using-azure-explorer.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/managing-virtual-machines-using-azure-explorer"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-sign-in-instructions.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/sign-in-instructions"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-whats-new.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse/whats-new"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-create-hello-world-web-app-legacy-version.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij/create-hello-world-web-app"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-create-hello-world-web-app.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij/create-hello-world-web-app"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-hello-world-web-app-linux.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij/hello-world-web-app-linux"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-installation.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij/installation"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-managing-redis-caches-using-azure-explorer.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij/managing-redis-caches-using-azure-explorer"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-managing-storage-accounts-using-azure-explorer.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij/managing-storage-accounts-using-azure-explorer"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-managing-virtual-machines-using-azure-explorer.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij/managing-virtual-machines-using-azure-explorer"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-sign-in-instructions.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij/sign-in-instructions"
},
{
"source_path": "articles/java/toolkit-for-intellij/azure-toolkit-for-intellij-whats-new.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij/whats-new"
},
{
"source_path": "articles/java/toolkit-for-intellij/quickstart-functions.md",
"redirect_url": "/azure/azure-functions/functions-create-maven-intellij?toc=/azure/developer/java/toolkit-for-intellij/toc.json&bc=/azure/developer/breadcrumb/toc.json"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-azure-project-properties.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-enable-session-affinity.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-deploying-large-deployments.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-azure-role-properties.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-azure-service-endpoints.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-azure-storage-account-list.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/azure-toolkit-for-eclipse-enabling-remote-access-for-azure-deployments.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/displaying-javadoc-content-for-azure-libraries.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/whats-new.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-eclipse/hello-world-web-app-linux.md",
"redirect_url": "/azure/developer/java/toolkit-for-eclipse"
},
{
"source_path": "articles/java/toolkit-for-intellij/whats-new.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij"
},
{
"source_path": "articles/java/toolkit-for-intellij/create-hello-world-web-app-legacy-version.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij"
},
{
"source_path": "articles/java/toolkit-for-intellij/installation.md",
"redirect_url": "/azure/developer/java/toolkit-for-intellij"
},
{
"source_path": "articles/python/sdk-library-api-reference.md",
"redirect_url": "/python/api/overview/azure/"
},
{
"source_path": "articles/python/tutorial-deploy-serverless-cloud-etl-01.md",
"redirect_url": "/azure/developer/python/tutorial-deploy-azure-cloud-python-etl-01-overview"
},
{
"source_path": "articles/python/tutorial-deploy-serverless-cloud-etl-02.md",
"redirect_url": "/azure/developer/python/tutorial-deploy-azure-cloud-python-etl-01-overview"
},
{
"source_path": "articles/python/tutorial-deploy-serverless-cloud-etl-03.md",
"redirect_url": "/azure/developer/python/tutorial-deploy-azure-cloud-python-etl-01-overview"
},
{
"source_path": "articles/python/tutorial-deploy-serverless-cloud-etl-04.md",
"redirect_url": "/azure/developer/python/tutorial-deploy-azure-cloud-python-etl-01-overview"
},
{
"source_path": "articles/python/tutorial-deploy-serverless-cloud-etl-05.md",
"redirect_url": "/azure/developer/python/tutorial-deploy-azure-cloud-python-etl-01-overview"
},
{
"source_path": "articles/python/how-to-assign-role-permissions.md",
"redirect_url": "/azure/role-based-access-control/role-assignments-steps"
},
{
"source_path": "articles/python/sdk.md",
"redirect_url": "/azure/developer/python/sdk-library-api-reference"
},
{
"source_path": "articles/python/python-sdk-azure-sql-database-samples.md",
"redirect_url": "/samples/browse/?languages=python&products=azure-cosmos-db%2Cazure-sql-database"
},
{
"source_path": "articles/python/python-sdk-azure-virtual-machine-samples.md",
"redirect_url": "/samples/browse/?languages=python&products=azure-virtual-machines"
},
{
"source_path": "articles/python/python-sdk-azure-web-apps-samples.md",
"redirect_url": "/samples/browse/?languages=python&products=azure-functions%2Cazure-app-service%2Cazure-logic-apps"
},
{
"source_path": "articles/python/python-sdk-azure-release-notes.md",