-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.html
More file actions
5302 lines (5082 loc) · 452 KB
/
Copy pathgraph.html
File metadata and controls
5302 lines (5082 loc) · 452 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Azure Resource Relationship Graph</title>
<meta name="description" content="Interactive force-directed graph mapping all 299 Azure resource providers, their sub-services, and cross-provider relationships.">
<link rel="canonical" href="https://xeeva.github.io/Azure-Scale/graph.html">
<meta property="og:title" content="Azure Resource Relationship Graph">
<meta property="og:description" content="Interactive force-directed graph mapping all 299 Azure resource providers, their sub-services, and cross-provider relationships.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://xeeva.github.io/Azure-Scale/graph.html">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Azure Resource Relationship Graph">
<meta name="twitter:description" content="Interactive force-directed graph mapping all 299 Azure resource providers, their sub-services, and cross-provider relationships.">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Azure Resource Relationship Graph",
"url": "https://xeeva.github.io/Azure-Scale/graph.html",
"description": "Interactive force-directed graph mapping all 299 Azure resource providers, their sub-services, and cross-provider relationships.",
"isPartOf": {
"@type": "WebSite",
"name": "Azure Scale",
"url": "https://xeeva.github.io/Azure-Scale/"
}
}
</script>
<style>
:root {
--bg-primary: #0a0e1a;
--bg-card: #1a2035;
--bg-elevated: #1e2a42;
--border: #1e2d4a;
--border-glow: #0d4f8b;
--text: #e2e8f0;
--text-muted: #8892a8;
--text-bright: #f1f5f9;
--neon-cyan: #22d3ee;
--neon-blue: #60a5fa;
--neon-purple: #a78bfa;
--neon-pink: #f472b6;
--neon-green: #34d399;
--neon-orange: #fb923c;
--azure-blue: #3b9eff;
--panel-width: 280px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg-primary);
color: var(--text);
overflow: hidden;
height: 100vh;
}
/* Search bar */
.search-container {
position: relative;
margin-bottom: 1rem;
}
.search-input {
width: 100%;
background: var(--bg-elevated);
border: 1px solid var(--border);
border-radius: 6px;
color: var(--text);
font-family: inherit;
font-size: 0.78rem;
padding: 0.45rem 0.6rem 0.45rem 1.8rem;
outline: none;
transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus { border-color: var(--azure-blue); box-shadow: 0 0 8px rgba(59,158,255,0.15); }
.search-input::placeholder { color: var(--text-muted); opacity: 0.5; }
.search-icon {
position: absolute;
left: 0.55rem;
top: 50%;
transform: translateY(-50%);
font-size: 0.75rem;
color: var(--text-muted);
pointer-events: none;
}
.search-results {
position: absolute;
top: 100%;
left: 0; right: 0;
background: var(--bg-card);
border: 1px solid var(--border);
border-top: none;
border-radius: 0 0 6px 6px;
max-height: 320px;
overflow-y: auto;
z-index: 25;
display: none;
scrollbar-width: thin;
scrollbar-color: var(--border) transparent;
}
.search-results::-webkit-scrollbar { width: 5px; }
.search-results::-webkit-scrollbar-track { background: transparent; }
.search-results::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.sr-item {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.4rem 0.6rem;
cursor: pointer;
font-size: 0.76rem;
color: var(--text);
transition: background 0.12s;
border-bottom: 1px solid rgba(255,255,255,0.02);
}
.sr-item:hover, .sr-item.active { background: rgba(59,158,255,0.12); }
.sr-item .sr-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sr-item .sr-name { flex: 1; min-width: 0; }
.sr-item .sr-name mark { background: none; color: var(--neon-cyan); font-weight: 700; }
.sr-item .sr-parent { font-size: 0.65rem; color: var(--text-muted); flex-shrink: 0; }
.sr-item .sr-type {
font-size: 0.55rem; padding: 0.05rem 0.3rem; border-radius: 3px;
background: rgba(59,158,255,0.1); color: var(--text-muted); flex-shrink: 0;
}
.header {
position: fixed;
top: 0; left: var(--panel-width); right: 0;
z-index: 10;
background: rgba(10, 14, 26, 0.9);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
padding: 0.75rem 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.header h1 {
font-size: 1.15rem;
font-weight: 600;
color: var(--neon-blue);
text-shadow: 0 0 15px rgba(96,165,250,0.3);
}
.header .subtitle {
font-size: 0.78rem;
color: var(--text-muted);
margin-top: 0.1rem;
}
.header-right {
display: flex;
gap: 0.6rem;
align-items: center;
}
.btn {
background: rgba(59,158,255,0.12);
border: 1px solid rgba(59,158,255,0.3);
color: var(--neon-cyan);
padding: 0.3rem 0.65rem;
border-radius: 6px;
font-size: 0.75rem;
cursor: pointer;
font-family: inherit;
transition: all 0.2s;
}
a.btn { text-decoration: none; }
.btn:hover {
background: rgba(59,158,255,0.25);
box-shadow: 0 0 12px rgba(34,211,238,0.2);
}
a.btn[href*="sponsors"]:hover {
background: rgba(219,39,119,0.25);
box-shadow: 0 0 12px rgba(219,39,119,0.3);
}
.btn.active {
background: rgba(34,211,238,0.2);
border-color: var(--neon-cyan);
}
.back-link {
color: var(--azure-blue);
text-decoration: none;
font-size: 0.78rem;
transition: color 0.2s, text-shadow 0.2s;
}
.back-link:hover {
color: var(--neon-cyan);
text-shadow: 0 0 8px rgba(34,211,238,0.3);
}
/* Left filter panel */
.filter-panel {
position: fixed;
top: 0; left: 0; bottom: 0;
width: var(--panel-width);
background: rgba(16, 20, 35, 0.97);
backdrop-filter: blur(12px);
border-right: 1px solid var(--border);
z-index: 15;
display: flex;
flex-direction: column;
overflow: hidden;
}
.panel-header {
padding: 1rem 1.25rem 0.75rem;
border-bottom: 1px solid var(--border);
}
.panel-header h2 {
font-size: 0.95rem;
color: var(--neon-blue);
text-shadow: 0 0 10px rgba(96,165,250,0.2);
margin-bottom: 0.15rem;
}
.panel-header p {
font-size: 0.72rem;
color: var(--text-muted);
}
.panel-body {
flex: 1;
overflow-y: auto;
padding: 0.75rem 1rem;
scrollbar-width: thin;
scrollbar-color: var(--border) transparent;
}
.panel-body::-webkit-scrollbar { width: 5px; }
.panel-body::-webkit-scrollbar-track { background: transparent; }
.panel-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.filter-group {
margin-bottom: 1.25rem;
}
.filter-group h3 {
font-size: 0.72rem;
font-weight: 600;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 0.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.filter-group h3 .count {
color: var(--neon-cyan);
font-size: 0.68rem;
text-shadow: 0 0 6px rgba(34,211,238,0.2);
}
.filter-item {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.3rem 0.4rem;
border-radius: 5px;
cursor: pointer;
transition: background 0.15s;
font-size: 0.78rem;
color: var(--text);
user-select: none;
}
.filter-item:hover { background: rgba(59,158,255,0.08); }
.filter-item.dimmed { opacity: 0.35; }
.filter-cb {
width: 14px;
height: 14px;
border: 1.5px solid var(--text-muted);
border-radius: 3px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.15s;
}
.filter-item.active .filter-cb {
border-color: var(--neon-cyan);
background: rgba(34,211,238,0.15);
}
.filter-item.active .filter-cb::after {
content: '';
width: 7px;
height: 7px;
border-radius: 1.5px;
background: var(--neon-cyan);
box-shadow: 0 0 4px rgba(34,211,238,0.5);
}
.cat-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
}
.filter-actions {
display: flex;
gap: 0.4rem;
margin-top: 0.35rem;
}
.filter-link {
font-size: 0.68rem;
color: var(--azure-blue);
cursor: pointer;
transition: color 0.2s;
background: none;
border: none;
font-family: inherit;
padding: 0;
}
.filter-link:hover { color: var(--neon-cyan); }
.region-search {
width: 100%;
background: var(--bg-elevated);
border: 1px solid var(--border);
border-radius: 5px;
color: var(--text);
font-family: inherit;
font-size: 0.75rem;
padding: 0.35rem 0.5rem;
margin-bottom: 0.5rem;
outline: none;
transition: border-color 0.2s;
}
.region-search:focus { border-color: var(--azure-blue); }
.region-search::placeholder { color: var(--text-muted); opacity: 0.5; }
/* Toggle switch */
.toggle-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.35rem 0.4rem;
border-radius: 5px;
cursor: pointer;
transition: background 0.15s;
}
.toggle-row:hover { background: rgba(59,158,255,0.08); }
.toggle-label {
font-size: 0.78rem;
color: var(--text);
}
.toggle-switch {
width: 36px;
height: 20px;
background: var(--border);
border-radius: 10px;
position: relative;
transition: background 0.2s, box-shadow 0.2s;
flex-shrink: 0;
}
.toggle-switch.on {
background: var(--neon-cyan);
box-shadow: 0 0 8px rgba(34,211,238,0.3);
}
.toggle-switch::after {
content: '';
position: absolute;
width: 16px;
height: 16px;
background: white;
border-radius: 50%;
top: 2px;
left: 2px;
transition: transform 0.2s;
}
.toggle-switch.on::after {
transform: translateX(16px);
}
.sub-stats {
font-size: 0.68rem;
color: var(--text-muted);
margin-top: 0.25rem;
padding: 0 0.4rem;
}
/* Legend */
.panel-legend {
padding: 0.75rem 1rem;
border-top: 1px solid var(--border);
font-size: 0.68rem;
}
.panel-legend .legend-item {
display: flex;
align-items: center;
gap: 0.4rem;
margin-bottom: 0.25rem;
color: var(--text-muted);
}
.legend-line-thick {
width: 16px; height: 3px; background: rgba(59,158,255,0.5); border-radius: 1px; flex-shrink: 0;
}
.legend-line-thin {
width: 16px; height: 1px; background: rgba(59,158,255,0.25); flex-shrink: 0;
}
.legend-line-dashed {
width: 16px; height: 0; border-top: 1px dashed rgba(167,139,250,0.5); flex-shrink: 0;
}
.legend-node-big {
width: 12px; height: 12px; border-radius: 50%; background: rgba(59,158,255,0.5); flex-shrink: 0;
}
.legend-node-small {
width: 7px; height: 7px; border-radius: 50%; background: rgba(59,158,255,0.35); flex-shrink: 0; margin: 0 2.5px;
}
canvas {
position: fixed;
top: 0; left: var(--panel-width); right: 0; bottom: 0;
display: block;
cursor: grab;
touch-action: none;
}
canvas:active { cursor: grabbing; }
/* Help modal */
.help-overlay { position:fixed;inset:0;z-index:100;background:rgba(0,0,0,0.6);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity 0.2s; }
.help-overlay.open { opacity:1;pointer-events:auto; }
.help-modal { background:var(--bg-card);border:1px solid var(--border-glow);border-radius:12px;max-width:640px;width:92%;max-height:80vh;overflow-y:auto;padding:1.75rem 2rem;position:relative;box-shadow:0 8px 40px rgba(0,0,0,0.5),0 0 20px rgba(59,158,255,0.1); }
.help-modal h2 { font-size:1.2rem;color:var(--neon-blue);margin-bottom:1rem;text-shadow:0 0 12px rgba(96,165,250,0.3); }
.help-modal .help-close { position:absolute;top:0.75rem;right:1rem;background:none;border:none;color:var(--text-muted);font-size:1.4rem;cursor:pointer;line-height:1;padding:0.25rem; }
.help-modal .help-close:hover { color:var(--text); }
.help-section { margin-bottom:1.25rem; }
.help-section h3 { font-size:0.85rem;color:var(--neon-cyan);margin-bottom:0.4rem;text-transform:uppercase;letter-spacing:0.04em; }
.help-section p,.help-section li { font-size:0.8rem;color:var(--text-muted);line-height:1.6; }
.help-section ul { padding-left:1.2rem; }
.help-section li { margin-bottom:0.2rem; }
.help-kbd { display:inline-block;background:var(--bg-elevated);border:1px solid var(--border);border-radius:4px;padding:0.1rem 0.4rem;font-size:0.72rem;font-family:'Segoe UI',monospace;color:var(--text);margin:0 0.1rem; }
.help-divider { border:none;border-top:1px solid var(--border);margin:1rem 0; }
#btn-help { font-weight:700;font-size:0.85rem;min-width:30px;text-align:center; }
.tooltip {
position: fixed;
display: none;
background: rgba(26, 32, 53, 0.95);
border: 1px solid var(--border);
border-radius: 8px;
padding: 0.75rem 1rem;
font-size: 0.82rem;
max-width: 340px;
pointer-events: none;
z-index: 20;
box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 20px rgba(59,158,255,0.08);
}
.tooltip h3 {
color: var(--neon-cyan);
font-size: 0.9rem;
margin-bottom: 0.35rem;
text-shadow: 0 0 8px rgba(34,211,238,0.3);
}
.tooltip .tt-type {
color: var(--text-muted);
font-size: 0.75rem;
margin-bottom: 0.5rem;
}
.tooltip .tt-stat {
display: flex;
justify-content: space-between;
gap: 1rem;
padding: 0.15rem 0;
border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tooltip .tt-stat:last-child { border-bottom: none; }
.tooltip .tt-label { color: var(--text-muted); }
.tooltip .tt-value { color: var(--text-bright); font-weight: 600; }
.tooltip .tt-regions {
margin-top: 0.4rem;
padding-top: 0.4rem;
border-top: 1px solid rgba(255,255,255,0.06);
font-size: 0.72rem;
color: var(--text-muted);
line-height: 1.4;
}
.tooltip .tt-regions strong { color: var(--neon-blue); }
/* Right detail panel */
.detail-panel {
position: fixed;
top: 0; right: 0; bottom: 0;
width: 340px;
background: rgba(16, 20, 35, 0.97);
backdrop-filter: blur(12px);
border-left: 1px solid var(--border);
z-index: 15;
display: flex;
flex-direction: column;
transform: translateX(100%);
transition: transform 0.3s ease;
overflow: hidden;
}
.detail-panel.open { transform: translateX(0); }
.detail-header {
padding: 1rem 1.25rem 0.75rem;
border-bottom: 1px solid var(--border);
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 0.75rem;
}
.detail-title { display: flex; align-items: center; gap: 0.5rem; flex: 1; min-width: 0; }
.detail-title h2 {
font-size: 1.05rem; color: var(--neon-cyan);
text-shadow: 0 0 12px rgba(34,211,238,0.3); word-break: break-word;
}
.detail-cat-badge {
font-size: 0.62rem; padding: 0.15rem 0.5rem; border-radius: 10px;
font-weight: 600; white-space: nowrap; display: inline-block; margin-top: 0.2rem;
}
.detail-close {
background: none; border: none; color: var(--text-muted); font-size: 1.5rem;
cursor: pointer; padding: 0; line-height: 1; transition: color 0.2s; flex-shrink: 0;
}
.detail-close:hover { color: var(--neon-cyan); }
.detail-body {
flex: 1; overflow-y: auto; padding: 0;
scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.detail-body::-webkit-scrollbar { width: 5px; }
.detail-body::-webkit-scrollbar-track { background: transparent; }
.detail-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.detail-desc {
padding: 0.75rem 1.25rem; font-size: 0.8rem;
color: var(--text-muted); line-height: 1.5; border-bottom: 1px solid var(--border);
}
.detail-section {
padding: 0.75rem 1.25rem; border-bottom: 1px solid var(--border);
}
.detail-section h3 {
font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem;
display: flex; justify-content: space-between; align-items: center;
}
.detail-section h3 .ds-count {
color: var(--neon-cyan); font-size: 0.68rem;
text-shadow: 0 0 6px rgba(34,211,238,0.2);
}
.detail-stat-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
}
.detail-stat-card {
background: rgba(30,42,66,0.5); border: 1px solid rgba(30,45,74,0.5);
border-radius: 6px; padding: 0.5rem 0.65rem;
}
.detail-stat-card .ds-value {
font-size: 1rem; font-weight: 700; color: var(--neon-cyan);
text-shadow: 0 0 8px rgba(34,211,238,0.2);
}
.detail-stat-card .ds-label {
font-size: 0.65rem; color: var(--text-muted); margin-top: 0.1rem;
}
.dli {
display: block; padding: 0.4rem; border-radius: 5px;
cursor: pointer; transition: background 0.15s; margin-bottom: 0.1rem;
}
.dli:hover { background: rgba(59,158,255,0.1); }
.dli-row {
display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--text);
}
.dli-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dli-name { flex: 1; min-width: 0; }
.dli-meta { font-size: 0.68rem; color: var(--text-muted); flex-shrink: 0; }
.dli-desc {
font-size: 0.67rem; color: var(--text-muted); margin-top: 0.15rem;
padding-left: 1.1rem; line-height: 1.35;
}
.strength-bar { display: flex; gap: 2px; flex-shrink: 0; }
.strength-bar span {
width: 4px; height: 4px; border-radius: 50%; background: var(--border);
}
.strength-bar span.on {
background: var(--neon-cyan); box-shadow: 0 0 3px rgba(34,211,238,0.4);
}
.detail-regions {
padding: 0.75rem 1.25rem; font-size: 0.72rem;
color: var(--text-muted); line-height: 1.5;
}
.detail-regions strong { color: var(--neon-blue); }
.detail-regions .region-tags {
display: flex; flex-wrap: wrap; gap: 0.25rem; margin-top: 0.35rem;
}
.region-tag {
font-size: 0.62rem; padding: 0.1rem 0.4rem; border-radius: 3px;
background: rgba(30,42,66,0.6); border: 1px solid rgba(30,45,74,0.4);
color: var(--text-muted);
}
/* === ENHANCED FEATURES CSS === */
/* Live Stats Bar */
.stats-bar {
position: fixed;
top: 62px; left: var(--panel-width); right: 0;
z-index: 10;
background: rgba(10, 14, 26, 0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
padding: 0.4rem 1.5rem;
display: flex;
gap: 1.5rem;
align-items: center;
}
.stat-item {
display: flex;
flex-direction: column;
align-items: center;
min-width: 0;
}
.stat-value {
font-size: 1.05rem;
font-weight: 700;
color: var(--neon-cyan);
text-shadow: 0 0 8px rgba(34,211,238,0.2);
font-variant-numeric: tabular-nums;
white-space: nowrap;
}
.stat-label {
font-size: 0.62rem;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.04em;
white-space: nowrap;
}
.header + .stats-bar + canvas { top: 96px; }
/* Heatmap Color Mode Switcher */
.colorby-group { margin-bottom: 1.25rem; }
.colorby-group h3 {
font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem;
}
.colorby-btns {
display: flex; flex-wrap: wrap; gap: 0.3rem;
}
.colorby-btn {
font-size: 0.68rem; padding: 0.2rem 0.5rem; border-radius: 4px;
background: rgba(30,42,66,0.5); border: 1px solid var(--border);
color: var(--text-muted); cursor: pointer; font-family: inherit;
transition: all 0.15s;
}
.colorby-btn:hover { border-color: var(--azure-blue); color: var(--text); }
.colorby-btn.active {
background: rgba(59,158,255,0.15); border-color: var(--neon-cyan);
color: var(--neon-cyan); text-shadow: 0 0 6px rgba(34,211,238,0.2);
}
.heatmap-legend {
margin-top: 0.4rem; display: none; align-items: center; gap: 0.4rem;
font-size: 0.62rem; color: var(--text-muted);
}
.heatmap-legend.visible { display: flex; }
.heatmap-gradient {
height: 8px; flex: 1; border-radius: 4px;
background: linear-gradient(to right, #3b9eff, #fbbf24, #f87171);
}
/* Licensing Filter */
.license-btns { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.license-btn {
font-size: 0.65rem; padding: 0.2rem 0.45rem; border-radius: 4px;
border: 1px solid var(--border); cursor: pointer; font-family: inherit;
transition: all 0.15s; background: rgba(30,42,66,0.5); color: var(--text-muted);
}
.license-btn:hover { border-color: var(--azure-blue); color: var(--text); }
.license-btn.active { color: #fff; text-shadow: 0 0 6px currentColor; }
.license-btn[data-lic="Reserved Instances"].active { background: rgba(59,158,255,0.25); border-color: #3b9eff; color: #3b9eff; }
.license-btn[data-lic="AHUB"].active { background: rgba(167,139,250,0.25); border-color: #a78bfa; color: #a78bfa; }
.license-btn[data-lic="Savings Plans"].active { background: rgba(52,211,153,0.25); border-color: #34d399; color: #34d399; }
.license-btn[data-lic="Spot"].active { background: rgba(251,146,60,0.25); border-color: #fb923c; color: #fb923c; }
.license-btn[data-lic="Dev/Test"].active { background: rgba(34,211,238,0.25); border-color: #22d3ee; color: #22d3ee; }
/* Licensing Detail in Detail Panel */
.lic-model { margin-bottom: 0.6rem; }
.lic-model-name { font-size: 0.72rem; font-weight: 700; text-shadow: 0 0 6px currentColor; }
.lic-product { font-size: 0.72rem; color: var(--text-muted); padding: 0.1rem 0 0.1rem 0.75rem; border-left: 2px solid rgba(30,45,74,0.5); }
.lic-product-name { color: var(--text); }
.lic-terms { color: var(--text-muted); font-size: 0.65rem; }
/* Comparison Mode */
.compare-hint {
font-size: 0.62rem; color: var(--text-muted); padding: 0.5rem 1.25rem;
border-bottom: 1px solid var(--border); display: none;
}
.compare-hint.visible { display: block; }
.compare-table {
width: 100%; font-size: 0.78rem; border-collapse: collapse;
margin-top: 0.5rem;
}
.compare-table th {
text-align: left; color: var(--text-muted); font-weight: 600;
padding: 0.3rem 0.5rem; border-bottom: 1px solid var(--border);
font-size: 0.68rem; text-transform: uppercase;
}
.compare-table td {
padding: 0.3rem 0.5rem; border-bottom: 1px solid rgba(30,45,74,0.3);
color: var(--text);
}
.compare-table td.highlight {
color: var(--neon-cyan); font-weight: 700;
}
</style>
</head>
<body>
<div class="filter-panel">
<div class="panel-header">
<h2>Filters</h2>
<p>Filter by category, depth, or region availability</p>
</div>
<div class="panel-body">
<div class="filter-group">
<h3>Search</h3>
<div class="search-container">
<span class="search-icon">🔍</span>
<input type="text" class="search-input" id="search-input" placeholder="Search providers & services..." autocomplete="off">
<div class="search-results" id="search-results"></div>
</div>
</div>
<div class="filter-group" id="cat-filters">
<h3>Categories <span class="count" id="cat-count"></span></h3>
</div>
<div class="filter-group">
<h3>Commercial Models</h3>
<div class="license-btns" id="license-btns">
<button class="license-btn" data-lic="Reserved Instances">Reserved Instances</button>
<button class="license-btn" data-lic="AHUB">AHUB</button>
<button class="license-btn" data-lic="Savings Plans">Savings Plans</button>
<button class="license-btn" data-lic="Spot">Spot Pricing</button>
<button class="license-btn" data-lic="Dev/Test">Dev/Test</button>
</div>
</div>
<div class="filter-group colorby-group">
<h3>Color By</h3>
<div class="colorby-btns" id="colorby-btns">
<button class="colorby-btn active" data-mode="category">Category</button>
<button class="colorby-btn" data-mode="params">Params</button>
<button class="colorby-btn" data-mode="skus">SKUs</button>
<button class="colorby-btn" data-mode="operations">Operations</button>
<button class="colorby-btn" data-mode="maturity">API Maturity</button>
</div>
<div class="heatmap-legend" id="heatmap-legend">
<span id="heatmap-min">0</span>
<div class="heatmap-gradient"></div>
<span id="heatmap-max">max</span>
</div>
</div>
<div class="filter-group">
<h3>Display</h3>
<div class="toggle-row" id="toggle-row-subs">
<span class="toggle-label">Sub-Services</span>
<div class="toggle-switch" id="toggle-subs"></div>
</div>
<div class="sub-stats" id="sub-stats"></div>
<div class="toggle-row" id="toggle-row-preview" style="margin-top:0.3rem">
<span class="toggle-label">Portal Preview</span>
<div class="toggle-switch" id="toggle-preview"></div>
</div>
<div class="sub-stats" id="preview-stats"></div>
<div class="toggle-row" id="toggle-row-humancost" style="margin-top:0.3rem">
<span class="toggle-label">Human Cost</span>
<div class="toggle-switch" id="toggle-humancost"></div>
</div>
<div class="sub-stats" id="humancost-stats"></div>
</div>
<div class="filter-group" id="region-filters">
<h3>Regions <span class="count" id="region-count"></span></h3>
<input type="text" class="region-search" id="region-search" placeholder="Search regions...">
<div class="filter-actions">
<button class="filter-link" id="regions-all">Select All</button>
<button class="filter-link" id="regions-none">Clear All</button>
</div>
<div id="region-list" style="margin-top:0.4rem"></div>
</div>
</div>
<div class="panel-legend">
<div class="legend-item"><div class="legend-node-big"></div> Resource provider</div>
<div class="legend-item"><div class="legend-node-small"></div> Sub-service / product</div>
<div class="legend-item"><div class="legend-line-thick"></div> Provider dependency</div>
<div class="legend-item"><div class="legend-line-thin"></div> Parent ↔ sub-service</div>
<div class="legend-item"><div class="legend-line-dashed"></div> Cross-service relationship</div>
<div class="legend-item" id="legend-preview" style="display:none"><div style="width:14px;height:14px;border-radius:50%;border:2px solid #fb923c;margin-right:6px;position:relative"><span style="position:absolute;top:-2px;right:-4px;background:#fb923c;color:#fff;font-size:7px;font-weight:bold;width:9px;height:9px;border-radius:50%;display:flex;align-items:center;justify-content:center">P</span></div> Portal Preview</div>
<div style="margin-top:0.3rem;color:#3a4158">Node size = complexity score</div>
</div>
</div>
<div class="header">
<div>
<h1>Azure Resource Relationship Graph</h1>
<div class="subtitle">Force-directed visualisation of service and sub-service interdependencies</div>
</div>
<div class="header-right">
<a class="btn" href="https://github.com/xeeva/Azure-Scale/issues" target="_blank" rel="noopener">Report Issue</a>
<a class="btn" href="https://github.com/sponsors/xeeva" target="_blank" rel="noopener" style="border-color:rgba(219,39,119,0.4);color:#db2777;background:rgba(219,39,119,0.1)">♥ Sponsor</a>
<button class="btn" id="btn-reset">Reset View</button>
<button class="btn" id="btn-freeze">Freeze</button>
<button class="btn" id="btn-help">?</button>
<a href="index.html" class="back-link">← Back to Report</a>
</div>
</div>
<div class="stats-bar" id="stats-bar">
<div class="stat-item"><span class="stat-value" id="stat-providers">—</span><span class="stat-label">Providers</span></div>
<div class="stat-item"><span class="stat-value" id="stat-params">—</span><span class="stat-label">Config Params</span></div>
<div class="stat-item"><span class="stat-value" id="stat-skus">—</span><span class="stat-label">SKU Variants</span></div>
<div class="stat-item"><span class="stat-value" id="stat-ops">—</span><span class="stat-label">API Operations</span></div>
<div class="stat-item"><span class="stat-value" id="stat-humancost">—</span><span class="stat-label">Human Cost</span></div>
</div>
<canvas id="graph"></canvas>
<div class="tooltip" id="tooltip"></div>
<div class="detail-panel" id="detail-panel">
<div class="detail-header">
<div class="detail-title"><h2 id="detail-name"></h2></div>
<button class="detail-close" id="detail-close">×</button>
</div>
<div class="detail-body" id="detail-body"></div>
</div>
<div class="help-overlay" id="help-overlay">
<div class="help-modal">
<button class="help-close" id="help-close">×</button>
<h2>Azure Complexity Graph — Help</h2>
<div class="help-section"><h3>Navigation</h3><ul><li><strong>Pan</strong> — click + drag on empty space</li><li><strong>Zoom</strong> — scroll wheel or pinch</li><li><strong>Select</strong> — click a node to view details</li><li><strong>Drag</strong> — click + drag a node to reposition</li><li><strong>Double-click</strong> — centre + zoom on node</li></ul></div>
<div class="help-section"><h3>Keyboard Shortcuts</h3><ul><li><span class="help-kbd">Esc</span> close detail panel / deselect</li><li><span class="help-kbd">R</span> reset view</li><li><span class="help-kbd">F</span> freeze / unfreeze simulation</li><li><span class="help-kbd">?</span> toggle this help</li></ul></div>
<div class="help-section"><h3>Sidebar Filters</h3><ul><li><strong>Search</strong> — find by name</li><li><strong>Categories</strong> — toggle groups</li><li><strong>Sub-Services</strong> — show/hide</li><li><strong>Portal Preview</strong> — highlight services marked Preview in Azure Portal</li><li><strong>Regions</strong> — filter by availability</li></ul></div>
<div id="help-v2-features"><hr class="help-divider"><div class="help-section"><h3>Enhanced Features</h3><ul><li><strong>Stats Bar</strong> — live counts</li><li><strong>Heatmap</strong> — colour by metric</li><li><strong>Human Cost</strong> — time-to-learn overlay</li><li><strong>Licensing</strong> — filter by tier</li><li><strong>Centrality</strong> — most connected</li><li><strong>Comparison</strong> — side-by-side</li></ul></div></div>
</div>
</div>
<script>
// %%GRAPH_DATA_START%%
// ============================================================
// DATA — CATEGORIES
// ============================================================
const CATEGORIES = {
compute:{color:'#3b9eff',glow:'rgba(59,158,255,0.5)',label:'Compute'},
networking:{color:'#22d3ee',glow:'rgba(34,211,238,0.5)',label:'Networking'},
data:{color:'#a78bfa',glow:'rgba(167,139,250,0.5)',label:'Data & Storage'},
security:{color:'#f472b6',glow:'rgba(244,114,182,0.5)',label:'Security & Identity'},
app:{color:'#34d399',glow:'rgba(52,211,153,0.5)',label:'App Platform'},
monitoring:{color:'#fb923c',glow:'rgba(251,146,60,0.5)',label:'Monitoring & Mgmt'},
ai:{color:'#818cf8',glow:'rgba(129,140,248,0.5)',label:'AI & ML'},
integration:{color:'#fbbf24',glow:'rgba(251,191,36,0.5)',label:'Integration'},
devtools:{color:'#f87171',glow:'rgba(248,113,113,0.5)',label:'Developer Tools'},
iot:{color:'#2dd4bf',glow:'rgba(45,212,191,0.5)',label:'IoT & Edge'},
hybrid:{color:'#c084fc',glow:'rgba(192,132,252,0.5)',label:'Hybrid & Arc'},
management:{color:'#94a3b8',glow:'rgba(148,163,184,0.5)',label:'Governance'}
};
// ============================================================
// DATA — PARENT NODES
// ============================================================
const parentNodes = [
{id:'Network',label:'Network',category:'networking',isParent:true,score:17837.0,params:8549,resourceTypes:194,skus:0,operations:1084,products:49,previewApis:262,gaApis:5249,previewOnlyTypes:8,preview:0,desc:'Virtual networks, load balancers, DNS, and network security',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Global", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Dev/Test"]},
{id:'Web',label:'Web',category:'app',isParent:true,score:5914.4,params:2746,resourceTypes:78,skus:24,operations:666,products:12,previewApis:145,gaApis:1591,previewOnlyTypes:0,preview:0,desc:'App Service, Functions, and web apps',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Dev/Test", "Reserved Instances", "Savings Plans"]},
{id:'Sql',label:'SQL',category:'data',isParent:true,score:3477.0,params:1458,resourceTypes:249,skus:0,operations:606,products:21,previewApis:4221,gaApis:754,previewOnlyTypes:1,preview:0,desc:'Azure SQL Database and SQL Managed Instance',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["AHUB", "Dev/Test", "Reserved Instances"]},
{id:'Compute',label:'Compute',category:'compute',isParent:true,score:3182.0,params:1407,resourceTypes:80,skus:1225,operations:301,products:18,previewApis:81,gaApis:1209,previewOnlyTypes:6,preview:0,desc:'Virtual machines, scale sets, and compute resources',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["AHUB", "Dev/Test", "Reserved Instances", "Savings Plans", "Spot"]},
{id:'ApiManagement',label:'API\nManagement',category:'app',isParent:true,score:3143.5,params:1288,resourceTypes:15,skus:3440,operations:417,products:12,previewApis:139,gaApis:86,previewOnlyTypes:0,preview:0,desc:'API Management gateway and developer portal',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'CognitiveServices',label:'Microsoft\nFoundry',category:'ai',isParent:true,score:2412.0,params:431,resourceTypes:36,skus:5490,operations:1924,products:22,previewApis:189,gaApis:213,previewOnlyTypes:4,preview:0,desc:'Azure AI Services — Microsoft Foundry (OpenAI, Doc Intelligence, Vision, Speech, Language, and more)',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "Germany West Central", "Global", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'Migrate',label:'Migrate',category:'management',isParent:true,score:2388.0,params:1105,resourceTypes:19,skus:0,operations:318,products:9,previewApis:58,gaApis:32,previewOnlyTypes:12,preview:0,desc:'Azure Migrate assessment and migration',regions:["Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Central India", "Central US", "Chile Central", "East Asia", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Europe", "West US 2"]},
{id:'MachineLearningServices',label:'Machine\nLearning',category:'ai',isParent:true,score:2008.5,params:875,resourceTypes:69,skus:215,operations:324,products:16,previewApis:934,gaApis:646,previewOnlyTypes:13,preview:0,desc:'Azure Machine Learning workspaces and models',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Malaysia West", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["Savings Plans", "Spot"]},
{id:'Storage',label:'Storage',category:'data',isParent:true,score:1852.0,params:483,resourceTypes:26,skus:7370,operations:240,products:16,previewApis:37,gaApis:493,previewOnlyTypes:0,preview:0,desc:'Storage accounts, blobs, files, queues, and tables',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'Logic',label:'Logic',category:'app',isParent:true,score:1791.0,params:858,resourceTypes:12,skus:0,operations:126,products:8,previewApis:26,gaApis:20,previewOnlyTypes:5,preview:0,desc:'Logic Apps workflow automation',regions:["Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'ContainerService',label:'Kubernetes\nService\n(AKS)',category:'compute',isParent:true,score:1699.0,params:536,resourceTypes:29,skus:0,operations:1178,products:14,previewApis:394,gaApis:538,previewOnlyTypes:7,preview:0,desc:'Azure Kubernetes Service (AKS)',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["AHUB", "Savings Plans", "Spot"]},
{id:'Billing',label:'Billing',category:'management',isParent:true,score:1598.0,params:643,resourceTypes:194,skus:0,operations:236,products:6,previewApis:367,gaApis:194,previewOnlyTypes:99,preview:0,desc:'Billing accounts and invoices',regions:["Global"]},
{id:'AppPlatform',label:'Spring\nApps',category:'app',isParent:true,score:1593.5,params:733,resourceTypes:24,skus:1005,operations:0,products:7,previewApis:382,gaApis:96,previewOnlyTypes:0,preview:0,desc:'Azure Spring Apps',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Italy North", "Japan East", "Korea Central", "North Central US", "North Europe", "South Africa North", "South Central US", "Southeast Asia", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Europe", "West US", "West US 2", "West US 3"],licensing:["Savings Plans"]},
{id:'AzureStackHCI',label:'Azure\nLocal',category:'hybrid',isParent:true,score:1555.0,params:719,resourceTypes:43,skus:0,operations:142,products:8,previewApis:348,gaApis:153,previewOnlyTypes:22,preview:0,desc:'Azure Local (formerly Azure Stack HCI) hybrid infrastructure',regions:["Australia East", "Canada Central", "Central India", "Central US", "Central US EUAP", "East US", "East US 2", "East US 2 EUAP", "Germany West Central", "Japan East", "North Europe", "South Central US", "Southeast Asia", "UK South", "West Europe", "West US 2"],licensing:["AHUB"]},
{id:'ProviderHub',label:'Provider\nHub',category:'management',isParent:true,score:1512.0,params:750,resourceTypes:12,skus:0,operations:0,products:0,previewApis:181,gaApis:35,previewOnlyTypes:0,preview:0,desc:'Resource provider management and onboarding',regions:["Global"]},
{id:'Synapse',label:'Synapse',category:'data',isParent:true,score:1425.0,params:594,resourceTypes:25,skus:1130,operations:192,products:9,previewApis:53,gaApis:57,previewOnlyTypes:12,preview:0,desc:'Azure Synapse Analytics',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Malaysia West", "Mexico Central", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'NetworkCloud',label:'Network\nCloud',category:'networking',isParent:true,score:1328.5,params:614,resourceTypes:23,skus:0,operations:155,products:7,previewApis:26,gaApis:91,previewOnlyTypes:0,preview:0,desc:'Operator Nexus compute resources',regions:["East US", "Global", "South Central US", "UK South", "West US 3"]},
{id:'App',label:'App',category:'app',isParent:true,score:1195.5,params:522,resourceTypes:45,skus:0,operations:207,products:8,previewApis:366,gaApis:177,previewOnlyTypes:10,preview:0,desc:'Azure Container Apps',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany West Central", "Italy North", "Japan East", "Japan West", "Korea Central", "North Central US", "North Europe", "Norway East", "Poland Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["Savings Plans"]},
{id:'Automation',label:'Automation',category:'devtools',isParent:true,score:1123.5,params:511,resourceTypes:18,skus:0,operations:167,products:11,previewApis:51,gaApis:96,previewOnlyTypes:0,preview:0,desc:'Azure Automation runbooks and DSC',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'AzureArcData',label:'Azure Arc\nData',category:'hybrid',isParent:true,score:1092.0,params:535,resourceTypes:13,skus:0,operations:0,products:4,previewApis:168,gaApis:18,previewOnlyTypes:5,preview:0,desc:'Azure Arc-enabled data services',regions:["Australia East", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "Germany West Central", "Italy North", "Japan East", "Japan West", "Korea Central", "North Central US", "North Europe", "Norway East", "South Africa North", "South Central US", "Southeast Asia", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["AHUB", "Dev/Test", "Reserved Instances"]},
{id:'NetApp',label:'NetApp',category:'data',isParent:true,score:1037.5,params:490,resourceTypes:30,skus:0,operations:49,products:11,previewApis:500,gaApis:847,previewOnlyTypes:2,preview:0,desc:'Azure NetApp Files',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany North", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'Consumption',label:'Consumption',category:'management',isParent:true,score:1011.0,params:486,resourceTypes:25,skus:0,operations:28,products:6,previewApis:38,gaApis:345,previewOnlyTypes:0,preview:0,desc:'Consumption and usage analytics',regions:["Global"]},
{id:'ManagedNetworkFabric',label:'Managed\nNetwork\nFabric',category:'networking',isParent:true,score:967.5,params:375,resourceTypes:28,skus:0,operations:379,products:0,previewApis:53,gaApis:52,previewOnlyTypes:0,preview:0,desc:'Operator Nexus network fabric',regions:["Australia East", "East US", "North Europe", "South Central US", "UAE North", "UK South", "West US 3"]},
{id:'Kusto',label:'Kusto',category:'data',isParent:true,score:933.5,params:0,resourceTypes:15,skus:8715,operations:88,products:10,previewApis:16,gaApis:184,previewOnlyTypes:0,preview:0,desc:'Azure Data Explorer (Kusto)',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'OperationalInsights',label:'Log\nAnalytics',category:'monitoring',isParent:true,score:922.0,params:203,resourceTypes:26,skus:0,operations:980,products:8,previewApis:62,gaApis:99,previewOnlyTypes:1,preview:0,desc:'Log Analytics workspaces and queries',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'DeviceRegistry',label:'Device\nRegistry',category:'iot',isParent:true,score:921.0,params:451,resourceTypes:19,skus:0,operations:0,products:0,previewApis:84,gaApis:22,previewOnlyTypes:4,preview:0,desc:'IoT device registry',regions:["East US", "East US 2", "Germany West Central", "Global", "North Europe", "South Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'EventGrid',label:'Event Grid',category:'integration',isParent:true,score:863.0,params:418,resourceTypes:27,skus:0,operations:0,products:8,previewApis:321,gaApis:115,previewOnlyTypes:3,preview:0,desc:'Event Grid event-driven messaging',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Global", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'HDInsight',label:'HDInsight',category:'data',isParent:true,score:804.0,params:394,resourceTypes:13,skus:0,operations:0,products:6,previewApis:72,gaApis:11,previewOnlyTypes:2,preview:0,desc:'HDInsight managed Hadoop and Spark clusters',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["Dev/Test"]},
{id:'DesktopVirtualization',label:'Azure\nVirtual\nDesktop',category:'compute',isParent:true,score:782.0,params:380,resourceTypes:16,skus:0,operations:0,products:9,previewApis:548,gaApis:65,previewOnlyTypes:3,preview:0,desc:'Azure Virtual Desktop',regions:["Australia East", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "Japan East", "Japan West", "Korea Central", "North Central US", "North Europe", "South Africa North", "South Central US", "Southeast Asia", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["AHUB", "Savings Plans"]},
{id:'SecurityInsights',label:'Microsoft\nSentinel',category:'security',isParent:true,score:703.5,params:291,resourceTypes:43,skus:0,operations:151,products:16,previewApis:992,gaApis:172,previewOnlyTypes:23,preview:0,desc:'Microsoft Sentinel (SIEM and SOAR)',regions:["Global"],licensing:["Reserved Instances"]},
{id:'HybridCompute',label:'Azure Arc\nServers',category:'hybrid',isParent:true,score:689.0,params:328,resourceTypes:33,skus:0,operations:0,products:5,previewApis:487,gaApis:151,previewOnlyTypes:0,preview:0,desc:'Azure Arc-enabled servers',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'DataBoxEdge',label:'Data Box\nEdge',category:'data',isParent:true,score:634.5,params:290,resourceTypes:4,skus:0,operations:101,products:0,previewApis:28,gaApis:46,previewOnlyTypes:0,preview:0,desc:'Azure Stack Edge devices',regions:["East US", "Southeast Asia", "West Europe"]},
{id:'Resources',label:'Resources',category:'management',isParent:true,score:621.0,params:286,resourceTypes:49,skus:0,operations:0,products:10,previewApis:85,gaApis:830,previewOnlyTypes:3,preview:0,desc:'Resource groups, deployments, and ARM templates',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'ContainerRegistry',label:'Container\nRegistry',category:'app',isParent:true,score:608.0,params:250,resourceTypes:46,skus:0,operations:124,products:9,previewApis:433,gaApis:170,previewOnlyTypes:9,preview:0,desc:'Container Registry for Docker images',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'Edge',label:'Edge',category:'management',isParent:true,score:579.0,params:266,resourceTypes:47,skus:0,operations:0,products:0,previewApis:33,gaApis:54,previewOnlyTypes:18,preview:0,desc:'Edge disconnected operations',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Japan East", "Korea Central", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "Southeast Asia", "Sweden Central", "Switzerland North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'DataShare',label:'Data Share',category:'data',isParent:true,score:573.0,params:265,resourceTypes:18,skus:0,operations:50,products:3,previewApis:6,gaApis:56,previewOnlyTypes:0,preview:0,desc:'Data Share for data collaboration',regions:["Australia East", "Canada Central", "Central India", "Central US", "East Asia", "East US", "East US 2", "North Europe", "South Africa North", "South Central US", "Southeast Asia", "UK South", "West Central US", "West Europe", "West US", "West US 2"]},
{id:'IoTOperations',label:'IoT\nOperations',category:'iot',isParent:true,score:542.5,params:245,resourceTypes:16,skus:0,operations:67,products:7,previewApis:53,gaApis:53,previewOnlyTypes:0,preview:0,desc:'Azure IoT Operations for edge',regions:["East US", "East US 2", "Germany West Central", "Global", "North Europe", "South Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["Dev/Test"]},
{id:'ContainerInstance',label:'Container\nInstances',category:'compute',isParent:true,score:517.5,params:239,resourceTypes:14,skus:0,operations:39,products:5,previewApis:153,gaApis:160,previewOnlyTypes:0,preview:0,desc:'Serverless container instances',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Savings Plans", "Spot"]},
{id:'EdgeOrder',label:'Edge Order',category:'management',isParent:true,score:503.0,params:242,resourceTypes:19,skus:0,operations:0,products:0,previewApis:39,gaApis:20,previewOnlyTypes:9,preview:0,desc:'Azure Edge Order for hardware',regions:["East US", "Southeast Asia", "West Europe"]},
{id:'Cdn',label:'CDN',category:'networking',isParent:true,score:495.0,params:218,resourceTypes:59,skus:0,operations:0,products:8,previewApis:595,gaApis:433,previewOnlyTypes:15,preview:0,desc:'Azure CDN and Front Door',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "Global", "Japan East", "Japan West", "North Central US", "North Europe", "South Central US", "South India", "Southeast Asia", "West Central US", "West Europe", "West India", "West US"]},
{id:'LabServices',label:'Lab\nServices',category:'devtools',isParent:true,score:492.0,params:103,resourceTypes:9,skus:2375,operations:79,products:3,previewApis:26,gaApis:17,previewOnlyTypes:0,preview:0,desc:'Lab Services for classroom and training labs',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany West Central", "Japan East", "Japan West", "Korea Central", "Korea South", "North Central US", "North Europe", "Norway East", "South Africa North", "South Central US", "South India", "Southeast Asia", "Switzerland North", "Switzerland West", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2"]},
{id:'BotService',label:'Bot\nService',category:'ai',isParent:true,score:491.0,params:238,resourceTypes:14,skus:10,operations:0,products:6,previewApis:41,gaApis:51,previewOnlyTypes:0,preview:0,desc:'Azure Bot Service',regions:["Central India", "Global", "West Europe", "West US"]},
{id:'Cache',label:'Cache',category:'data',isParent:true,score:488.0,params:0,resourceTypes:21,skus:4235,operations:81,products:10,previewApis:165,gaApis:254,previewOnlyTypes:0,preview:0,desc:'Azure Cache for Redis',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'StreamAnalytics',label:'Stream\nAnalytics',category:'data',isParent:true,score:482.0,params:235,resourceTypes:12,skus:0,operations:0,products:6,previewApis:30,gaApis:42,previewOnlyTypes:6,preview:0,desc:'Stream Analytics real-time event processing',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'StorageCache',label:'Storage\nCache',category:'data',isParent:true,score:477.5,params:128,resourceTypes:13,skus:1750,operations:67,products:3,previewApis:45,gaApis:103,previewOnlyTypes:0,preview:0,desc:'Managed Lustre and HPC Cache',regions:["Australia East", "Brazil South", "Canada Central", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Mexico Central", "North Central US", "North Europe", "Norway East", "South Africa North", "South Central US", "Southeast Asia", "Spain Central", "Sweden Central", "UAE North", "UK South", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'ServiceBus',label:'Service\nBus',category:'integration',isParent:true,score:472.0,params:197,resourceTypes:27,skus:0,operations:102,products:6,previewApis:148,gaApis:92,previewOnlyTypes:4,preview:0,desc:'Service Bus messaging queues and topics',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'Batch',label:'Batch',category:'compute',isParent:true,score:433.5,params:189,resourceTypes:18,skus:0,operations:69,products:8,previewApis:34,gaApis:269,previewOnlyTypes:0,preview:0,desc:'Azure Batch parallel and HPC workloads',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Spot"]},
{id:'Workloads',label:'Workloads',category:'hybrid',isParent:true,score:425.5,params:173,resourceTypes:16,skus:20,operations:123,products:5,previewApis:65,gaApis:19,previewOnlyTypes:5,preview:0,desc:'Azure Center for SAP Solutions',regions:["Australia East", "Brazil South", "Canada Central", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Italy North", "Japan East", "Korea Central", "Korea South", "North Europe", "Norway East", "South Africa North", "South Central US", "Southeast Asia", "Sweden Central", "Switzerland North", "UAE North", "UK South", "West Europe", "West US 2", "West US 3"]},
{id:'KeyVault',label:'Key Vault',category:'security',isParent:true,score:412.6,params:165,resourceTypes:21,skus:6,operations:122,products:11,previewApis:162,gaApis:180,previewOnlyTypes:0,preview:0,desc:'Key Vault for keys, secrets, and certificates',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'HealthcareApis',label:'Healthcare\nAPIs',category:'app',isParent:true,score:399.0,params:165,resourceTypes:18,skus:0,operations:102,products:4,previewApis:112,gaApis:193,previewOnlyTypes:1,preview:0,desc:'Health Data Services (FHIR, DICOM, MedTech)',regions:["Australia East", "Canada Central", "Central India", "East US", "East US 2", "France Central", "Germany West Central", "Japan East", "Korea Central", "North Central US", "North Europe", "Qatar Central", "South Africa North", "South Central US", "Southeast Asia", "Sweden Central", "Switzerland North", "UK South", "UK West", "West Central US", "West Europe", "West US 2", "West US 3"]},
{id:'ServiceFabric',label:'Service\nFabric',category:'compute',isParent:true,score:399.0,params:188,resourceTypes:23,skus:0,operations:0,products:9,previewApis:406,gaApis:104,previewOnlyTypes:0,preview:0,desc:'Service Fabric cluster management',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'DataBox',label:'Data Box',category:'data',isParent:true,score:353.0,params:166,resourceTypes:10,skus:0,operations:22,products:0,previewApis:29,gaApis:141,previewOnlyTypes:0,preview:0,desc:'Data Box offline data transfer',regions:["Australia East", "Brazil South", "Canada Central", "East Asia", "Japan East", "Korea Central", "Norway West", "Qatar Central", "South Africa North", "South India", "Southeast Asia", "Switzerland North", "UAE Central", "UK South", "West Europe", "West US"]},
{id:'SCVMM',label:'SCVMM',category:'hybrid',isParent:true,score:353.0,params:159,resourceTypes:14,skus:0,operations:42,products:0,previewApis:25,gaApis:20,previewOnlyTypes:4,preview:0,desc:'SCVMM',regions:["Australia East", "Central US", "East US", "East US 2", "East US 2 EUAP", "North Europe", "South Central US", "Southeast Asia", "Sweden Central", "UK South", "West Europe", "West US 2", "West US 3"]},
{id:'Fabric',label:'Fabric',category:'data',isParent:true,score:345.0,params:4,resourceTypes:10,skus:3135,operations:21,products:30,previewApis:7,gaApis:10,previewOnlyTypes:0,preview:0,desc:'Microsoft Fabric analytics platform',regions:["Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Global", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'NotificationHubs',label:'Notification\nHubs',category:'integration',isParent:true,score:343.0,params:169,resourceTypes:5,skus:0,operations:0,products:3,previewApis:15,gaApis:20,previewOnlyTypes:0,preview:0,desc:'Notification Hubs push notifications',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Sweden Central", "Switzerland North", "Switzerland West", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'HybridNetwork',label:'Hybrid\nNetwork',category:'networking',isParent:true,score:341.5,params:115,resourceTypes:26,skus:0,operations:171,products:0,previewApis:38,gaApis:51,previewOnlyTypes:1,preview:0,desc:'Hybrid network function management',regions:["Central US EUAP", "East US", "East US 2 EUAP", "South Central US", "UK South", "West Central US", "West Europe", "West US 3"]},
{id:'AzureFleet',label:'Azure\nCompute\nFleet',category:'compute',isParent:true,score:336.0,params:166,resourceTypes:4,skus:0,operations:0,products:0,previewApis:12,gaApis:8,previewOnlyTypes:0,preview:0,desc:'Azure Compute Fleet',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'DevCenter',label:'Dev Center',category:'devtools',isParent:true,score:326.5,params:141,resourceTypes:39,skus:55,operations:0,products:8,previewApis:558,gaApis:87,previewOnlyTypes:4,preview:0,desc:'Dev Box and Deployment Environments',regions:["Australia East", "Brazil South", "Canada Central", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Global", "Italy North", "Japan East", "Japan West", "Korea Central", "North Europe", "Poland Central", "South Africa North", "South Central US", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "West Europe", "West US 2", "West US 3"]},
{id:'DataFactory',label:'Data\nFactory',category:'data',isParent:true,score:322.0,params:113,resourceTypes:8,skus:0,operations:170,products:10,previewApis:7,gaApis:8,previewOnlyTypes:0,preview:0,desc:'Data Factory data integration pipelines',regions:["Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'AVS',label:'AVS',category:'hybrid',isParent:true,score:298.5,params:0,resourceTypes:32,skus:2245,operations:78,products:9,previewApis:15,gaApis:211,previewOnlyTypes:0,preview:0,desc:'Azure VMware Solution',regions:["Australia East", "Australia Southeast", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Malaysia West", "New Zealand North", "North Central US", "North Europe", "Norway East", "Qatar Central", "South Africa North", "South Central US", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["AHUB"]},
{id:'Confluent',label:'Confluent',category:'integration',isParent:true,score:287.0,params:135,resourceTypes:17,skus:0,operations:0,products:0,previewApis:28,gaApis:52,previewOnlyTypes:0,preview:0,desc:'Confluent on Azure (Apache Kafka)',regions:["Australia East", "Brazil South", "Canada Central", "Central India", "Central US", "Central US EUAP", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "Germany West Central", "Italy North", "Japan East", "Korea Central", "Mexico Central", "North Europe", "Norway East", "Qatar Central", "South Africa North", "South Central US", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "West Central US", "West Europe", "West US 2", "West US 3"]},
{id:'KubernetesConfiguration',label:'Kubernetes\nConfiguration',category:'hybrid',isParent:true,score:281.5,params:128,resourceTypes:11,skus:0,operations:29,products:3,previewApis:35,gaApis:25,previewOnlyTypes:7,preview:0,desc:'Flux and GitOps for Arc-enabled Kubernetes',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'RecoveryServices',label:'Recovery\nServices',category:'management',isParent:true,score:271.0,params:58,resourceTypes:19,skus:0,operations:266,products:15,previewApis:103,gaApis:280,previewOnlyTypes:1,preview:0,desc:'Backup and Site Recovery vaults',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'Marketplace',label:'Marketplace',category:'app',isParent:true,score:265.0,params:98,resourceTypes:47,skus:0,operations:44,products:4,previewApis:17,gaApis:184,previewOnlyTypes:9,preview:0,desc:'Azure Marketplace private stores',regions:["Global"]},
{id:'DocumentDB',label:'Cosmos DB\n(DocumentDB)',category:'data',isParent:true,score:260.5,params:0,resourceTypes:22,skus:0,operations:471,products:13,previewApis:359,gaApis:326,previewOnlyTypes:3,preview:0,desc:'Azure Cosmos DB',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'PowerBIDedicated',label:'Power BI\nDedicated',category:'management',isParent:true,score:254.0,params:0,resourceTypes:7,skus:2315,operations:31,products:3,previewApis:11,gaApis:17,previewOnlyTypes:1,preview:0,desc:'PowerBIDedicated',regions:["Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'AppComplianceAutomation',label:'App\nCompliance\nAutomation',category:'app',isParent:true,score:245.0,params:115,resourceTypes:15,skus:0,operations:0,products:2,previewApis:39,gaApis:17,previewOnlyTypes:1,preview:1,desc:'App Compliance Automation for Microsoft 365',regions:["Global", "West US 3"]},
{id:'StorageMover',label:'Storage\nMover',category:'data',isParent:true,score:239.5,params:105,resourceTypes:10,skus:0,operations:39,products:3,previewApis:27,gaApis:46,previewOnlyTypes:0,preview:0,desc:'Storage Mover for data migration',regions:["East US", "East US 2", "North Europe", "Sweden Central", "West Central US", "West US 3"]},
{id:'ElasticSan',label:'Elastic\nSan',category:'data',isParent:true,score:238.0,params:85,resourceTypes:5,skus:415,operations:43,products:4,previewApis:19,gaApis:13,previewOnlyTypes:0,preview:0,desc:'Elastic SAN block storage',regions:["Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany West Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Mexico Central", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'CertificateRegistration',label:'Certificate\nRegistration',category:'app',isParent:true,score:235.5,params:111,resourceTypes:4,skus:0,operations:19,products:2,previewApis:0,gaApis:68,previewOnlyTypes:0,preview:0,desc:'App Service certificate management',regions:["Global"]},
{id:'DataMigration',label:'Data\nMigration',category:'data',isParent:true,score:227.0,params:75,resourceTypes:13,skus:640,operations:0,products:3,previewApis:113,gaApis:25,previewOnlyTypes:0,preview:0,desc:'Database Migration Service',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'DigitalTwins',label:'Digital\nTwins',category:'iot',isParent:true,score:226.0,params:95,resourceTypes:9,skus:0,operations:54,products:6,previewApis:17,gaApis:43,previewOnlyTypes:0,preview:0,desc:'Digital Twins for IoT modeling',regions:["Australia East", "East US", "East US 2", "Japan East", "Korea Central", "North Europe", "Qatar Central", "South Central US", "Southeast Asia", "UK South", "West Central US", "West Europe", "West US 2", "West US 3"]},
{id:'SqlVirtualMachine',label:'SQL\nVirtual\nMachine',category:'data',isParent:true,score:220.5,params:98,resourceTypes:10,skus:0,operations:23,products:0,previewApis:60,gaApis:20,previewOnlyTypes:0,preview:0,desc:'SQL Server on Azure Virtual Machines',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["AHUB"]},
{id:'Peering',label:'Peering',category:'networking',isParent:true,score:217.0,params:95,resourceTypes:12,skus:0,operations:30,products:3,previewApis:28,gaApis:91,previewOnlyTypes:0,preview:0,desc:'Peering Service for ISP connectivity',regions:["Australia Central", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "East Asia", "East US", "East US 2", "France Central", "France South", "Japan East", "Japan West", "Korea Central", "North Central US", "North Europe", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2"]},
{id:'Datadog',label:'Datadog',category:'monitoring',isParent:true,score:207.5,params:87,resourceTypes:18,skus:0,operations:31,products:0,previewApis:22,gaApis:147,previewOnlyTypes:1,preview:0,desc:'Datadog on Azure (monitoring integration)',regions:["Central US EUAP", "East US 2 EUAP", "UK South", "West US 2"]},
{id:'Quota',label:'Quota',category:'management',isParent:true,score:204.0,params:88,resourceTypes:19,skus:0,operations:18,products:0,previewApis:57,gaApis:62,previewOnlyTypes:0,preview:0,desc:'Resource quota management',regions:["Global"]},
{id:'AppConfiguration',label:'App\nConfiguration',category:'devtools',isParent:true,score:203.0,params:94,resourceTypes:15,skus:0,operations:0,products:6,previewApis:112,gaApis:58,previewOnlyTypes:2,preview:0,desc:'App Configuration for feature flags and settings',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'Databricks',label:'Databricks',category:'data',isParent:true,score:203.0,params:89,resourceTypes:8,skus:0,operations:28,products:11,previewApis:67,gaApis:32,previewOnlyTypes:0,preview:0,desc:'Azure Databricks workspaces',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Japan East", "Japan West", "Korea Central", "Mexico Central", "North Central US", "North Europe", "Norway East", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Sweden Central", "Switzerland North", "Switzerland West", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'ADHybridHealthService',label:'AD Hybrid\nHealth\nService',category:'hybrid',isParent:true,score:199.5,params:77,resourceTypes:10,skus:0,operations:71,products:0,previewApis:0,gaApis:10,previewOnlyTypes:0,preview:0,desc:'Azure AD Connect Health monitoring',regions:["Global"]},
{id:'Elastic',label:'Elastic',category:'monitoring',isParent:true,score:196.0,params:83,resourceTypes:11,skus:0,operations:38,products:0,previewApis:142,gaApis:35,previewOnlyTypes:0,preview:0,desc:'Elastic on Azure (Elasticsearch integration)',regions:["Australia East", "Brazil South", "Canada Central", "Central India", "Central US", "Central US EUAP", "East US", "East US 2", "East US 2 EUAP", "France Central", "Japan East", "North Europe", "South Africa North", "South Central US", "Southeast Asia", "UK South", "West Europe", "West US 2"]},
{id:'EventHub',label:'Event Hubs',category:'integration',isParent:true,score:195.5,params:61,resourceTypes:26,skus:0,operations:95,products:8,previewApis:170,gaApis:76,previewOnlyTypes:2,preview:0,desc:'Event Hubs streaming data ingestion',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'DomainRegistration',label:'Domain\nRegistration',category:'app',isParent:true,score:193.0,params:87,resourceTypes:8,skus:0,operations:22,products:2,previewApis:0,gaApis:144,previewOnlyTypes:0,preview:0,desc:'App Service domain registration',regions:["Global"]},
{id:'Solutions',label:'Solutions',category:'management',isParent:true,score:192.0,params:86,resourceTypes:6,skus:0,operations:28,products:0,previewApis:18,gaApis:37,previewOnlyTypes:0,preview:0,desc:'Managed Applications and solutions',regions:["Australia Central", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'StorageSync',label:'Storage\nSync',category:'data',isParent:true,score:186.0,params:76,resourceTypes:12,skus:0,operations:44,products:5,previewApis:0,gaApis:118,previewOnlyTypes:0,preview:0,desc:'Azure File Sync',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'DeviceUpdate',label:'Device\nUpdate',category:'iot',isParent:true,score:184.5,params:79,resourceTypes:10,skus:10,operations:31,products:0,previewApis:45,gaApis:20,previewOnlyTypes:0,preview:0,desc:'Device Update for IoT Hub',regions:["Australia East", "East US", "East US 2", "North Europe", "South Central US", "Southeast Asia", "Sweden Central", "UK South", "West Europe", "West US 2", "West US 3"]},
{id:'AnalysisServices',label:'Analysis\nServices',category:'data',isParent:true,score:180.5,params:41,resourceTypes:6,skus:840,operations:17,products:3,previewApis:0,gaApis:24,previewOnlyTypes:0,preview:0,desc:'Azure Analysis Services (tabular models)',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Central US", "East US", "East US 2", "Japan East", "North Central US", "North Europe", "South Central US", "Southeast Asia", "UK South", "West Central US", "West Europe", "West India", "West US", "West US 2"]},
{id:'DataProtection',label:'Data\nProtection',category:'management',isParent:true,score:178.5,params:65,resourceTypes:15,skus:0,operations:67,products:4,previewApis:136,gaApis:188,previewOnlyTypes:0,preview:0,desc:'Azure Backup for data protection',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'AlertsManagement',label:'Alerts\nManagement',category:'monitoring',isParent:true,score:173.0,params:80,resourceTypes:13,skus:0,operations:0,products:3,previewApis:24,gaApis:12,previewOnlyTypes:5,preview:0,desc:'Unified alert management across Azure Monitor',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Global", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'Purview',label:'Purview',category:'data',isParent:true,score:166.0,params:77,resourceTypes:12,skus:0,operations:0,products:8,previewApis:33,gaApis:19,previewOnlyTypes:1,preview:0,desc:'Microsoft Purview data governance',regions:["Australia East", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East US", "East US 2", "France Central", "Germany West Central", "Japan East", "Korea Central", "North Europe", "Qatar Central", "South Africa North", "South Central US", "Southeast Asia", "Sweden Central", "Switzerland North", "UAE North", "UK South", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'BillingBenefits',label:'Billing\nBenefits',category:'management',isParent:true,score:159.0,params:57,resourceTypes:27,skus:0,operations:36,products:0,previewApis:47,gaApis:55,previewOnlyTypes:9,preview:0,desc:'Savings plans and reservation benefits',regions:["Australia Southeast", "East US", "East US 2", "Global", "North Europe", "South India", "West Europe", "West US", "West US 2"]},
{id:'ServiceLinker',label:'Service\nLinker',category:'management',isParent:true,score:157.5,params:66,resourceTypes:9,skus:0,operations:33,products:0,previewApis:32,gaApis:12,previewOnlyTypes:0,preview:0,desc:'Service Linker for connection configuration',regions:["Australia Central", "Australia East", "Australia Southeast", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany North", "Germany West Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "North Central US", "North Europe", "Norway East", "Norway West", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Sweden Central", "Switzerland North", "Switzerland West", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'AzureDataTransfer',label:'Azure Data\nTransfer',category:'data',isParent:true,score:156.0,params:73,resourceTypes:10,skus:0,operations:0,products:0,previewApis:49,gaApis:46,previewOnlyTypes:2,preview:0,desc:'Azure Data Transfer service',regions:["East US", "East US 2", "France Central", "France South", "Germany West Central", "Poland Central", "West US", "West US 2", "West US 3"]},
{id:'Authorization',label:'Authorization',category:'security',isParent:true,score:146.0,params:48,resourceTypes:50,skus:0,operations:0,products:14,previewApis:93,gaApis:129,previewOnlyTypes:19,preview:0,desc:'Role-based access control and Azure Policy',regions:["Global"]},
{id:'DatabaseWatcher',label:'Database\nWatcher',category:'data',isParent:true,score:141.0,params:59,resourceTypes:8,skus:0,operations:30,products:3,previewApis:21,gaApis:2,previewOnlyTypes:6,preview:1,desc:'Database performance watcher',regions:["Australia Central", "Australia East", "Australia Southeast", "Canada Central", "Canada East", "Central US", "East US", "East US 2", "Germany West Central", "Japan West", "Korea Central", "North Central US", "North Europe", "Southeast Asia", "Sweden Central", "UK South", "West Europe", "West US"]},
{id:'Relay',label:'Relay',category:'integration',isParent:true,score:134.0,params:45,resourceTypes:12,skus:0,operations:64,products:2,previewApis:12,gaApis:52,previewOnlyTypes:0,preview:0,desc:'Azure Relay hybrid connections',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'AzureStack',label:'Azure\nStack',category:'hybrid',isParent:true,score:126.5,params:52,resourceTypes:7,skus:0,operations:25,products:0,previewApis:2,gaApis:12,previewOnlyTypes:1,preview:0,desc:'Azure Stack bridge and registration',regions:["East US", "Global", "Southeast Asia", "West Europe"],licensing:["Dev/Test"]},
{id:'DBforMySQL',label:'Database\nfor MySQL',category:'data',isParent:true,score:122.5,params:0,resourceTypes:42,skus:0,operations:155,products:8,previewApis:208,gaApis:135,previewOnlyTypes:1,preview:0,desc:'Azure Database for MySQL',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'Management',label:'Management',category:'management',isParent:true,score:119.5,params:48,resourceTypes:11,skus:0,operations:25,products:4,previewApis:40,gaApis:62,previewOnlyTypes:2,preview:0,desc:'Management groups for subscription hierarchy',regions:["Global"]},
{id:'Orbital',label:'Orbital',category:'iot',isParent:true,score:119.0,params:55,resourceTypes:9,skus:0,operations:0,products:4,previewApis:17,gaApis:4,previewOnlyTypes:7,preview:0,desc:'Azure Orbital Ground Station',regions:["Australia East", "Brazil South", "Canada Central", "Central US", "East US", "Global", "North Central US", "Norway East", "South Africa North", "South Central US", "Southeast Asia", "Sweden Central", "UK South", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'ManagedServices',label:'Managed\nServices',category:'management',isParent:true,score:116.5,params:53,resourceTypes:5,skus:0,operations:11,products:0,previewApis:19,gaApis:15,previewOnlyTypes:0,preview:0,desc:'Azure Lighthouse delegated management',regions:["Global"]},
{id:'GuestConfiguration',label:'Guest\nConfiguration',category:'security',isParent:true,score:116.0,params:57,resourceTypes:2,skus:0,operations:0,products:3,previewApis:4,gaApis:10,previewOnlyTypes:0,preview:0,desc:'Guest configuration for Azure Policy',regions:["Global"]},
{id:'Chaos',label:'Chaos',category:'monitoring',isParent:true,score:112.5,params:47,resourceTypes:8,skus:0,operations:21,products:4,previewApis:51,gaApis:21,previewOnlyTypes:1,preview:0,desc:'Azure Chaos Studio fault injection testing',regions:["Australia East", "Brazil South", "Canada Central", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Italy North", "Japan East", "North Central US", "North Europe", "South Central US", "Southeast Asia", "Sweden Central", "UAE North", "UK South", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'Search',label:'Search',category:'ai',isParent:true,score:111.5,params:33,resourceTypes:10,skus:0,operations:71,products:10,previewApis:46,gaApis:36,previewOnlyTypes:1,preview:0,desc:'Azure AI Search (formerly Cognitive Search)',regions:["Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'Communication',label:'Communication',category:'networking',isParent:true,score:110.0,params:32,resourceTypes:14,skus:0,operations:64,products:12,previewApis:106,gaApis:38,previewOnlyTypes:1,preview:0,desc:'Azure Communication Services (chat, SMS, voice)',regions:["Global", "West US 2"]},
{id:'Dashboard',label:'Dashboard',category:'monitoring',isParent:true,score:108.0,params:48,resourceTypes:12,skus:0,operations:0,products:5,previewApis:90,gaApis:38,previewOnlyTypes:1,preview:0,desc:'Azure Managed Grafana dashboards',regions:["Australia Central", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "North Europe", "Norway East", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'PolicyInsights',label:'Policy\nInsights',category:'management',isParent:true,score:102.5,params:37,resourceTypes:14,skus:0,operations:29,products:4,previewApis:19,gaApis:29,previewOnlyTypes:4,preview:0,desc:'Policy compliance and attestations',regions:["Global"]},
{id:'DBforPostgreSQL',label:'Database\nfor\nPostgreSQL',category:'data',isParent:true,score:100.0,params:0,resourceTypes:43,skus:0,operations:108,products:10,previewApis:233,gaApis:70,previewOnlyTypes:1,preview:0,desc:'Azure Database for PostgreSQL',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Central US EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"],licensing:["Reserved Instances"]},
{id:'OffAzure',label:'Off Azure',category:'hybrid',isParent:true,score:98.5,params:0,resourceTypes:9,skus:0,operations:179,products:2,previewApis:43,gaApis:24,previewOnlyTypes:0,preview:0,desc:'Off-Azure discovery and assessment',regions:["Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Central India", "Central US", "Chile Central", "East Asia", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Europe", "West US 2"]},
{id:'Maintenance',label:'Maintenance',category:'management',isParent:true,score:97.0,params:45,resourceTypes:7,skus:0,operations:0,products:3,previewApis:54,gaApis:37,previewOnlyTypes:1,preview:0,desc:'Maintenance schedules for Azure resources',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'Security',label:'Security',category:'security',isParent:true,score:95.0,params:1,resourceTypes:90,skus:0,operations:0,products:24,previewApis:106,gaApis:82,previewOnlyTypes:32,preview:0,desc:'Microsoft Defender for Cloud',regions:["Global"],licensing:["Reserved Instances"]},
{id:'StandbyPool',label:'Standby\nPool',category:'compute',isParent:true,score:90.0,params:35,resourceTypes:8,skus:0,operations:24,products:0,previewApis:26,gaApis:24,previewOnlyTypes:0,preview:0,desc:'Standby pools for pre-provisioned instances',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'Subscription',label:'Subscription',category:'management',isParent:true,score:90.0,params:35,resourceTypes:20,skus:0,operations:0,products:3,previewApis:64,gaApis:14,previewOnlyTypes:10,preview:0,desc:'Subscription lifecycle management',regions:["Global"]},
{id:'Advisor',label:'Advisor',category:'management',isParent:true,score:89.0,params:36,resourceTypes:17,skus:0,operations:0,products:4,previewApis:54,gaApis:67,previewOnlyTypes:9,preview:0,desc:'Azure Advisor optimization recommendations',regions:["Global"]},
{id:'StorageActions',label:'Storage\nActions',category:'data',isParent:true,score:88.0,params:38,resourceTypes:7,skus:0,operations:10,products:0,previewApis:0,gaApis:7,previewOnlyTypes:0,preview:0,desc:'StorageActions',regions:["Australia Central", "Australia East", "Australia Southeast", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany North", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Mexico Central", "North Central US", "North Europe", "Norway East", "Norway West", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'BareMetalInfrastructure',label:'Bare Metal\nInfrastructure',category:'compute',isParent:true,score:81.0,params:38,resourceTypes:5,skus:0,operations:0,products:0,previewApis:18,gaApis:7,previewOnlyTypes:1,preview:0,desc:'BareMetal Infrastructure instances',regions:["East US", "Germany West Central", "South Central US", "West US 2"]},
{id:'EdgeMarketplace',label:'Edge\nMarketplace',category:'management',isParent:true,score:79.0,params:37,resourceTypes:5,skus:0,operations:0,products:0,previewApis:11,gaApis:5,previewOnlyTypes:0,preview:0,desc:'Edge marketplace extensions',regions:["West Europe", "West US"]},
{id:'ApiCenter',label:'API Center',category:'app',isParent:true,score:78.0,params:37,resourceTypes:4,skus:0,operations:0,products:0,previewApis:11,gaApis:3,previewOnlyTypes:1,preview:0,desc:'API Center for API inventory and governance',regions:["Australia East", "Canada Central", "Central India", "East US", "France Central", "Sweden Central", "UK South", "West Europe"]},
{id:'HybridConnectivity',label:'Hybrid\nConnectivity',category:'hybrid',isParent:true,score:77.0,params:34,resourceTypes:9,skus:0,operations:0,products:3,previewApis:34,gaApis:12,previewOnlyTypes:1,preview:0,desc:'Hybrid connectivity endpoints for Arc agents, SSH, and multi-cloud discovery',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Global", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'HardwareSecurityModules',label:'Hardware\nSecurity\nModules',category:'security',isParent:true,score:75.0,params:29,resourceTypes:4,skus:0,operations:26,products:0,previewApis:7,gaApis:8,previewOnlyTypes:0,preview:0,desc:'Dedicated HSM and Managed HSM',regions:["Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Italy North", "Japan East", "Japan West", "Mexico Central", "North Europe", "South Central US", "South India", "Southeast Asia", "Sweden Central", "Switzerland North", "Switzerland West", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'RedHatOpenShift',label:'Red Hat\nOpen Shift',category:'compute',isParent:true,score:74.5,params:28,resourceTypes:7,skus:0,operations:11,products:0,previewApis:20,gaApis:41,previewOnlyTypes:0,preview:0,desc:'Azure Red Hat OpenShift',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"],licensing:["AHUB", "Savings Plans"]},
{id:'Help',label:'Help',category:'management',isParent:true,score:73.0,params:30,resourceTypes:13,skus:0,operations:0,products:0,previewApis:38,gaApis:5,previewOnlyTypes:8,preview:0,desc:'Azure help and diagnostics',regions:["Global"]},
{id:'Maps',label:'Maps',category:'app',isParent:true,score:73.0,params:31,resourceTypes:11,skus:0,operations:0,products:12,previewApis:44,gaApis:11,previewOnlyTypes:7,preview:0,desc:'Azure Maps geospatial services',regions:["East US", "East US 2", "Global", "North Europe", "West Central US", "West Europe", "West US 2"]},
{id:'LoadTestService',label:'Load\nTesting',category:'monitoring',isParent:true,score:72.0,params:29,resourceTypes:14,skus:0,operations:0,products:4,previewApis:35,gaApis:15,previewOnlyTypes:3,preview:0,desc:'Azure Load Testing',regions:["Australia Central", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'HealthBot',label:'Health Bot',category:'ai',isParent:true,score:71.5,params:14,resourceTypes:4,skus:0,operations:79,products:0,previewApis:0,gaApis:32,previewOnlyTypes:0,preview:0,desc:'Health Bot for healthcare virtual assistants',regions:["Australia East", "Central India", "East US", "East US 2", "East US 2 EUAP", "North Europe", "South Central US", "Southeast Asia", "UAE North", "UK South", "West Central US", "West Europe", "West US 2"]},
{id:'DevOpsInfrastructure',label:'Dev Ops\nInfrastructure',category:'devtools',isParent:true,score:70.5,params:25,resourceTypes:13,skus:0,operations:15,products:0,previewApis:27,gaApis:33,previewOnlyTypes:2,preview:0,desc:'Managed DevOps Infrastructure (agent pools)',regions:["Australia East", "Brazil South", "Canada Central", "Central India", "Central US", "East Asia", "East US", "East US 2", "Germany West Central", "Global", "Italy North", "Japan East", "Korea Central", "North Central US", "North Europe", "Norway East", "South Central US", "Southeast Asia", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'CostManagement',label:'Cost\nManagement',category:'management',isParent:true,score:68.0,params:0,resourceTypes:41,skus:0,operations:54,products:6,previewApis:157,gaApis:317,previewOnlyTypes:7,preview:0,desc:'Cost Management and billing optimization',regions:["Global"]},
{id:'DBforMariaDB',label:'Database\nfor\nMariaDB',category:'data',isParent:true,score:68.0,params:0,resourceTypes:30,skus:0,operations:76,products:0,previewApis:47,gaApis:30,previewOnlyTypes:0,preview:0,desc:'Azure Database for MariaDB',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany West Central", "Japan East", "Japan West", "Korea Central", "Korea South", "North Central US", "North Europe", "Norway East", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'VoiceServices',label:'Voice\nServices',category:'networking',isParent:true,score:68.0,params:32,resourceTypes:4,skus:0,operations:0,products:2,previewApis:13,gaApis:16,previewOnlyTypes:0,preview:0,desc:'Operator voice services',regions:["Global"]},
{id:'FluidRelay',label:'Fluid\nRelay',category:'integration',isParent:true,score:66.5,params:24,resourceTypes:7,skus:0,operations:23,products:2,previewApis:22,gaApis:16,previewOnlyTypes:4,preview:0,desc:'Fluid Relay real-time collaboration',regions:["Australia East", "Brazil South", "Canada Central", "Central India", "Central US", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Global", "Italy North", "Japan East", "Korea Central", "North Europe", "Norway East", "Poland Central", "South Africa North", "South Central US", "Southeast Asia", "Sweden Central", "Switzerland North", "UAE North", "UK South", "West Europe", "West US 2", "West US 3"]},
{id:'KubernetesRuntime',label:'Kubernetes\nRuntime',category:'hybrid',isParent:true,score:65.0,params:22,resourceTypes:8,skus:0,operations:26,products:0,previewApis:16,gaApis:17,previewOnlyTypes:0,preview:0,desc:'Kubernetes runtime services on Arc',regions:["Australia East", "Canada Central", "Central India", "East US", "East US 2", "Japan East", "North Europe", "South Central US", "Southeast Asia", "Sweden Central", "UK South", "West Europe", "West US 2", "West US 3"]},
{id:'Capacity',label:'Capacity',category:'management',isParent:true,score:55.0,params:0,resourceTypes:35,skus:0,operations:40,products:3,previewApis:73,gaApis:312,previewOnlyTypes:0,preview:0,desc:'Azure Reservations for cost savings',regions:["South Central US"]},
{id:'Attestation',label:'Attestation',category:'security',isParent:true,score:51.0,params:23,resourceTypes:5,skus:0,operations:0,products:2,previewApis:11,gaApis:15,previewOnlyTypes:0,preview:0,desc:'Azure Attestation for TEE verification',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'ClassicStorage',label:'Classic\nStorage',category:'data',isParent:true,score:50.5,params:0,resourceTypes:22,skus:0,operations:57,products:0,previewApis:0,gaApis:90,previewOnlyTypes:0,preview:0,desc:'ClassicStorage',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'CodeSigning',label:'Code\nSigning',category:'security',isParent:true,score:50.5,params:18,resourceTypes:6,skus:0,operations:17,products:0,previewApis:24,gaApis:6,previewOnlyTypes:0,preview:0,desc:'Trusted Signing (code signing service)',regions:["Brazil South", "Central US", "Central US EUAP", "East US", "Japan East", "Korea Central", "Mexico Central", "North Central US", "North Europe", "Poland Central", "South Central US", "Switzerland North", "West Central US", "West Europe", "West US", "West US 2", "West US 3"]},
{id:'Automanage',label:'Automanage',category:'management',isParent:true,score:49.5,params:17,resourceTypes:7,skus:0,operations:17,products:0,previewApis:11,gaApis:7,previewOnlyTypes:0,preview:0,desc:'Automanage for VM best practices',regions:["Australia East", "Australia Southeast", "Canada Central", "Central US", "East US", "East US 2", "Japan East", "North Central US", "North Europe", "South Central US", "Southeast Asia", "UK South", "West Central US", "West Europe", "West US", "West US 2"]},
{id:'IoTFirmwareDefense',label:'Io T\nFirmware\nDefense',category:'iot',isParent:true,score:48.5,params:0,resourceTypes:14,skus:5,operations:68,products:0,previewApis:20,gaApis:26,previewOnlyTypes:0,preview:0,desc:'Defender for IoT firmware analysis',regions:["East US", "West Europe"]},
{id:'ConnectedVMwarevSphere',label:'Connected\nVMware\nvSphere',category:'hybrid',isParent:true,score:48.0,params:0,resourceTypes:16,skus:0,operations:64,products:6,previewApis:28,gaApis:24,previewOnlyTypes:4,preview:0,desc:'Azure Arc-enabled VMware vSphere',regions:["Australia East", "Canada Central", "Central India", "Central US", "East Asia", "East US", "East US 2", "East US 2 EUAP", "Italy North", "Japan East", "North Central US", "North Europe", "South Central US", "Southeast Asia", "Sweden Central", "Switzerland North", "Switzerland West", "UK South", "UK West", "West Europe", "West US 2", "West US 3"]},
{id:'ClassicNetwork',label:'Classic\nNetwork',category:'networking',isParent:true,score:46.5,params:0,resourceTypes:11,skus:0,operations:71,products:0,previewApis:0,gaApis:57,previewOnlyTypes:0,preview:0,desc:'ClassicNetwork',regions:["Australia Central", "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'ComputeSchedule',label:'Compute\nSchedule',category:'compute',isParent:true,score:45.5,params:0,resourceTypes:17,skus:0,operations:57,products:0,previewApis:32,gaApis:27,previewOnlyTypes:2,preview:0,desc:'Scheduled compute operations',regions:["Australia Central", "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", "France South", "Germany North", "Germany West Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"]},
{id:'MarketplaceOrdering',label:'Marketplace\nOrdering',category:'management',isParent:true,score:42.5,params:18,resourceTypes:3,skus:0,operations:7,products:0,previewApis:0,gaApis:6,previewOnlyTypes:0,preview:0,desc:'Marketplace offer terms and agreements',regions:["South Central US", "West US"]},
{id:'HybridContainerService',label:'Hybrid\nContainer\nService',category:'hybrid',isParent:true,score:41.0,params:0,resourceTypes:11,skus:0,operations:60,products:4,previewApis:44,gaApis:10,previewOnlyTypes:4,preview:0,desc:'AKS hybrid clusters on Azure Local, VMware, and bare-metal via Arc',regions:["Australia East", "Canada Central", "Central India", "East US", "East US 2 EUAP", "Japan East", "South Central US", "Southeast Asia", "West Europe", "West US 3"]},