-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
2315 lines (2147 loc) · 107 KB
/
app.js
File metadata and controls
2315 lines (2147 loc) · 107 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
import { PROVIDERS, createProviderOptionsMarkup } from "./providers.js";
const SETTINGS_KEY = "azure-capacity-overview-settings";
const DELTA_SNAPSHOT_KEY = "azure-capacity-delta-snapshot";
// All major Azure commercial regions used in the overview catalog
const DEFAULT_REGIONS = [
// United States
"eastus", "eastus2", "westus", "westus2", "westus3",
"centralus", "northcentralus", "southcentralus", "westcentralus",
// Canada
"canadacentral", "canadaeast",
// Brazil
"brazilsouth", "brazilsoutheast",
// Mexico
"mexicocentral",
// Europe
"westeurope", "northeurope", "uksouth", "ukwest",
"francecentral", "germanywestcentral", "swedencentral", "norwayeast",
"switzerlandnorth", "italynorth", "polandcentral", "spaincentral",
// Asia Pacific
"southeastasia", "eastasia",
"australiaeast", "australiasoutheast", "australiacentral",
"japaneast", "japanwest",
"koreacentral", "koreasouth",
"centralindia", "southindia", "westindia",
// Middle East
"uaenorth", "qatarcentral", "israelcentral",
// Africa
"southafricanorth",
// New emerging
"newzealandnorth", "malaysiawest",
];
const state = {
allRecords: [],
filteredRecords: [],
lastRefresh: null,
regionsScanned: 0,
loading: false,
dataMode: "overview",
sort: {
key: "availability",
direction: "desc",
},
};
const elements = {
pageBody: document.body,
providerOptions: document.querySelector("#provider-options"),
regionsInput: document.querySelector("#regions-input"),
searchButton: document.querySelector("#search-button"),
themeToggleButton: document.querySelector("#theme-toggle"),
lastRefresh: document.querySelector("#last-refresh"),
statusBadge: document.querySelector("#status-badge"),
updatesMeta: document.querySelector("#updates-meta"),
updatesTableBody: document.querySelector("#updates-table-body"),
searchInput: document.querySelector("#search-input"),
riskFilter: document.querySelector("#risk-filter"),
planningFilter: document.querySelector("#planning-filter"),
providerFilter: document.querySelector("#provider-filter"),
subscriptionFilter: document.querySelector("#subscription-filter"),
subscriptionFilterField: document.querySelector("#scope-filter-field"),
regionFilter: document.querySelector("#region-filter"),
atRiskToggle: document.querySelector("#at-risk-toggle"),
tableMeta: document.querySelector("#table-meta"),
tableBody: document.querySelector("#capacity-table-body"),
tableHead: document.querySelector("#availability-table thead"),
scopeColumnHeader: document.querySelector("#scope-column-header"),
filterChips: document.querySelector("#filter-chips"),
};
async function bootstrap() {
applyTheme("light");
elements.providerOptions.innerHTML = createProviderOptionsMarkup();
hydrateSavedSettings();
wireEvents();
syncScopeVisibility();
renderEmptyUpdatesTable();
loadDemoData({ source: "overview" });
}
function wireEvents() {
elements.searchButton.addEventListener("click", applyFilters);
elements.themeToggleButton.addEventListener("click", toggleTheme);
elements.tableBody.addEventListener("click", handleSourceActionClick);
elements.updatesTableBody.addEventListener("click", handleSourceActionClick);
elements.tableHead.addEventListener("click", handleTableSortClick);
elements.filterChips.addEventListener("click", handleChipClick);
[
elements.searchInput,
elements.riskFilter,
elements.planningFilter,
elements.providerFilter,
elements.subscriptionFilter,
elements.regionFilter,
elements.atRiskToggle,
].forEach((element) => {
element.addEventListener("input", applyFilters);
element.addEventListener("change", applyFilters);
});
// The native ✕ clear button on <input type="search"> fires "search" not "input"
elements.searchInput.addEventListener("search", applyFilters);
[elements.providerOptions].forEach((element) => {
element.addEventListener("change", persistSettings);
});
}
function hydrateSavedSettings() {
const raw = localStorage.getItem(SETTINGS_KEY);
if (!raw) {
return;
}
try {
const settings = JSON.parse(raw);
if (elements.regionsInput) elements.regionsInput.value = settings.regions ?? "";
applyTheme(settings.theme || "light");
elements.planningFilter.value = settings.planning || "all";
if (Array.isArray(settings.providers) && settings.providers.length > 0) {
for (const checkbox of elements.providerOptions.querySelectorAll('input[type="checkbox"]')) {
checkbox.checked = settings.providers.includes(checkbox.value);
}
}
} catch {
localStorage.removeItem(SETTINGS_KEY);
}
}
function persistSettings() {
const settings = {
regions: elements.regionsInput ? elements.regionsInput.value.trim() : "",
providers: getSelectedProviderIds(),
theme: getCurrentTheme(),
planning: elements.planningFilter.value,
};
localStorage.setItem(SETTINGS_KEY, JSON.stringify(settings));
}
function setTheme(theme) {
applyTheme(theme);
persistSettings();
}
function toggleTheme() {
setTheme(getCurrentTheme() === "dark" ? "light" : "dark");
}
function applyTheme(theme) {
const normalizedTheme = theme === "dark" ? "dark" : "light";
elements.pageBody.dataset.theme = normalizedTheme;
elements.themeToggleButton.textContent = normalizedTheme === "dark" ? "☀️" : "🌙";
elements.themeToggleButton.setAttribute(
"aria-label",
normalizedTheme === "dark" ? "Switch to light mode" : "Switch to dark mode",
);
elements.themeToggleButton.setAttribute(
"title",
normalizedTheme === "dark" ? "Switch to light mode" : "Switch to dark mode",
);
}
function getCurrentTheme() {
return elements.pageBody.dataset.theme || "light";
}
// ── Region tiers reflecting typical Microsoft GA rollout patterns ─────────────
// Tier 1: Core – earliest GA, maximum feature coverage
const _RT1 = ["eastus", "eastus2", "westus2", "westeurope", "uksouth", "southeastasia", "australiaeast", "japaneast"];
// Tier 2: Major – mainstream GA, most services available
const _RT2 = ["westus", "westus3", "centralus", "northeurope", "francecentral", "koreacentral", "canadacentral", "centralindia"];
// Tier 3: Secondary – mix of GA and preview rollouts
const _RT3 = ["northcentralus", "southcentralus", "canadaeast", "brazilsouth", "germanywestcentral", "swedencentral", "norwayeast", "eastasia"];
// Tier 4: Emerging – newer regions, often preview-only for advanced services
const _RT4 = ["uaenorth", "qatarcentral", "southafricanorth"];
// Tier 5: Additional well-established regions not in T1–T4
const _RT5 = ["ukwest", "switzerlandnorth", "westcentralus", "brazilsoutheast",
"australiasoutheast", "australiacentral", "japanwest",
"koreasouth", "southindia", "westindia", "mexicocentral"];
// Tier 6: Newest / emerging regions with limited service coverage
const _RT6 = ["italynorth", "polandcentral", "spaincentral", "israelcentral",
"newzealandnorth", "malaysiawest"];
/**
* Build an availabilityByRegion map from explicit region lists.
* Each entry is [availability, notes].
*/
function buildAvailabilityMap(available = [], preview = [], restricted = [], notes = {}) {
const map = {};
const an = notes.available || "Supported in this region";
const pn = notes.preview || "In preview or staged regional rollout";
const rn = notes.restricted || "Access restricted or requires approval";
for (const r of available) map[r] = ["available", an];
for (const r of preview) map[r] = ["preview", pn];
for (const r of restricted) map[r] = ["restricted", rn];
return map;
}
// ── Expanded overview catalog – all 19 providers, 27 regions ─────────────────
const OVERVIEW_CATALOG = [
// ── Compute SKUs ────────────────────────────────────────────────────────────
{
providerId: "compute-skus", providerLabel: "Compute SKUs",
name: "Standard_D8s_v5", resourceType: "virtualMachines",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "8 vCPUs · 32 GB RAM · Zone-redundant deployment supported",
preview: "8 vCPUs · 32 GB RAM · Staged regional rollout",
restricted: "Not available in this region",
}),
},
{
providerId: "compute-skus", providerLabel: "Compute SKUs",
name: "Standard_D32s_v5", resourceType: "virtualMachines",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "32 vCPUs · 128 GB RAM · Zone-redundant deployment supported",
preview: "32 vCPUs · 128 GB RAM · Staged regional rollout",
restricted: "Not available in this region",
}),
},
{
providerId: "compute-skus", providerLabel: "Compute SKUs",
name: "Standard_E8s_v5", resourceType: "virtualMachines",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "8 vCPUs · 64 GB RAM · Memory-optimized · Zone-redundant",
preview: "8 vCPUs · 64 GB RAM · Memory-optimized · Staged rollout",
restricted: "Not available in this region",
}),
},
{
providerId: "compute-skus", providerLabel: "Compute SKUs",
name: "Standard_F8s_v2", resourceType: "virtualMachines",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "8 vCPUs · 16 GB RAM · Compute-optimized",
preview: "8 vCPUs · 16 GB RAM · Staged regional rollout",
restricted: "Not available in this region",
}),
},
{
providerId: "compute-skus", providerLabel: "Compute SKUs",
name: "Standard_NC24ads_A100_v4", resourceType: "virtualMachines",
availabilityByRegion: buildAvailabilityMap(
["eastus", "westus2", "southeastasia", "westeurope", "japaneast"],
["eastus2", "westus3", "australiaeast", "uksouth", "francecentral"],
["westus", "centralus", "northeurope", "koreacentral", "canadacentral", "centralindia",
"northcentralus", "southcentralus", "canadaeast", "brazilsouth", "germanywestcentral",
"swedencentral", "norwayeast", "eastasia", "uaenorth", "qatarcentral", "southafricanorth"],
{
available: "24 vCPUs · 1× NVIDIA A100 80 GB · GPU-accelerated compute",
preview: "A100 GPU rolling out · Limited regional quota",
restricted: "A100 GPU not available in this region",
}
),
},
{
providerId: "compute-skus", providerLabel: "Compute SKUs",
name: "Standard_ND96asr_v4", resourceType: "virtualMachines",
availabilityByRegion: buildAvailabilityMap(
["eastus", "westus2", "westeurope"],
["southeastasia", "australiaeast", "japaneast", "eastus2"],
["westus", "westus3", "centralus", "northeurope", "francecentral", "koreacentral",
"canadacentral", "centralindia", "northcentralus", "southcentralus", "canadaeast",
"brazilsouth", "germanywestcentral", "swedencentral", "norwayeast", "eastasia",
"uksouth", "uaenorth", "qatarcentral", "southafricanorth"],
{
available: "96 vCPUs · 8× NVIDIA A100 · HPC GPU cluster",
preview: "ND96asr_v4 in limited preview",
restricted: "ND96asr_v4 not available in this region",
}
),
},
// ── SQL Capabilities ────────────────────────────────────────────────────────
{
providerId: "sql-capabilities", providerLabel: "SQL Capabilities",
name: "BusinessCritical BC_Gen5_16", resourceType: "servers/databases",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "BusinessCritical · Gen5 · 16 vCores · Zone redundant available",
preview: "BusinessCritical · Staged regional rollout",
restricted: "BusinessCritical not available in this region",
}),
},
{
providerId: "sql-capabilities", providerLabel: "SQL Capabilities",
name: "GeneralPurpose GP_Gen5_8", resourceType: "servers/databases",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], _RT4, [], {
available: "GeneralPurpose · Gen5 · 8 vCores · Standard regional availability",
preview: "GeneralPurpose · Limited preview in this region",
}),
},
{
providerId: "sql-capabilities", providerLabel: "SQL Capabilities",
name: "Hyperscale HS_Gen5_4", resourceType: "servers/databases",
availabilityByRegion: buildAvailabilityMap(_RT1, [..._RT2, ..._RT3], _RT4, {
available: "Hyperscale · Distributed storage architecture · Up to 100 TB",
preview: "Hyperscale in preview or limited rollout",
restricted: "Hyperscale not available in this region",
}),
},
// ── Cognitive / AI Services ─────────────────────────────────────────────────
{
providerId: "cognitive-skus", providerLabel: "Cognitive Services SKUs",
name: "OpenAI GPT-4o S0", resourceType: "accounts",
availabilityByRegion: buildAvailabilityMap(
["eastus", "eastus2", "westus", "westeurope", "swedencentral", "uksouth", "southeastasia", "australiaeast"],
["francecentral", "japaneast", "canadacentral", "koreacentral", "norwayeast"],
["westus2", "westus3", "centralus", "northeurope", "centralindia", "northcentralus",
"southcentralus", "canadaeast", "brazilsouth", "germanywestcentral", "eastasia",
"uaenorth", "qatarcentral", "southafricanorth"],
{
available: "Azure OpenAI GPT-4o · Standard tier · Regional deployment",
preview: "Azure OpenAI GPT-4o in limited preview",
restricted: "Azure OpenAI not available in this region",
}
),
},
{
providerId: "cognitive-skus", providerLabel: "Cognitive Services SKUs",
name: "OpenAI S0", resourceType: "accounts",
availabilityByRegion: buildAvailabilityMap(
["eastus", "eastus2", "westus", "westeurope", "swedencentral", "uksouth", "southeastasia", "australiaeast", "francecentral", "japaneast"],
["canadacentral", "koreacentral", "norwayeast", "centralindia", "westus2"],
["westus3", "centralus", "northeurope", "northcentralus", "southcentralus",
"canadaeast", "brazilsouth", "germanywestcentral", "eastasia",
"uaenorth", "qatarcentral", "southafricanorth"],
{
available: "Azure OpenAI · Standard tier · Regional AI endpoint",
preview: "Azure OpenAI in limited preview or rollout",
restricted: "Azure OpenAI not available in this region",
}
),
},
{
providerId: "cognitive-skus", providerLabel: "Cognitive Services SKUs",
name: "Azure AI Services S0", resourceType: "accounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [], {
available: "Azure AI Services · Speech, Vision, Language · Standard tier",
preview: "Azure AI Services in preview in this region",
}),
},
// ── App Service ─────────────────────────────────────────────────────────────
{
providerId: "web-metadata", providerLabel: "App Service",
name: "sites", resourceType: "sites",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], _RT4, [], {
available: "App Service · Linux and Windows · Zone-redundant deployment",
preview: "App Service in preview in this region",
}),
},
// ── AKS ─────────────────────────────────────────────────────────────────────
{
providerId: "aks-metadata", providerLabel: "AKS",
name: "managedClusters", resourceType: "managedClusters",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [], {
available: "AKS · Managed Kubernetes · Zone-redundant node pools",
preview: "AKS · Staged feature rollout in this region",
}),
},
// ── Storage ─────────────────────────────────────────────────────────────────
{
providerId: "storage-metadata", providerLabel: "Storage",
name: "storageAccounts", resourceType: "storageAccounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4], [], [], {
available: "Azure Storage · ZRS, LRS, GRS · Standard and Premium tiers",
}),
},
{
providerId: "storage-metadata", providerLabel: "Storage",
name: "Premium File Share", resourceType: "storageAccounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure Files Premium · High-throughput NFS and SMB shares",
preview: "Premium File Share in preview in this region",
restricted: "Premium File Share not available in this region",
}),
},
// ── Network ─────────────────────────────────────────────────────────────────
{
providerId: "network-metadata", providerLabel: "Network",
name: "publicIPAddresses", resourceType: "publicIPAddresses",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4], [], [], {
available: "Public IP · Standard and Basic SKUs · Zone-redundant in supported regions",
}),
},
{
providerId: "network-metadata", providerLabel: "Network",
name: "applicationGateways", resourceType: "applicationGateways",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], _RT4, [], {
available: "Application Gateway · WAF v2 · Zone-redundant",
preview: "Application Gateway in preview in this region",
}),
},
// ── Cosmos DB ───────────────────────────────────────────────────────────────
{
providerId: "cosmos-metadata", providerLabel: "Cosmos DB",
name: "databaseAccounts (NoSQL)", resourceType: "databaseAccounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [], {
available: "Cosmos DB · NoSQL API · Multi-region writes · Zone redundant",
preview: "Cosmos DB · Staged rollout in this region",
}),
},
{
providerId: "cosmos-metadata", providerLabel: "Cosmos DB",
name: "databaseAccounts (MongoDB)", resourceType: "databaseAccounts",
availabilityByRegion: buildAvailabilityMap(_RT1, [..._RT2, ..._RT3], _RT4, {
available: "Cosmos DB for MongoDB · RU-based or vCore · Serverless option",
preview: "Cosmos DB for MongoDB in preview",
restricted: "Cosmos DB for MongoDB not available in this region",
}),
},
// ── Key Vault ───────────────────────────────────────────────────────────────
{
providerId: "keyvault-metadata", providerLabel: "Key Vault",
name: "vaults (Standard)", resourceType: "vaults",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4], [], [], {
available: "Key Vault · Secrets, Keys, Certificates · Soft-delete enabled",
}),
},
{
providerId: "keyvault-metadata", providerLabel: "Key Vault",
name: "managedHSMs", resourceType: "managedHSMs",
availabilityByRegion: buildAvailabilityMap(_RT1, _RT2, [..._RT3, ..._RT4], {
available: "Managed HSM · FIPS 140-2 Level 3 · Single-tenant HSM pool",
preview: "Managed HSM in preview in this region",
restricted: "Managed HSM not available in this region",
}),
},
// ── PostgreSQL ──────────────────────────────────────────────────────────────
{
providerId: "postgres-metadata", providerLabel: "PostgreSQL",
name: "flexibleServers", resourceType: "flexibleServers",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [], {
available: "PostgreSQL Flexible Server · Zone-redundant HA · Burstable and GP tiers",
preview: "PostgreSQL Flexible Server in preview in this region",
}),
},
// ── MySQL ───────────────────────────────────────────────────────────────────
{
providerId: "mysql-metadata", providerLabel: "MySQL",
name: "flexibleServers", resourceType: "flexibleServers",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [], {
available: "MySQL Flexible Server · Zone-redundant HA · Burstable and GP tiers",
preview: "MySQL Flexible Server in preview in this region",
}),
},
// ── Event Hubs ──────────────────────────────────────────────────────────────
{
providerId: "eventhub-metadata", providerLabel: "Event Hubs",
name: "namespaces (Standard)", resourceType: "namespaces",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], _RT4, [], {
available: "Event Hubs Standard · 10 consumer groups · Kafka protocol supported",
preview: "Event Hubs in preview in this region",
}),
},
{
providerId: "eventhub-metadata", providerLabel: "Event Hubs",
name: "namespaces (Dedicated)", resourceType: "namespaces",
availabilityByRegion: buildAvailabilityMap(_RT1, [..._RT2, ..._RT3], _RT4, {
available: "Event Hubs Dedicated · Single-tenant cluster · Zone-redundant",
preview: "Event Hubs Dedicated in preview in this region",
restricted: "Event Hubs Dedicated not available in this region",
}),
},
// ── Service Bus ─────────────────────────────────────────────────────────────
{
providerId: "servicebus-metadata", providerLabel: "Service Bus",
name: "namespaces (Standard)", resourceType: "namespaces",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], _RT4, [], {
available: "Service Bus Standard · Queues and Topics · 256 KB message size",
preview: "Service Bus in preview in this region",
}),
},
{
providerId: "servicebus-metadata", providerLabel: "Service Bus",
name: "namespaces (Premium)", resourceType: "namespaces",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Service Bus Premium · Dedicated messaging units · Zone-redundant",
preview: "Service Bus Premium in preview in this region",
restricted: "Service Bus Premium not available in this region",
}),
},
// ── Redis Cache ─────────────────────────────────────────────────────────────
{
providerId: "cache-metadata", providerLabel: "Redis Cache",
name: "redis (Standard)", resourceType: "redis",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], _RT4, [], {
available: "Azure Cache for Redis · Standard C1–C6 · In-memory replication",
preview: "Redis Cache in preview in this region",
}),
},
{
providerId: "cache-metadata", providerLabel: "Redis Cache",
name: "redis (Enterprise)", resourceType: "redis",
availabilityByRegion: buildAvailabilityMap(_RT1, _RT2, [..._RT3, ..._RT4], {
available: "Redis Enterprise · Active geo-replication · RediSearch and JSON modules",
preview: "Redis Enterprise in preview in this region",
restricted: "Redis Enterprise not available in this region",
}),
},
// ── AI Search ───────────────────────────────────────────────────────────────
{
providerId: "search-metadata", providerLabel: "AI Search",
name: "searchServices", resourceType: "searchServices",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [], {
available: "Azure AI Search · Vector + semantic search · Standard and Premium tiers",
preview: "AI Search in preview in this region",
}),
},
// ── Machine Learning ────────────────────────────────────────────────────────
{
providerId: "ml-metadata", providerLabel: "Machine Learning",
name: "workspaces", resourceType: "workspaces",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure Machine Learning · Managed compute · Pipeline orchestration",
preview: "Azure ML in preview or staged rollout",
restricted: "Azure ML not available in this region",
}),
},
// ── Databricks ──────────────────────────────────────────────────────────────
{
providerId: "databricks-metadata", providerLabel: "Databricks",
name: "workspaces", resourceType: "workspaces",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure Databricks · Unity Catalog · Lakehouse platform",
preview: "Databricks in preview or staged rollout",
restricted: "Databricks not available in this region",
}),
},
// ── Container Apps ──────────────────────────────────────────────────────────
{
providerId: "app-metadata", providerLabel: "Azure App",
name: "managedEnvironments", resourceType: "managedEnvironments",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [], {
available: "Container Apps · Serverless containers · KEDA autoscaling",
preview: "Container Apps in preview in this region",
}),
},
// ── SignalR ─────────────────────────────────────────────────────────────────
{
providerId: "signalr-metadata", providerLabel: "SignalR",
name: "webPubSub", resourceType: "webPubSub",
availabilityByRegion: buildAvailabilityMap(_RT1, [..._RT2, ..._RT3], _RT4, {
available: "Azure Web PubSub · Standard and Premium · High-concurrency messaging",
preview: "Web PubSub in preview in this region",
restricted: "Web PubSub not available in this region",
}),
},
// ── Synapse Analytics ────────────────────────────────────────────────────────
{
providerId: "synapse-metadata", providerLabel: "Synapse Analytics",
name: "workspaces", resourceType: "workspaces",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure Synapse Analytics · Unified analytics · Serverless and dedicated SQL pools",
preview: "Synapse Analytics in preview or staged rollout",
restricted: "Synapse Analytics not available in this region",
}),
},
// ── Data Factory ─────────────────────────────────────────────────────────────
{
providerId: "datafactory-metadata", providerLabel: "Data Factory",
name: "factories", resourceType: "factories",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], _RT4, [], {
available: "Azure Data Factory · ETL and ELT pipelines · Integration runtime",
preview: "Data Factory in preview in this region",
}),
},
// ── Container Registry ───────────────────────────────────────────────────────
{
providerId: "containerregistry-metadata", providerLabel: "Container Registry",
name: "registries (Standard)", resourceType: "registries",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], _RT4, [], {
available: "Azure Container Registry Standard · Geo-replication up to 10 replicas",
preview: "Container Registry Standard in preview in this region",
}),
},
{
providerId: "containerregistry-metadata", providerLabel: "Container Registry",
name: "registries (Premium)", resourceType: "registries",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure Container Registry Premium · Private endpoint · Content trust",
preview: "Container Registry Premium in preview in this region",
restricted: "Container Registry Premium not available in this region",
}),
},
// ── API Management ───────────────────────────────────────────────────────────
{
providerId: "apimanagement-metadata", providerLabel: "API Management",
name: "service (Standard)", resourceType: "service",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure API Management Standard · Developer portal · Policy engine",
preview: "API Management in preview or staged rollout",
restricted: "API Management not available in this region",
}),
},
{
providerId: "apimanagement-metadata", providerLabel: "API Management",
name: "service (Premium)", resourceType: "service",
availabilityByRegion: buildAvailabilityMap(_RT1, _RT2, [..._RT3, ..._RT4], {
available: "API Management Premium · Multi-region gateway · Self-hosted gateway · Zone-redundant",
preview: "API Management Premium in limited preview",
restricted: "API Management Premium not available in this region",
}),
},
// ── Logic Apps ───────────────────────────────────────────────────────────────
{
providerId: "logicapps-metadata", providerLabel: "Logic Apps",
name: "workflows (Standard)", resourceType: "workflows",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], _RT4, [], {
available: "Azure Logic Apps Standard · Single-tenant · Stateful and stateless workflows",
preview: "Logic Apps in preview in this region",
}),
},
// ── Batch ────────────────────────────────────────────────────────────────────
{
providerId: "batch-metadata", providerLabel: "Batch",
name: "batchAccounts", resourceType: "batchAccounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure Batch · HPC job scheduling · Low-priority VM pools",
preview: "Azure Batch in preview in this region",
restricted: "Azure Batch not available in this region",
}),
},
// ── IoT Hub ──────────────────────────────────────────────────────────────────
{
providerId: "iothub-metadata", providerLabel: "IoT Hub",
name: "IotHubs (Standard S1)", resourceType: "IotHubs",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure IoT Hub Standard S1 · Device-to-cloud messaging · Device twins",
preview: "IoT Hub in preview or staged rollout",
restricted: "IoT Hub not available in this region",
}),
},
// ── Container Instances ──────────────────────────────────────────────────────
{
providerId: "containerinstance-metadata", providerLabel: "Container Instances",
name: "containerGroups", resourceType: "containerGroups",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure Container Instances · Serverless containers · No cluster management",
preview: "Container Instances in preview in this region",
restricted: "Container Instances not available in this region",
}),
},
// ── Communication Services ───────────────────────────────────────────────────
{
providerId: "communication-metadata", providerLabel: "Communication Services",
name: "communicationServices", resourceType: "communicationServices",
availabilityByRegion: buildAvailabilityMap(
["eastus", "westeurope", "australiaeast", "uksouth", "westus", "northeurope", "eastasia", "canadacentral"],
["francecentral", "swedencentral", "koreacentral", "japaneast", "brazilsouth", "southeastasia"],
["eastus2", "westus2", "westus3", "centralus", "northcentralus", "southcentralus", "canadaeast",
"germanywestcentral", "norwayeast", "centralindia", "uaenorth", "qatarcentral", "southafricanorth"],
{
available: "Azure Communication Services · SMS, Voice, Chat, Email · Regional data residency",
preview: "Communication Services in preview or staged rollout",
restricted: "Communication Services not available in this region",
}
),
},
// ── Spring Apps ──────────────────────────────────────────────────────────────
{
providerId: "springapps-metadata", providerLabel: "Spring Apps",
name: "Spring (Enterprise)", resourceType: "Spring",
availabilityByRegion: buildAvailabilityMap(_RT1, _RT2, [..._RT3, ..._RT4], {
available: "Azure Spring Apps Enterprise · Tanzu components · Zone-redundant",
preview: "Spring Apps Enterprise in preview in this region",
restricted: "Spring Apps Enterprise not available in this region",
}),
},
// ── Stream Analytics ─────────────────────────────────────────────────────────
{
providerId: "streamanalytics-metadata", providerLabel: "Stream Analytics",
name: "streamingjobs", resourceType: "streamingjobs",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure Stream Analytics · Real-time event processing · SQL-like query language",
preview: "Stream Analytics in preview in this region",
restricted: "Stream Analytics not available in this region",
}),
},
// ── Service Fabric ───────────────────────────────────────────────────────────
{
providerId: "servicefabric-metadata", providerLabel: "Service Fabric",
name: "clusters", resourceType: "clusters",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, _RT4, {
available: "Azure Service Fabric · Microservices platform · Stateful and stateless services",
preview: "Service Fabric in preview in this region",
restricted: "Service Fabric not available in this region",
}),
},
// ── Microsoft Purview ────────────────────────────────────────────────────────
{
providerId: "purview-metadata", providerLabel: "Microsoft Purview",
name: "accounts", resourceType: "accounts",
availabilityByRegion: buildAvailabilityMap(_RT1, _RT2, [..._RT3, ..._RT4], {
available: "Microsoft Purview · Data governance · Data catalog and lineage",
preview: "Purview in preview or staged rollout",
restricted: "Purview not available in this region",
}),
},
// ── Azure Monitor / Log Analytics ────────────────────────────────────────────
{
providerId: "monitor-metadata", providerLabel: "Monitor / Log Analytics",
name: "workspaces", resourceType: "workspaces",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4, ..._RT5, ..._RT6], [], [], {
available: "Azure Monitor Log Analytics · Query and alerting · Workspace-based retention",
}),
},
// ── Azure Functions ──────────────────────────────────────────────────────────
{
providerId: "web-metadata", providerLabel: "App Service",
name: "serverFarms (Functions Premium)", resourceType: "serverFarms",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], [..._RT4, ..._RT5], _RT6, {
available: "Azure Functions Premium Plan · Always-ready instances · VNET integration · Zone-redundant",
preview: "Functions Premium Plan in preview in this region",
restricted: "Functions Premium not available in this region",
}),
},
// ── Azure Load Balancer ──────────────────────────────────────────────────────
{
providerId: "network-metadata", providerLabel: "Network",
name: "loadBalancers (Standard)", resourceType: "loadBalancers",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4, ..._RT5], _RT6, [], {
available: "Azure Load Balancer Standard · Zone-redundant frontend · Cross-region load balancing",
preview: "Load Balancer Standard in preview in this region",
}),
},
// ── Azure Firewall ───────────────────────────────────────────────────────────
{
providerId: "network-metadata", providerLabel: "Network",
name: "azureFirewalls (Standard)", resourceType: "azureFirewalls",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [..._RT5, ..._RT6], {
available: "Azure Firewall Standard · Layer 7 filtering · FQDN tags · Threat intelligence",
preview: "Azure Firewall Standard in preview in this region",
restricted: "Azure Firewall Standard not available in this region",
}),
},
{
providerId: "network-metadata", providerLabel: "Network",
name: "azureFirewalls (Premium)", resourceType: "azureFirewalls",
availabilityByRegion: buildAvailabilityMap(_RT1, [..._RT2, ..._RT3], [..._RT4, ..._RT5, ..._RT6], {
available: "Azure Firewall Premium · IDPS · TLS inspection · URL filtering",
preview: "Azure Firewall Premium in preview in this region",
restricted: "Azure Firewall Premium not available in this region",
}),
},
// ── Azure VPN Gateway ────────────────────────────────────────────────────────
{
providerId: "network-metadata", providerLabel: "Network",
name: "virtualNetworkGateways (VPN)", resourceType: "virtualNetworkGateways",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4, ..._RT5], _RT6, [], {
available: "Azure VPN Gateway · Site-to-site and P2S · Zone-redundant VpnGw5AZ",
preview: "VPN Gateway in preview in this region",
}),
},
// ── Azure ExpressRoute ───────────────────────────────────────────────────────
{
providerId: "network-metadata", providerLabel: "Network",
name: "expressRouteCircuits", resourceType: "expressRouteCircuits",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4, ..._RT5], _RT6, {
available: "Azure ExpressRoute · Private connectivity · FastPath up to 100 Gbps · Zone-redundant gateways",
preview: "ExpressRoute in preview or limited rollout",
restricted: "ExpressRoute not available in this region",
}),
},
// ── Azure Bastion ────────────────────────────────────────────────────────────
{
providerId: "network-metadata", providerLabel: "Network",
name: "bastionHosts", resourceType: "bastionHosts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], [..._RT4, ..._RT5], _RT6, {
available: "Azure Bastion · Secure RDP and SSH over TLS · No public IP required on VM",
preview: "Azure Bastion in preview in this region",
restricted: "Azure Bastion not available in this region",
}),
},
// ── Azure Front Door / CDN ───────────────────────────────────────────────────
{
providerId: "cdn-metadata", providerLabel: "CDN / Front Door",
name: "profiles (Standard)", resourceType: "profiles",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4, ..._RT5, ..._RT6], [], [], {
available: "Azure Front Door Standard · Global CDN · Custom WAF · HTTPS acceleration",
}),
},
{
providerId: "cdn-metadata", providerLabel: "CDN / Front Door",
name: "profiles (Premium)", resourceType: "profiles",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], [..._RT4, ..._RT5], _RT6, {
available: "Azure Front Door Premium · Private Link origins · Bot protection · Security analytics",
preview: "Azure Front Door Premium in preview in this region",
restricted: "Azure Front Door Premium not available in this region",
}),
},
// ── Azure Backup ─────────────────────────────────────────────────────────────
{
providerId: "backup-metadata", providerLabel: "Backup",
name: "vaults (Backup)", resourceType: "vaults",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4, ..._RT5], _RT6, [], {
available: "Azure Backup · VM, disk, SQL, SAP, BLOB backup · Cross-region restore",
preview: "Azure Backup in preview in this region",
}),
},
// ── Azure Site Recovery ──────────────────────────────────────────────────────
{
providerId: "backup-metadata", providerLabel: "Backup",
name: "vaults (Site Recovery)", resourceType: "vaults",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4, ..._RT5], _RT6, {
available: "Azure Site Recovery · VM replication · Failover and failback · DR orchestration",
preview: "Site Recovery in preview in this region",
restricted: "Site Recovery not available in this region",
}),
},
// ── Azure Event Grid ─────────────────────────────────────────────────────────
{
providerId: "eventgrid-metadata", providerLabel: "Event Grid",
name: "topics", resourceType: "topics",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4, ..._RT5], _RT6, [], {
available: "Azure Event Grid · Serverless event routing · Push delivery · CloudEvents",
preview: "Event Grid in preview in this region",
}),
},
{
providerId: "eventgrid-metadata", providerLabel: "Event Grid",
name: "namespaces (MQTT)", resourceType: "namespaces",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [..._RT5, ..._RT6], {
available: "Azure Event Grid Namespaces · MQTT v5 broker · High-fan-out push · Zone-redundant",
preview: "Event Grid Namespaces in preview in this region",
restricted: "Event Grid Namespaces not available in this region",
}),
},
// ── Azure HDInsight ──────────────────────────────────────────────────────────
{
providerId: "hdinsight-metadata", providerLabel: "HDInsight",
name: "clusters", resourceType: "clusters",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, [..._RT4, ..._RT5, ..._RT6], {
available: "Azure HDInsight · Managed Hadoop, Spark, Kafka, HBase, Interactive Query",
preview: "HDInsight in preview or limited rollout",
restricted: "HDInsight not available in this region",
}),
},
// ── Azure AI Document Intelligence ──────────────────────────────────────────
{
providerId: "cognitive-skus", providerLabel: "Cognitive Services SKUs",
name: "DocumentIntelligence S0", resourceType: "accounts",
availabilityByRegion: buildAvailabilityMap(
["eastus", "westus2", "westeurope", "uksouth", "swedencentral", "australiaeast", "japaneast", "francecentral"],
["eastus2", "canadacentral", "southeastasia", "koreacentral", "centralindia", "norwayeast"],
[..._RT3, ..._RT4, ..._RT5, ..._RT6],
{
available: "Azure AI Document Intelligence · Form + layout analysis · Prebuilt models · Custom models",
preview: "Document Intelligence in preview in this region",
restricted: "Document Intelligence not available in this region",
}
),
},
// ── Azure AI Vision ──────────────────────────────────────────────────────────
{
providerId: "cognitive-skus", providerLabel: "Cognitive Services SKUs",
name: "ComputerVision S1", resourceType: "accounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [..._RT5, ..._RT6], {
available: "Azure AI Vision · Image analysis · OCR · Spatial analysis · Background removal",
preview: "Azure AI Vision in preview in this region",
restricted: "Azure AI Vision not available in this region",
}),
},
// ── Azure AI Language ────────────────────────────────────────────────────────
{
providerId: "cognitive-skus", providerLabel: "Cognitive Services SKUs",
name: "TextAnalytics S1", resourceType: "accounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [..._RT5, ..._RT6], {
available: "Azure AI Language · NLP · Sentiment, NER, summarization, CLU, custom classification",
preview: "Azure AI Language in preview in this region",
restricted: "Azure AI Language not available in this region",
}),
},
// ── Azure AI Speech ──────────────────────────────────────────────────────────
{
providerId: "cognitive-skus", providerLabel: "Cognitive Services SKUs",
name: "SpeechServices S0", resourceType: "accounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [..._RT5, ..._RT6], {
available: "Azure AI Speech · STT, TTS, translation · Custom neural voice · Speaker recognition",
preview: "Azure AI Speech in preview in this region",
restricted: "Azure AI Speech not available in this region",
}),
},
// ── Azure Bot Service ────────────────────────────────────────────────────────
{
providerId: "bot-metadata", providerLabel: "Bot Service",
name: "botServices", resourceType: "botServices",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, [..._RT4, ..._RT5, ..._RT6], {
available: "Azure AI Bot Service · Multi-channel bot hosting · Copilot Studio integration",
preview: "Bot Service in preview in this region",
restricted: "Bot Service not available in this region",
}),
},
// ── Azure Virtual Desktop ────────────────────────────────────────────────────
{
providerId: "avd-metadata", providerLabel: "Virtual Desktop",
name: "hostPools", resourceType: "hostPools",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], [..._RT3, ..._RT4], [..._RT5, ..._RT6], {
available: "Azure Virtual Desktop · Multi-session Windows · FSLogix profile containers",
preview: "Azure Virtual Desktop in preview in this region",
restricted: "Azure Virtual Desktop not available in this region",
}),
},
// ── Azure Data Lake Storage Gen2 ─────────────────────────────────────────────
{
providerId: "storage-metadata", providerLabel: "Storage",
name: "Data Lake Storage Gen2", resourceType: "storageAccounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4, ..._RT5], _RT6, [], {
available: "Azure Data Lake Storage Gen2 · Hierarchical namespace · Analytics-optimized access",
preview: "ADLS Gen2 in preview in this region",
}),
},
// ── Azure Managed Disks ───────────────────────────────────────────────────────
{
providerId: "disk-metadata", providerLabel: "Disk Storage",
name: "disks (Ultra)", resourceType: "disks",
availabilityByRegion: buildAvailabilityMap(
["eastus", "eastus2", "westus2", "westeurope", "uksouth", "southeastasia", "australiaeast"],
["japaneast", "koreacentral", "centralindia", "francecentral", "swedencentral", "brazilsouth"],
[..._RT3, ..._RT4, ..._RT5, ..._RT6],
{
available: "Ultra Disk · Sub-ms latency · Up to 32 TB · Configurable IOPS and throughput",
preview: "Ultra Disk in limited preview or rollout",
restricted: "Ultra Disk not available in this region",
}
),
},
{
providerId: "disk-metadata", providerLabel: "Disk Storage",
name: "disks (Premium SSD v2)", resourceType: "disks",
availabilityByRegion: buildAvailabilityMap(_RT1, [..._RT2, ..._RT3], [..._RT4, ..._RT5, ..._RT6], {
available: "Premium SSD v2 · Flexible IOPS/throughput · No pre-provisioning needed",
preview: "Premium SSD v2 in preview in this region",
restricted: "Premium SSD v2 not available in this region",
}),
},
// ── Azure Automation ─────────────────────────────────────────────────────────
{
providerId: "automation-metadata", providerLabel: "Automation",
name: "automationAccounts", resourceType: "automationAccounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT5], [..._RT4, ..._RT6], [], {
available: "Azure Automation · PowerShell and Python runbooks · Update Management · DSC",
preview: "Azure Automation in preview in this region",
}),
},
// ── Application Insights ─────────────────────────────────────────────────────
{
providerId: "monitor-metadata", providerLabel: "Monitor / Log Analytics",
name: "components (Application Insights)", resourceType: "components",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4, ..._RT5], _RT6, [], {
available: "Application Insights · Distributed tracing · Live metrics · Smart detection · Availability tests",
preview: "Application Insights in preview in this region",
}),
},
// ── SQL Managed Instance ──────────────────────────────────────────────────────
{
providerId: "sqlmi-metadata", providerLabel: "SQL Managed Instance",
name: "managedInstances", resourceType: "managedInstances",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4, ..._RT5], _RT6, [], {
available: "Azure SQL Managed Instance · Business Critical · General Purpose · Always-on availability groups",
preview: "SQL Managed Instance in preview in this region",
}),
},
// ── MariaDB ───────────────────────────────────────────────────────────────────
{
providerId: "mariadb-metadata", providerLabel: "MariaDB",
name: "servers", resourceType: "servers",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2], _RT3, [..._RT4, ..._RT5, ..._RT6], {
available: "Azure Database for MariaDB · General Purpose · Memory Optimized",
preview: "MariaDB in preview in this region",
restricted: "MariaDB not available in this region",
}),
},
// ── NetApp Files ──────────────────────────────────────────────────────────────
{
providerId: "netappfiles-metadata", providerLabel: "NetApp Files",
name: "netAppAccounts", resourceType: "netAppAccounts",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3, ..._RT4], _RT5, _RT6, {
available: "Azure NetApp Files · Standard / Premium / Ultra service levels · NFS and SMB",
preview: "NetApp Files in preview in this region",
}),
},
// ── Azure VMware Solution ─────────────────────────────────────────────────────
{
providerId: "avs-metadata", providerLabel: "Azure VMware Solution",
name: "privateClouds", resourceType: "privateClouds",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], [..._RT4, "japanwest", "australiasoutheast", "ukwest"], [..._RT6], {
available: "Azure VMware Solution · vSphere + vSAN + NSX-T · HCX migration · AV36P / AV52 nodes",
preview: "Azure VMware Solution in preview in this region",
}),
},
// ── Static Web Apps ───────────────────────────────────────────────────────────
{
providerId: "staticweb-metadata", providerLabel: "Static Web Apps",
name: "staticSites", resourceType: "staticSites",
availabilityByRegion: buildAvailabilityMap([..._RT1, ..._RT2, ..._RT3], [..._RT4, ..._RT5], _RT6, {
available: "Azure Static Web Apps · Free · Standard · GitHub Actions / Azure DevOps CI/CD · Edge CDN",
preview: "Static Web Apps in preview in this region",
}),