-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1127 lines (1126 loc) · 511 KB
/
index.html
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
<html><head><meta name="viewport" content="width=device-width, initial-scale=1"><title>Azure Icons</title><style>body{margin:0}table,th,td{border:1px solid #CCCCCC;border-collapse:collapse;padding:3px}tbody{word-break:break-all;}thead,tfoot{position:sticky;}thead{inset-block-start:0;background-color:#CCCCCC}tfoot{inset-block-end:0;background-color:#CCCCCC}a:link,a:visited,a:hover{color:black}a:active{color:blue}</style><script>function download(uri, name){const a=document.createElement("a");a.href=uri;a.download=name+".svg";a.click();}</script></head><body><table><thead><tr><th scope="col" style="width: 10%">Click to download</th><th scope="col" style="width: 20%">Name</th><th scope="col" style="width: 20%">Type</th><th scope="col" style="width: 20%">Keywords</th><th scope="col" style="width: 30%">Description</th></tr></thead><tbody>
<tr title="AppInsightsExtension/ApplicationInsights"><td><img loading="lazy" decoding="async" src="svg/AppInsightsExtension/ApplicationInsights.svg" alt="Application Insights" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Application Insights</td><td>microsoft.insights/components</td><td></td><td></td></tr>
<tr title="AppInsightsExtension/PrivateLinkScope"><td><img loading="lazy" decoding="async" src="svg/AppInsightsExtension/PrivateLinkScope.svg" alt="Azure Monitor Private Link Scope" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Monitor Private Link Scope</td><td>Microsoft.Insights/privateLinkScopes</td><td></td><td>Use Azure Monitor Private Link Scopes to privately connect your service to your Application Insights component or Log Analytics workspace.</td></tr>
<tr title="AppInsightsExtension/WebTest"><td><img loading="lazy" decoding="async" src="svg/AppInsightsExtension/WebTest.svg" alt="Availability test" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Availability test</td><td>microsoft.insights/webtests</td><td></td><td></td></tr>
<tr title="AppInsightsExtension/Workbooks"><td><img loading="lazy" decoding="async" src="svg/AppInsightsExtension/Workbooks.svg" alt="Azure Workbook" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Workbook</td><td>microsoft.insights/workbooks</td><td>workbooks, notebooks, workspace, solutions, workbook templates, templates</td><td>Azure Monitor Workbooks is a canvas for data analysis or reporting in the Azure Portal</td></tr>
<tr title="AppInsightsExtension/WorkbookTemplates"><td><img loading="lazy" decoding="async" src="svg/AppInsightsExtension/WorkbookTemplates.svg" alt="Azure Workbook Template" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Workbook Template</td><td>microsoft.insights/workbooktemplates</td><td>workbooks, notebooks, workspace, solutions, workbook templates, templates</td><td>Azure Monitor Workbooks is a canvas for data analysis or reporting in the Azure Portal</td></tr>
<tr title="AppPlatformExtension/AppPlatformAsset"><td><img loading="lazy" decoding="async" src="svg/AppPlatformExtension/AppPlatformAsset.svg" alt="Azure Spring Apps" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Spring Apps</td><td>Microsoft.AppPlatform/Spring</td><td></td><td></td></tr>
<tr title="AzureCacheExtension/RedisEnterpriseDatabaseAsset"><td><img loading="lazy" decoding="async" src="svg/AzureCacheExtension/RedisEnterpriseDatabaseAsset.svg" alt="Redis Enterprise database" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Redis Enterprise database</td><td>Microsoft.Cache/RedisEnterprise/Databases</td><td></td><td></td></tr>
<tr title="AzureCacheExtension/CacheAsset"><td><img loading="lazy" decoding="async" src="svg/AzureCacheExtension/CacheAsset.svg" alt="Azure Cache for Redis" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Cache for Redis</td><td>Microsoft.Cache/Redis</td><td></td><td>An in-memory data store that improves the performance and scalability of an application that uses backend data stores heavily. Redis brings a critical low-latency and high-throughput data storage solution to modern applications.</td></tr>
<tr title="AzureTfsExtension/Account"><td><img loading="lazy" decoding="async" src="svg/AzureTfsExtension/Account.svg" alt="Azure DevOps organization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure DevOps organization</td><td></td><td></td><td></td></tr>
<tr title="AzureTfsExtension/Organization"><td><img loading="lazy" decoding="async" src="svg/AzureTfsExtension/Organization.svg" alt="Azure DevOps organization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure DevOps organization</td><td>microsoft.visualstudio/account</td><td></td><td></td></tr>
<tr title="Azure_Marketplace_Astronomer/Astronomer"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Astronomer/Astronomer.svg" alt="Astro Organization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Astro Organization</td><td>Astronomer.Astro/organizations</td><td>Airflow, ETL, ELT, Orchestration, Data pipelines, Data integration, Data processing, Authoring, Job scheduling, workflow scheduler, Data engineering, machine learning, MLOps, AI development, Data lineage, Data analytics, Business intelligence</td><td>This SaaS offering allows you to manage your Astro resource as an integrated native service on Azure. You can easily create an Astro organization, login securely via OpenID Single-Sign On, and run and manage as many Airflow deployments as you need. The usage billing will be streamlined alongside other Azure usages via Azure marketplace.</td></tr>
<tr title="Azure_Marketplace_Confluent/Confluent"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Confluent/Confluent.svg" alt="Confluent organization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Confluent organization</td><td>Microsoft.Confluent/organizations</td><td>Apache Kafka services,Data Pipeline,Data Integration,Data Processing,Data in motion,Data streaming,Data streaming solutions,Data integration platforms,Streaming Data,Streaming analytics,Real-time data,Event-Driven Architecture,Event-Driven Processing,Real-time Data Processing,Schema Registry,Kafka Connect,Confluent,Confluent Cloud,Apache Kafka,Apache Flink,Confluent Cloud on Azure ,Managed Kafka from Azure Marketplace,Confluent Cloud at Azure Marketplace,Flink</td><td>Create a Confluent organization using Azure Marketplace with Pay as you Go or Commits</td></tr>
<tr title="Azure_Marketplace_Datadog/Datadog"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Datadog/Datadog.svg" alt="Datadog" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Datadog</td><td>Microsoft.Datadog/monitors</td><td>The text observability, monitoring, performance, APM, logs, metrics, traces, security, devops, watch, alerts, diagnose, diagnosis, datadog.</td><td>Azure Native ISV Services enable you to easily provision, manage, and tightly integrate independent software vendor (ISV) software and services on Azure. This service is developed and managed by Microsoft and Datadog. Datadog - An Azure Native ISV Service reduces the learning curve to monitor the health and performance of your workloads and provides a streamlined experience for configuring and managing Datadog directly inside the Azure Portal.</td></tr>
<tr title="Azure_Marketplace_Dell/Azure_Microsoft_Dell"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Dell/Azure_Microsoft_Dell.svg" alt="Dell APEX File Storage, An Azure Native Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Dell APEX File Storage, An Azure Native Service</td><td>Dell.Storage/filesystems</td><td>Filesystem,File System,Files,NFS,SMB,CIFS,S3,File share,unstructured data</td><td>Sample Product Description</td></tr>
<tr title="Azure_Marketplace_Dynatrace/Dynatrace"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Dynatrace/Dynatrace.svg" alt="Dynatrace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Dynatrace</td><td>Dynatrace.Observability/monitors</td><td>observability, monitor, monitoring, APM, logs, metrics, traces, security, devops, watch, alerts, diagnose, diagnosis</td><td>Azure Native ISV Services enable you to easily provision, manage, and tightly integrate independent software vendor (ISV) software and services on Azure. This service is developed and managed by Microsoft and Dynatrace. Azure Native Dynatrace Service is a native integration of Dynatrace with Azure. Dynatrace is a unified observability and security platform designed to help enterprises monitor and optimize dynamic hybrid cloud environments at scale. It leverages causal AI and automation to provide real-time business analytics which enables teams to deliver flawless and secure digital interactions, simplify complexity and accelerate innovation.</td></tr>
<tr title="Azure_Marketplace_Elastic/Elastic"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Elastic/Elastic.svg" alt="Elastic" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Elastic</td><td>Microsoft.Elastic/monitors</td><td>search, logs, observability, monitoring, APM, metrics, traces, security, devops, diagnosis, search software, web crawling, image search, AI search engine, vector search, vector database, natural language processing, ML search, named entity recognition, retrieval augmented generation, observability software, log analytics, APM software, Cloud monitoring, kubernetes monitoring, log monitoring, opentelemetry, log analytics, tool consolidation, aiops, SIEM, security analytics, endpoint security, cloud security, EDR, XDR, soar software, cybersecurity, security operations, threat hunting</td><td>Create an Elastic resource using Azure Marketplace to help you manage an Elasticsearch cluster and other Elastic products like Kibana or APM Instances, in one place.</td></tr>
<tr title="Azure_Marketplace_Informatica/Informatica"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Informatica/Informatica.svg" alt="Informatica Organization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Informatica Organization</td><td>Informatica.DataManagement/organizations</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Azure_Marketplace_Liftr_Logz/Logz"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Liftr_Logz/Logz.svg" alt="Logz.io" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Logz.io</td><td>Microsoft.Logz/monitors</td><td>Logz.io, partner integrations, main account, sub account</td><td>Integration with Logz.io enables our customers to send all the logs for non compute resources to Logz.io without having to configure event hubs or enable diagnostic settings. Creating the main account and providing SSO allows user to dynamically include/ exclude tags and SSO into their Logz.io account hassle free. </td></tr>
<tr title="Azure_Marketplace_Liftr_Logz/LogzSubAccount"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Liftr_Logz/LogzSubAccount.svg" alt="Logz sub account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Logz sub account</td><td>Microsoft.Logz/monitors/accounts</td><td>Logz.io, partner integrations, main account, sub account</td><td>A sub account is a child entity which can be created only under a main account resource. </td></tr>
<tr title="Azure_Marketplace_Liftr_NewRelic/NewRelic"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Liftr_NewRelic/NewRelic.svg" alt="New Relic" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>New Relic</td><td>NewRelic.Observability/monitors</td><td>monitoring,performance,APM,logs,metrics,traces,security,devops,alerts,diagnosis</td><td>Create a New Relic resource using Azure Marketplace.</td></tr>
<tr title="Azure_MarketPlace_NativeISVService/ArizeAi"><td><img loading="lazy" decoding="async" src="svg/Azure_MarketPlace_NativeISVService/ArizeAi.svg" alt="Azure Native Arize AI Cloud Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Native Arize AI Cloud Service</td><td>ArizeAi.ObservabilityEval/organizations</td><td></td><td></td></tr>
<tr title="Azure_MarketPlace_NativeISVService/CommvaultCloudAccounts"><td><img loading="lazy" decoding="async" src="svg/Azure_MarketPlace_NativeISVService/CommvaultCloudAccounts.svg" alt="Commvault Cloud Account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Commvault Cloud Account</td><td>Commvault.ContentStore/cloudAccounts</td><td></td><td></td></tr>
<tr title="Azure_MarketPlace_NativeISVService/CommvaultOverview"><td><img loading="lazy" decoding="async" src="svg/Azure_MarketPlace_NativeISVService/CommvaultOverview.svg" alt="Commvault Overview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Commvault Overview</td><td></td><td></td><td></td></tr>
<tr title="Azure_MarketPlace_NativeISVService/LambdaTest"><td><img loading="lazy" decoding="async" src="svg/Azure_MarketPlace_NativeISVService/LambdaTest.svg" alt="Azure Native LambdaTest Cloud Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Native LambdaTest Cloud Service</td><td>LambdaTest.HyperExecute/organizations</td><td></td><td></td></tr>
<tr title="Azure_MarketPlace_NativeISVService/MongoDB"><td><img loading="lazy" decoding="async" src="svg/Azure_MarketPlace_NativeISVService/MongoDB.svg" alt="MongoDB Atlas Organization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>MongoDB Atlas Organization</td><td>MongoDB.Atlas/organizations</td><td></td><td>MongoDB Atlas as an Azure Native ISV Service integrates the fully-managed document database, including native vector search capabilities, directly into the Azure ecosystem. Build and scale modern AI applications with a streamlined setup of an Atlas Organization, unified billing management, and seamless access to Azure services.</td></tr>
<tr title="Azure_MarketPlace_NativeISVService/Pinecone"><td><img loading="lazy" decoding="async" src="svg/Azure_MarketPlace_NativeISVService/Pinecone.svg" alt="Azure Native Pinecone Cloud Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Native Pinecone Cloud Service</td><td>Pinecone.VectorDb/organizations</td><td></td><td></td></tr>
<tr title="Azure_MarketPlace_NativeISVService/WeightsAndBiases"><td><img loading="lazy" decoding="async" src="svg/Azure_MarketPlace_NativeISVService/WeightsAndBiases.svg" alt="Azure Native WeightsAndBiases Cloud Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Native WeightsAndBiases Cloud Service</td><td>Microsoft.WeightsAndBiases/instances</td><td></td><td></td></tr>
<tr title="Azure_Marketplace_Neon/NeonResource"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Neon/NeonResource.svg" alt="Neon Serverless Postgres Organization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Neon Serverless Postgres Organization</td><td>Neon.Postgres/organizations</td><td>Neon, Database, Postgres, Postgresql, Sql, Serverless, Vector, Pgvector, Rag</td><td>Neon is a cloud-native Postgres solution designed for modern applications. It offers a serverless, fully managed, and scalable Postgres database with advanced features like automatic scaling, high availability, and robust security. </td></tr>
<tr title="Azure_Marketplace_NGINX/Nginx"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_NGINX/Nginx.svg" alt="NGINXaaS" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>NGINXaaS</td><td>NGINX.NGINXPLUS/nginxDeployments</td><td>nginx,nginx as a service,load balancer,loadbalancer,reverse proxy,reverseproxy,API Gateway,APIGateway</td><td>Fully managed NGINX service on Azure provides the capabilities of a load balancer and reverse proxy to deliver your content at scale, secure!</td></tr>
<tr title="Azure_Marketplace_PaloAltoNetworks_Cloudngfw/PaloAltoNetworksCloudNGFW"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_PaloAltoNetworks_Cloudngfw/PaloAltoNetworksCloudNGFW.svg" alt="Cloud NGFW by Palo Alto Networks" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cloud NGFW by Palo Alto Networks</td><td>PaloAltoNetworks.Cloudngfw/firewalls</td><td></td><td></td></tr>
<tr title="Azure_Marketplace_PaloAltoNetworks_Cloudngfw/PaloAltoNetworksGlobalRulestack"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_PaloAltoNetworks_Cloudngfw/PaloAltoNetworksGlobalRulestack.svg" alt="Global Rulestack" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Global Rulestack</td><td>PaloAltoNetworks.Cloudngfw/globalRulestacks</td><td></td><td></td></tr>
<tr title="Azure_Marketplace_PaloAltoNetworks_Cloudngfw/PaloAltoNetworksLocalRulestack"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_PaloAltoNetworks_Cloudngfw/PaloAltoNetworksLocalRulestack.svg" alt="Local Rulestack for Cloud NGFW by Palo Alto Networks" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Local Rulestack for Cloud NGFW by Palo Alto Networks</td><td>PaloAltoNetworks.Cloudngfw/localRulestacks</td><td></td><td></td></tr>
<tr title="Azure_Marketplace_Pilot/Pilot"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Pilot/Pilot.svg" alt="Azure Pilot" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Pilot</td><td>Microsoft.LiftrPilot/organizations</td><td></td><td></td></tr>
<tr title="Azure_Marketplace_PureStorage/purestorage_block_storagepools_avsstoragecontainers"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_PureStorage/purestorage_block_storagepools_avsstoragecontainers.svg" alt="PureStorage.Block storage pools avs storage container" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>PureStorage.Block storage pools avs storage container</td><td>purestorage.block/storagepools/avsstoragecontainers</td><td></td><td></td></tr>
<tr title="Azure_Marketplace_PureStorage/purestorage_block_reservations"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_PureStorage/purestorage_block_reservations.svg" alt="Azure Native Pure Storage Cloud Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Native Pure Storage Cloud Service</td><td>purestorage.block/reservations</td><td></td><td>Pure Storage Cloud provides secure, efficient, and reliable block storage as a native managed service - developed and managed by Microsoft and Pure Storage.</td></tr>
<tr title="Azure_Marketplace_PureStorage/purestorage_block_storagepools"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_PureStorage/purestorage_block_storagepools.svg" alt="Storage pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Storage pool</td><td>purestorage.block/storagepools</td><td></td><td></td></tr>
<tr title="Azure_Marketplace_Qumulo/MyResource"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_Qumulo/MyResource.svg" alt="Azure Native Qumulo Scalable File Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Native Qumulo Scalable File Service</td><td>Qumulo.Storage/fileSystems</td><td>Filesystem,File System,Files,NFS,SMB,CIFS,S3,File share,unstructured data,NAS</td><td>Azure Native Qumulo Scalable File Service is developed and managed by Microsoft and Qumulo. The service enables you to easily provision, manage, and tightly integrate Qumulo file systems on Azure. Qumulo provides high performance enterprise class file systems with the scale, elasticity, and economics of object storage. Dynamically scale capacity and throughput up or down as needed, while paying only for what you use.</td></tr>
<tr title="Azure_Marketplace_SamplePartner/MyResource"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_SamplePartner/MyResource.svg" alt="Sample Partner Resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Sample Partner Resource</td><td>Microsoft.SamplePartner/organizations</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Azure_Marketplace_SolarWindsObservability/SolarWinds"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_SolarWindsObservability/SolarWinds.svg" alt="SolarWinds Observability" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SolarWinds Observability</td><td>SolarWinds.Observability/Organizations</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Azure_Marketplace_SplitIO/experimentationWorkspaces"><td><img loading="lazy" decoding="async" src="svg/Azure_Marketplace_SplitIO/experimentationWorkspaces.svg" alt="Split Experimentation Workspace (preview)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Split Experimentation Workspace (preview)</td><td>SplitIO.Experimentation/experimentationWorkspaces</td><td>split, splitio, app config, experimentation, abtesting, a/b testing</td><td>Split Experimentation workspace is the Azure resource that supports running Experiments in Azure.</td></tr>
<tr title="HubsExtension/ArmExplorer"><td><img loading="lazy" decoding="async" src="svg/HubsExtension/ArmExplorer.svg" alt="Resource Explorer" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource Explorer</td><td></td><td></td><td></td></tr>
<tr title="HubsExtension/ARGSharedQueries"><td><img loading="lazy" decoding="async" src="svg/HubsExtension/ARGSharedQueries.svg" alt="Resource Graph query" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource Graph query</td><td>Microsoft.resourcegraph/queries</td><td>shared queries ARG</td><td></td></tr>
<tr title="HubsExtension/BrowseAllResources"><td><img loading="lazy" decoding="async" src="svg/HubsExtension/BrowseAllResources.svg" alt="Resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource</td><td></td><td></td><td></td></tr>
<tr title="HubsExtension/BrowseRecentResources"><td><img loading="lazy" decoding="async" src="svg/HubsExtension/BrowseRecentResources.svg" alt="Recent" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recent</td><td></td><td></td><td></td></tr>
<tr title="HubsExtension/ResourceGraphExplorer"><td><img loading="lazy" decoding="async" src="svg/HubsExtension/ResourceGraphExplorer.svg" alt="Resource Graph Explorer" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource Graph Explorer</td><td></td><td>arg, query, resources</td><td>Resource Graph Explorer lets you craft and run queries against Azure Resource Graph which is an Azure service designed to extend Azure Resource Management by providing efficient and performant resource exploration with the ability to query at scale across a given set of subscriptions so that you can effectively govern your environment.</td></tr>
<tr title="HubsExtension/Dashboards"><td><img loading="lazy" decoding="async" src="svg/HubsExtension/Dashboards.svg" alt="Shared dashboard" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Shared dashboard</td><td>Microsoft.Portal/dashboards</td><td></td><td></td></tr>
<tr title="HubsExtension/PrivateDashboards"><td><img loading="lazy" decoding="async" src="svg/HubsExtension/PrivateDashboards.svg" alt="Private dashboard" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Private dashboard</td><td>microsoft.portal/virtual-privatedashboards</td><td></td><td></td></tr>
<tr title="HubsExtension/Deployments"><td><img loading="lazy" decoding="async" src="svg/HubsExtension/Deployments.svg" alt="Deployment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Deployment</td><td></td><td></td><td></td></tr>
<tr title="HubsExtension/ResourceGroups"><td><img loading="lazy" decoding="async" src="svg/HubsExtension/ResourceGroups.svg" alt="Resource group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource group</td><td>Microsoft.Resources/subscriptions/resourceGroups</td><td></td><td>Resource groups provide a logical container to manage and organize Azure resources, simplifying administration and enabling efficient resource management.</td></tr>
<tr title="HubsExtension/Tag"><td><img loading="lazy" decoding="async" src="svg/HubsExtension/Tag.svg" alt="Tag" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Tag</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_AAD_B2CAdmin/RootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_B2CAdmin/RootAsset.svg" alt="Azure AD B2C" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure AD B2C</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_AAD_B2CAdmin/GuestUsages"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_B2CAdmin/GuestUsages.svg" alt="Guest Usage" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Guest Usage</td><td>Microsoft.AzureActiveDirectory/guestUsages</td><td></td><td></td></tr>
<tr title="Microsoft_AAD_B2CAdmin/CIAMTenant"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_B2CAdmin/CIAMTenant.svg" alt="External Configuration Tenant" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>External Configuration Tenant</td><td>Microsoft.AzureActiveDirectory/ciamDirectories</td><td></td><td></td></tr>
<tr title="Microsoft_AAD_B2CAdmin/B2CTenant"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_B2CAdmin/B2CTenant.svg" alt="B2C Tenant" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>B2C Tenant</td><td>Microsoft.AzureActiveDirectory/b2cDirectories</td><td></td><td></td></tr>
<tr title="Microsoft_AAD_ConditionalAccess/PasswordProtectionRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_ConditionalAccess/PasswordProtectionRootAsset.svg" alt="Microsoft Entra Password protection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Password protection</td><td></td><td>Banned passwords,Password protection,Lockout threshold,Lockout settings,Smart Lockout</td><td></td></tr>
<tr title="Microsoft_AAD_ConditionalAccess/NamedLocationsRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_ConditionalAccess/NamedLocationsRootAsset.svg" alt="Microsoft Entra Named locations" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Named locations</td><td></td><td>Named locations,Trusted networks,Trusted IPs,Named networks</td><td></td></tr>
<tr title="Microsoft_AAD_ConditionalAccess/AuthenticationStrengthsRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_ConditionalAccess/AuthenticationStrengthsRootAsset.svg" alt="Microsoft Entra Authentication Strengths" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Authentication Strengths</td><td></td><td>Authentication Strengths,Microsoft Entra Authentication Strengths,Microsoft Entra Auth Strengths,Auth Strengths,Azure AD Authentication Strengths,Azure AD Auth Strengths</td><td></td></tr>
<tr title="Microsoft_AAD_ConditionalAccess/PolicyRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_ConditionalAccess/PolicyRootAsset.svg" alt="Microsoft Entra Conditional Access" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Conditional Access</td><td></td><td>Conditional Access,Security</td><td></td></tr>
<tr title="Microsoft_AAD_Connect_Provisioning/CrossTenantSynchronizationMainMenuBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_Connect_Provisioning/CrossTenantSynchronizationMainMenuBlade.svg" alt="Cross-tenant Synchronization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cross-tenant Synchronization</td><td></td><td>t2t</td><td></td></tr>
<tr title="Microsoft_AAD_DecentralizedIdentity/PortableIdentityCards"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_DecentralizedIdentity/PortableIdentityCards.svg" alt="Verified ID" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Verified ID</td><td></td><td>UX UI design patterns sample extension ibiza consistency</td><td>Verifiable Credentials are digitally secure documents you issue to your members, employees, or customers. They help users authenticate and authorize themselves when logging in and accessing services. Use Azure to configure, design, and issue W3C standards-based Verifiable Credentials that can be used anywhere.</td></tr>
<tr title="Microsoft_AAD_DomainServices/AADDomainService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_DomainServices/AADDomainService.svg" alt="Microsoft Entra Domain Services" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Domain Services</td><td>Microsoft.AAD/domainServices</td><td></td><td></td></tr>
<tr title="Microsoft_AAD_ERM/RootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_ERM/RootAsset.svg" alt="Identity Governance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Identity Governance</td><td></td><td>access reviews,ToU,Terms of use,Entitlement management,PIM,Privileged Identity Management,IGA</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/UserManagement"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/UserManagement.svg" alt="Users" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Users</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_AAD_IAM/WorkloadIdentities"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/WorkloadIdentities.svg" alt="Workload Identity" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Workload Identity</td><td></td><td>workload, identity, identities</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/WorkflowOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/WorkflowOverview.svg" alt="Workflow" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Workflow</td><td></td><td>workflow, workflows, lifecycle, management</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/Workbooks"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/Workbooks.svg" alt="Workbook" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Workbook</td><td></td><td>workbook, workbooks</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/WebFilteringPolicy"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/WebFilteringPolicy.svg" alt="Web Filtering Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Web Filtering Policy</td><td></td><td>web, filtering, policy</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/VpnConfigurationsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/VpnConfigurationsBlade.svg" alt="VPN Connectivity" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VPN Connectivity</td><td></td><td>conditional, access, VPN, connectivity</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/UserRiskPolicyBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/UserRiskPolicyBlade.svg" alt="User Risk Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>User Risk Policy</td><td></td><td>identity, protection, user, users, risk, policy, policies</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/UserResourceListBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/UserResourceListBlade.svg" alt="Resource Assignments for a User" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource Assignments for a User</td><td></td><td>resource, assignments, user, assignments, elm, admin, elmadmin, management, entitlement</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/UserRegistrationDetailsList"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/UserRegistrationDetailsList.svg" alt="User Registration Detail" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>User Registration Detail</td><td></td><td>user, users, registration, details, detail, auth, authentication, method, methods</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/TrafficLogs"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/TrafficLogs.svg" alt="Traffic Logs" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Traffic Logs</td><td></td><td>traffic, logs</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/TermsOfUseSummaryBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/TermsOfUseSummaryBlade.svg" alt="Conditional Access Terms Of Use" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Conditional Access Terms Of Use</td><td></td><td>conditional, access, terms, use, erm</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/TenantOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/TenantOverview.svg" alt="Microsoft Entra ID" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra ID</td><td></td><td>identity, overview, entra id, entra, aad, azure ad, azure active directory, directory, active directory, IAM, access management</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/SignInRiskPolicyBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/SignInRiskPolicyBlade.svg" alt="Sign-In Risk Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Sign-In Risk Policy</td><td></td><td>sign-in, risk, policy</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/SignInLogs"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/SignInLogs.svg" alt="Sign-in Log" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Sign-in Log</td><td></td><td>login, logon, sign-in, events, logs, signout, logout, logoff</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/SetupBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/SetupBlade.svg" alt="Verified ID Setup" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Verified ID Setup</td><td></td><td>verified, id, setup, decentralized, identity</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/Settings"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/Settings.svg" alt="Workflow Settings" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Workflow Settings</td><td></td><td>workflow, settings, setting, lifecycle, management</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ServicePrincipalActivity"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ServicePrincipalActivity.svg" alt="Microsoft Entra Application Activity" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Application Activity</td><td></td><td>application, activity, app</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ServerStatusBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ServerStatusBlade.svg" alt="Multifactor Authentication Server Status" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Multifactor Authentication Server Status</td><td></td><td>multifactor, authentication, server, status, auth, mfa</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ServerSettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ServerSettingsBlade.svg" alt="Multifactor Authentication Server Setting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Multifactor Authentication Server Setting</td><td></td><td>multifactor, auth, authentication, server, settings, setting, mfa</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/SecurityQuickStartBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/SecurityQuickStartBlade.svg" alt="Security Getting Started" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Security Getting Started</td><td></td><td>security, getting, started</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/SecurityOverviewBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/SecurityOverviewBlade.svg" alt="Identity Protection Overview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Identity Protection Overview</td><td></td><td>identity, protection, overview</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/Security"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/Security.svg" alt="Session Management" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Session Management</td><td></td><td>session, management</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ScenarioHealthSummary"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ScenarioHealthSummary.svg" alt="Health" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Health</td><td></td><td>health, dxp, summary, sla</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/RoamingSettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/RoamingSettingsBlade.svg" alt="Enterprise State Roaming" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Enterprise State Roaming</td><td></td><td>enterprise, state, roaming</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ReviewAccessBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ReviewAccessBlade.svg" alt="Access Review" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Access Review</td><td></td><td>access, reviews, review, erm</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/RegistrationCampaign"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/RegistrationCampaign.svg" alt="Registration Campaign" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Registration Campaign</td><td></td><td>registration, register, registrations, campaign, authentication, method, methods</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/RegistrationAndResetEventsList"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/RegistrationAndResetEventsList.svg" alt="Registration and Reset Event" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Registration and Reset Event</td><td></td><td>registration, register, reset, events, event, auth, authentication, method, methods</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/QuickStart"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/QuickStart.svg" alt="Privileged Identity Management Quickstart" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Privileged Identity Management Quickstart</td><td></td><td>privileged, identity, management, quickstart, pim</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/QuickAccess"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/QuickAccess.svg" alt="Create Quick Access configuration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Create Quick Access configuration</td><td></td><td>create, quick, access, configuration, app, application, proxy, connector, group</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ProvisioningGetStarted"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ProvisioningGetStarted.svg" alt="Microsoft Entra Connect Get Started" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Connect Get Started</td><td></td><td>get, started, connect, provisioning</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ProvisioningEventsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ProvisioningEventsBlade.svg" alt="Provisioning Logs" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Provisioning Logs</td><td></td><td>provisioning, logs, connect</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ProvidersBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ProvidersBlade.svg" alt="Multifactor Aunthentication Provider" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Multifactor Aunthentication Provider</td><td></td><td>multifactor, auth, aunthentication, aunthenticator, provider, providers, mfa</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PreviewHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PreviewHub.svg" alt="Feature Preview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Feature Preview</td><td></td><td>feature, previews, hub</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PolicyOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PolicyOverview.svg" alt="Policies Overview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Policies Overview</td><td></td><td>conditional, access, policies, overview, policy</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PoliciesList"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PoliciesList.svg" alt="Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Policy</td><td></td><td>conditional, access, policy, policies</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PMDashboard"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PMDashboard.svg" alt="Welcome to Permissions Management" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Welcome to Permissions Management</td><td></td><td>welcome, permissions, management, dashboard, pm</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PhoneCallSettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PhoneCallSettingsBlade.svg" alt="Phone Call Setting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Phone Call Setting</td><td></td><td>phone, call, settings, setting</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PasswordResetPolicyDetailRegistrationBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PasswordResetPolicyDetailRegistrationBlade.svg" alt="Users Registration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Users Registration</td><td></td><td>user, users, registration, registrations</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PasswordResetPolicyDetailNotificationsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PasswordResetPolicyDetailNotificationsBlade.svg" alt="Password Resets Notification" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Password Resets Notification</td><td></td><td>notifications, notification, password, reset, resets</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PasswordResetPolicyDetailCustomizationBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PasswordResetPolicyDetailCustomizationBlade.svg" alt="Helpdesk Link Customization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Helpdesk Link Customization</td><td></td><td>customization, customizations, helpdesk</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PasswordReset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PasswordReset.svg" alt="Password Reset" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Password Reset</td><td></td><td>password, reset</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PasswordProtectionBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PasswordProtectionBlade.svg" alt="Password Protection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Password Protection</td><td></td><td>conditional, access, password, protection</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PartnerListBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PartnerListBlade.svg" alt="Connected Organization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Connected Organization</td><td></td><td>connected, organizations, organization, elm, admin, elmadmin, management, entitlement</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/Overview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/Overview.svg" alt="Lifecycle Management Overview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Lifecycle Management Overview</td><td></td><td>lifecycle, manage, management, overview</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/OnPremisesPasswordResetPolicy"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/OnPremisesPasswordResetPolicy.svg" alt="Password Reset On-premises Integration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Password Reset On-premises Integration</td><td></td><td>password, reset, on-premises, onpremise, on-premise, onpremises, integration</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/OneTimeBypassBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/OneTimeBypassBlade.svg" alt="One-time Bypass" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>One-time Bypass</td><td></td><td>one-time, bypass, multifactor, authentication, mfa</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/NotificationsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/NotificationsBlade.svg" alt="Notification" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Notification</td><td></td><td>notifications, notification</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/NewSupportRequestV3Blade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/NewSupportRequestV3Blade.svg" alt="New Support Request" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>New Support Request</td><td></td><td>new, support, request, troubleshoot, troubleshooting, requests</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/NamedLocations"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/NamedLocations.svg" alt="Named Location" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Named Location</td><td></td><td>conditional, access, named, locations, location</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/Mobility"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/Mobility.svg" alt="Mobility (MDM and WIP)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Mobility (MDM and WIP)</td><td></td><td>mobility, mdm, wip, management, devices</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/MfaPolicyBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/MfaPolicyBlade.svg" alt="Multifactor Authentication Registration Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Multifactor Authentication Registration Policy</td><td></td><td>multifactor, authentication, registration, policies, auth, policy, mfa</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/Logging"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/Logging.svg" alt="Logging with Global Secure Access" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Logging with Global Secure Access</td><td></td><td>logging, global, secure, access</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/LocalAdminPasswordRecoveryBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/LocalAdminPasswordRecoveryBlade.svg" alt="Local Administrator Password Recovery" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Local Administrator Password Recovery</td><td></td><td>device, local, administrator, password, recovery, devices</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/LinkedSubscriptionsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/LinkedSubscriptionsBlade.svg" alt="Linked Subscription" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Linked Subscription</td><td></td><td>linked, subscriptions, subscription</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/LicenseManagement"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/LicenseManagement.svg" alt="License" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>License</td><td></td><td>licenses, billing, trial</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/IssuerSettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/IssuerSettingsBlade.svg" alt="Verified ID Settings" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Verified ID Settings</td><td></td><td>verified, id, setting, settings, decentralized, identity</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/IPTutorial"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/IPTutorial.svg" alt="Identity Protection Documentation" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Identity Protection Documentation</td><td></td><td>identity, protection, documentation, tutorial</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/IpcDigestSettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/IpcDigestSettingsBlade.svg" alt="Weekly Digest" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Weekly Digest</td><td></td><td>users, risk, detected, alert, alerts, user, weekly, digest</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/IpcAlertSettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/IpcAlertSettingsBlade.svg" alt="Users At Risk Detected Alert" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Users At Risk Detected Alert</td><td></td><td>users, user, risk, detected, alerts, alert</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/IdentitySecureScoreV2Blade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/IdentitySecureScoreV2Blade.svg" alt="Identity Secure Score" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Identity Secure Score</td><td></td><td>identity, secure, score</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/IdentityProtectionOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/IdentityProtectionOverview.svg" alt="Identity Protection Overview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Identity Protection Overview</td><td></td><td>identity, protection, overview, id</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/HardwareTokensBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/HardwareTokensBlade.svg" alt="OATH Token" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>OATH Token</td><td></td><td>oath, token, tokens, users, risk, detected, alert, alerts, user</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/GroupGeneralSettings"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/GroupGeneralSettings.svg" alt="Group Setting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Group Setting</td><td></td><td>groups, general, settings</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/GettingStartedBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/GettingStartedBlade.svg" alt="Multifactor Authentication Getting Started" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Multifactor Authentication Getting Started</td><td></td><td>multifactor, mfa, authentication, auth, getting, started</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/GetStarted"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/GetStarted.svg" alt="Get started with Global Secure Access" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Get started with Global Secure Access</td><td></td><td>get, started, global, secure, access</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/FraudAlertBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/FraudAlertBlade.svg" alt="Fraud Alert" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Fraud Alert</td><td></td><td>fraud, alert, alerts</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ForwardingProfile"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ForwardingProfile.svg" alt="Traffic Forwarding" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Traffic Forwarding</td><td></td><td>traffic, forwarding</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/FilteringPolicyProfiles"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/FilteringPolicyProfiles.svg" alt="Policy Profile" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Policy Profile</td><td></td><td>policy, profiles, profile</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ExternalIdentitiesGettingStarted"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ExternalIdentitiesGettingStarted.svg" alt="External Identity Getting Started" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>External Identity Getting Started</td><td></td><td>external, identity, identities, getting, started</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ExternalCollaborationSettings"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ExternalCollaborationSettings.svg" alt="External Collaboration Setting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>External Collaboration Setting</td><td></td><td>external, collaboration, settings, allowlist, policy</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/EnterpriseAppsOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/EnterpriseAppsOverview.svg" alt="Enterprise Application Overview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Enterprise Application Overview</td><td></td><td>enterprise, application, applications, app, apps, overview</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/EnterpriseApplicationsUserSettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/EnterpriseApplicationsUserSettingsBlade.svg" alt="Enterprise Applications User Setting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Enterprise Applications User Setting</td><td></td><td>user, users, settings, setting, enterprise, application, applications</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/EnterpriseApplicationsCollectionsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/EnterpriseApplicationsCollectionsBlade.svg" alt="Enterprise Applications Collection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Enterprise Applications Collection</td><td></td><td>enterprise, applications, collection, app, apps, application, collections</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/EnrichedLogs"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/EnrichedLogs.svg" alt="Enriched Microsoft 365 Logs" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Enriched Microsoft 365 Logs</td><td></td><td>enriched, microsoft, 365, logs</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DomainNames"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DomainNames.svg" alt="Domain Name" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Domain Name</td><td></td><td>custom, domain, names</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DirectoryGroupNamingPolicySettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DirectoryGroupNamingPolicySettingsBlade.svg" alt="Group Naming Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Group Naming Policy</td><td></td><td>group, groups, naming, policy, policies</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DirectoryGroupLifecycleSettingsV2Blade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DirectoryGroupLifecycleSettingsV2Blade.svg" alt="Group Expiration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Group Expiration</td><td></td><td>group, groups, expiration</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DiagnosticsLogsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DiagnosticsLogsBlade.svg" alt="Diagnostic Settings" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Diagnostic Settings</td><td></td><td>diagnostic, settings, setting, log, logs, monitor, monitoring</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DiagnosticsHome"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DiagnosticsHome.svg" alt="Diagnose and Solve Problem" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Diagnose and Solve Problem</td><td></td><td>diagnose, solve, problems, problem, dxp</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DevicesOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DevicesOverview.svg" alt="Device Overview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Device Overview</td><td></td><td>device, overview, devices</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DevicesList"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DevicesList.svg" alt="All Devices" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>All Devices</td><td></td><td>all, devices</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DeviceSettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DeviceSettingsBlade.svg" alt="Device Settings" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Device Settings</td><td></td><td>device, settings, devices, setting</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DeviceManagement"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DeviceManagement.svg" alt="Devices Overview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Devices Overview</td><td></td><td>devices, overview</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DeletedWorkflow"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DeletedWorkflow.svg" alt="Deleted Workflow" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Deleted Workflow</td><td></td><td>deleted, workflow, lifecycle, manage, management</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DeletedUsers"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DeletedUsers.svg" alt="Deleted User" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Deleted User</td><td></td><td>deleted, users</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DeletedGroups"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DeletedGroups.svg" alt="Deleted Group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Deleted Group</td><td></td><td>deleted, groups</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DelegatedAdminPartners"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DelegatedAdminPartners.svg" alt="Delegated Admin Partner" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Delegated Admin Partner</td><td></td><td>delegated, admin, partners, relationships</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/Dashboard"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/Dashboard.svg" alt="Welcome to Identity Governance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Welcome to Identity Governance</td><td></td><td>welcome, identity, governance, dashboard</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CustomControls"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CustomControls.svg" alt="Custom Control" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Custom Control</td><td></td><td>conditional, access, custom, control, controls</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CustomSecurityAttributes"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CustomSecurityAttributes.svg" alt="Custom Attribute" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Custom Attribute</td><td></td><td>custom, security, attributes</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CustomAttributes"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CustomAttributes.svg" alt="Custom Attribute" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Custom Attribute</td><td></td><td>custom, attributes, sets, catalog</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CrossTenantSynchronizationGetStarted"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CrossTenantSynchronizationGetStarted.svg" alt="Cross-Tenant Synchronization Overview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cross-Tenant Synchronization Overview</td><td></td><td>cross-tenant, synchronization, overview, sync, connect, provisioning</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CrossTenantSynchronizationConfiguration"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CrossTenantSynchronizationConfiguration.svg" alt="Cross-Tenant Synchronization Configuration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cross-Tenant Synchronization Configuration</td><td></td><td>connect, provisioning, configuration, configurations, sync, synchronization, cross, tenant, cross-tenant</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/XtapAccessSettings"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/XtapAccessSettings.svg" alt="Cross-tenant Access Setting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cross-tenant Access Setting</td><td></td><td>cross-tenant, access, settings, xtap</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ConsentPoliciesUserSettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ConsentPoliciesUserSettingsBlade.svg" alt="User Consent Setting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>User Consent Setting</td><td></td><td>user, users, consent, setting, settings, permission, permissions</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ConsentPoliciesPermissionsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ConsentPoliciesPermissionsBlade.svg" alt="Permission classification" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Permission classification</td><td></td><td>permission, classification, classifications, consent, policies</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ConsentPoliciesAdminConsentSettingsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ConsentPoliciesAdminConsentSettingsBlade.svg" alt="Admin Consent Setting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Admin Consent Setting</td><td></td><td>admin, consent, settings, setting</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CompanyBranding"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CompanyBranding.svg" alt="Company Branding" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Company Branding</td><td></td><td>company, branding</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/Clients"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/Clients.svg" alt="Client" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Client</td><td></td><td>client, clients, network, access</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ClassicPolicyListBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ClassicPolicyListBlade.svg" alt="Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Policy</td><td></td><td>conditional, access, policy, policies</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CertificateAuthorities"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CertificateAuthorities.svg" alt="Certificate Authority" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Certificate Authority</td><td></td><td>certificate, authorities, authority, certificates, cert</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CatalogListBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CatalogListBlade.svg" alt="Catalog" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Catalog</td><td></td><td>catalog, catalogs, elm, admin, elmadmin, management, entitlement</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CardsListBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CardsListBlade.svg" alt="Credentials" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Credentials</td><td></td><td>credentials, decentralized, identity</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CachingRulesBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CachingRulesBlade.svg" alt="Caching Rule" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Caching Rule</td><td></td><td>caching, cache, rules, rule, multifactor, auth, authentication, mfa</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/BulkOperations"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/BulkOperations.svg" alt="Bulk Operation" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Bulk Operation</td><td></td><td>bulk, ops, operations, processor, async</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/BranchConnectivity"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/BranchConnectivity.svg" alt="Remote Network" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Remote Network</td><td></td><td>remote, network</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/BlockedUsersBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/BlockedUsersBlade.svg" alt="Block/Unblock User" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Block/Unblock User</td><td></td><td>block, unblock, user, users</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/BitLockerKeys"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/BitLockerKeys.svg" alt="BitLocker Key" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>BitLocker Key</td><td></td><td>encryption, device, bitlocker, keys, recovery</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AzureAttachActiveDirectoryBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AzureAttachActiveDirectoryBlade.svg" alt="Microsoft Defender for Cloud" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Defender for Cloud</td><td></td><td>microsoft, defender, cloud, subscription, security</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AuthStrengths"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AuthStrengths.svg" alt="Authentication Strength" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Authentication Strength</td><td></td><td>authentication, strengths, strength, conditional, access, auth</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AuthMethodsSettings"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AuthMethodsSettings.svg" alt="Authentication Methods Setting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Authentication Methods Setting</td><td></td><td>authentication, auth, methods, method, settings, setting</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AuthenticationMethodsActivity"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AuthenticationMethodsActivity.svg" alt="Authentication Methods Activity" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Authentication Methods Activity</td><td></td><td>authentication, auth, method, methods, activity, activites</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AuthenticationContextBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AuthenticationContextBlade.svg" alt="Authentication Context" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Authentication Context</td><td></td><td>authentication, context, contexts, conditional, access, auth</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AuthenticationActivityBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AuthenticationActivityBlade.svg" alt="Activity Report" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Activity Report</td><td></td><td>activity, activities, report, reports, auth, authentication</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AuditLogs"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AuditLogs.svg" alt="Audit Log" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Audit Log</td><td></td><td>audit, events, logs</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ArmResourceBrowseBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ArmResourceBrowseBlade.svg" alt="Privileged Identity Management Browse" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Privileged Identity Management Browse</td><td></td><td>privileged, identity, management, browse, pim</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ApplicationRequestApprovalsBladeV2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ApplicationRequestApprovalsBladeV2.svg" alt="Admin Consent Request" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Admin Consent Request</td><td></td><td>admin, consent, request, requests, administrator, application, applications</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ApplicationCredentialActivityList"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ApplicationCredentialActivityList.svg" alt="Application Credential Activity" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Application Credential Activity</td><td></td><td>application, activity, activities, credential, app</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/ApplicationActivityGrid"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/ApplicationActivityGrid.svg" alt="Microsoft Entra Application Activity" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Application Activity</td><td></td><td>application, activity, activities, app</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AppLaunchersSettings"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AppLaunchersSettings.svg" alt="App Launchers Setting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>App Launchers Setting</td><td></td><td>app, launcher, launchers, setting, settings</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AdminPasswordResetPolicyBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AdminPasswordResetPolicyBlade.svg" alt="Administrator Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Administrator Policy</td><td></td><td>admin, policy, administrator, policies, password, reset</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AdminAuthMethodsBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AdminAuthMethodsBlade.svg" alt="Auth Method" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Auth Method</td><td></td><td>auth, method, methods, authentication, passkey</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AccountLockoutBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AccountLockoutBlade.svg" alt="Account Lockout" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Account Lockout</td><td></td><td>account, lockout</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AADConnectBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AADConnectBlade.svg" alt="Microsoft Entra Connect" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Connect</td><td></td><td>microsoft, entra, connect, provisioning</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/SecurityRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/SecurityRootAsset.svg" alt="Microsoft Entra ID Security" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra ID Security</td><td></td><td>Security,Microsoft Entra ID Security,Identity Security,Identity</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/SecurityQuickStart"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/SecurityQuickStart.svg" alt="Security" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Security</td><td></td><td>Microsoft Entra ID,azure active directory,azure ad,overview</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/SecureScoreRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/SecureScoreRootAsset.svg" alt="Microsoft Entra Identity Secure Score" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Identity Secure Score</td><td></td><td>Identity Secure Score,Secure Score</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/RiskyUsersRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/RiskyUsersRootAsset.svg" alt="Microsoft Entra ID risky users" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra ID risky users</td><td></td><td>Risky users,Users flagged for risk,Compromised users</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/RiskySigninsRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/RiskySigninsRootAsset.svg" alt="Microsoft Entra ID risky sign-ins" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra ID risky sign-ins</td><td></td><td>Risky sign-ins,Compromised sign-ins</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/RiskyServicePrincipalsRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/RiskyServicePrincipalsRootAsset.svg" alt="Microsoft Entra ID risky workload identities" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra ID risky workload identities</td><td></td><td>Risky service principals,Service principals flagged for risk,Compromised service principals</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/RiskDetectionsRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/RiskDetectionsRootAsset.svg" alt="Microsoft Entra ID risk detections" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra ID risk detections</td><td></td><td>Risk detections,Risk events,Signals,Detections</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PasswordProtectionRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PasswordProtectionRootAsset.svg" alt="Microsoft Entra password protection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra password protection</td><td></td><td>Banned passwords,Password protection,Lockout threshold,Lockout settings,Smart Lockout</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/MultifactorAuthenticationRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/MultifactorAuthenticationRootAsset.svg" alt="Multifactor authentication" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Multifactor authentication</td><td></td><td>MFA,Multi-factor Authentication,Authenticator,MFA server</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/IdentityProtectionRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/IdentityProtectionRootAsset.svg" alt="Microsoft Entra ID Protection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra ID Protection</td><td></td><td>Identity Protection,Security Overview,Risky users,Risky sign-ins,Risk detections</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AuthenticationMethodsRootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AuthenticationMethodsRootAsset.svg" alt="Microsoft Entra authentication methods" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra authentication methods</td><td></td><td>Authentication methods,MFA,Password,Credentials,Multi-factor Authentication,Passwordless,Authenticator,Passkey</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/PrivateLinkForAzureAD"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/PrivateLinkForAzureAD.svg" alt="Private Link for Microsoft Entra ID" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Private Link for Microsoft Entra ID</td><td>microsoft.aadiam/privateLinkForAzureAD</td><td></td><td></td></tr>
<tr title="Microsoft_AAD_IAM/GroupsManagement"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/GroupsManagement.svg" alt="Groups" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Groups</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_AAD_IAM/TenantProperties"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/TenantProperties.svg" alt="Tenant properties" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Tenant properties</td><td></td><td>directory</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DirectoryUserSettings"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DirectoryUserSettings.svg" alt="User settings" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>User settings</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_AAD_IAM/DirectoriesADConnect"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/DirectoriesADConnect.svg" alt="Microsoft Entra Connect" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Connect</td><td></td><td>azure</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CreateCustomRole"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CreateCustomRole.svg" alt="Create custom Microsoft Entra roles" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Create custom Microsoft Entra roles</td><td></td><td>new,ME-ID,AAD</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/CompanyRelationshipsMenuBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/CompanyRelationshipsMenuBlade.svg" alt="External Identities" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>External Identities</td><td></td><td>user flows,custom user attributes,all identity providers,API connectors,organizational relationships</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AzureActiveDirectory"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AzureActiveDirectory.svg" alt="Microsoft Entra ID" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra ID</td><td></td><td>Microsoft Entra ID,ME-ID,Azure AD,AAD,AD,MFA,Authentication,Azure Active Directory</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AllRolesBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AllRolesBlade.svg" alt="Microsoft Entra roles and administrators" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra roles and administrators</td><td></td><td>ME-ID,AAD</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AdminUnitManagementBlade"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AdminUnitManagementBlade.svg" alt="Administrative units" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Administrative units</td><td></td><td>AU</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/Application"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/Application.svg" alt="Enterprise application" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Enterprise application</td><td></td><td>service principal, service principals, service account, service accounts</td><td></td></tr>
<tr title="Microsoft_AAD_IAM/AppProxyOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_IAM/AppProxyOverview.svg" alt="App proxy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>App proxy</td><td></td><td>application</td><td></td></tr>
<tr title="Microsoft_AAD_RegisteredApps/RegisteredApps"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AAD_RegisteredApps/RegisteredApps.svg" alt="App registration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>App registration</td><td></td><td>service account, service accounts, app registration, app registrations</td><td></td></tr>
<tr title="Microsoft_AzureCXP_EngageHub/EngageHubPortalMenu"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureCXP_EngageHub/EngageHubPortalMenu.svg" alt="EngageHub Portal" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>EngageHub Portal</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/AzureEdgeNodePool"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/AzureEdgeNodePool.svg" alt="Azure Stack | Preview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Stack | Preview</td><td>Microsoft.AzureStackHCI/edgeNodePools</td><td>Azure Stack</td><td>Azure Stack</td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/AzureStackHCI"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/AzureStackHCI.svg" alt="Azure Local" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Local</td><td></td><td>Azure Local, Azure Stack HCI, HCI</td><td>Azure Local</td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/AzureStackHCIGalleryImage"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/AzureStackHCIGalleryImage.svg" alt="Azure Local Gallery image" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Local Gallery image</td><td>Microsoft.AzureStackHCI/galleryImages</td><td>Azure Local Gallery Images, Azure Stack HCI Gallery Images</td><td>Azure Local Gallery Images</td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/AzureStackHCILogicalNetwork"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/AzureStackHCILogicalNetwork.svg" alt="Azure Local Logical network" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Local Logical network</td><td>Microsoft.AzureStackHCI/logicalnetworks</td><td>Azure Local Logical Networks, Azure Stack HCI Logical Networks</td><td>Azure Local Logical Networks</td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/AzureStackHCIMarketplaceGalleryImage"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/AzureStackHCIMarketplaceGalleryImage.svg" alt="Azure Local Marketplace Gallery image" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Local Marketplace Gallery image</td><td>Microsoft.AzureStackHCI/marketplacegalleryImages</td><td>Azure Local Marketplace Gallery Images, Azure Stack HCI Marketplace Gallery Images</td><td>Azure Local Marketplace Gallery Images</td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/AzureStackHCINetworkInterface"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/AzureStackHCINetworkInterface.svg" alt="Azure Local VM Network Interface" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Local VM Network Interface</td><td>Microsoft.AzureStackHCI/NetworkInterfaces</td><td>Azure Local Network Interfaces, Azure Stack HCI Network Interfaces</td><td>Azure Local Network Interfaces</td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/AzureStackHCINetworkSecurityGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/AzureStackHCINetworkSecurityGroup.svg" alt="Azure Local Network Security Group " title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Local Network Security Group </td><td>Microsoft.AzureStackHCI/networkSecurityGroups</td><td>Azure Local Network Security Groups</td><td>Azure Local Security Groups</td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/AzureStackHCIResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/AzureStackHCIResource.svg" alt="Azure Local" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Local</td><td>Microsoft.AzureStackHCI/clusters</td><td>Azure Local, Azure Stack HCI, HCI</td><td>Azure Local</td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/AzureStackHCIStoragePath"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/AzureStackHCIStoragePath.svg" alt="Azure Local Storage path" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Local Storage path</td><td>Microsoft.AzureStackHCI/storagecontainers</td><td>Azure Local Storage Paths, Azure Stack HCI Storage Paths</td><td>Azure Local Storage Paths</td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/HCIVirtualMachines"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/HCIVirtualMachines.svg" alt="Azure Local Virtual Machine - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Local Virtual Machine - Azure Arc</td><td>Microsoft.All/hciVirtualMachines</td><td></td><td></td></tr>
<tr title="Microsoft_AzureStackHCI_PortalExtension/EdgeCenter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStackHCI_PortalExtension/EdgeCenter.svg" alt="Edge Center" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Edge Center</td><td></td><td>Edge Center</td><td>Edge Center</td></tr>
<tr title="Microsoft_AzureStack_LabHardware/LabServers"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStack_LabHardware/LabServers.svg" alt="AszLabHardware Lab Server" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>AszLabHardware Lab Server</td><td>private.aszlabhardware/labservers</td><td></td><td></td></tr>
<tr title="Microsoft_AzureStack_LabHardware/Reservations"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStack_LabHardware/Reservations.svg" alt="AszLabHardware Reservation" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>AszLabHardware Reservation</td><td>private.aszlabhardware/reservations</td><td></td><td></td></tr>
<tr title="Microsoft_AzureStack_LabHardware/Servers"><td><img loading="lazy" decoding="async" src="svg/Microsoft_AzureStack_LabHardware/Servers.svg" alt="AszLabHardware Server" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>AszLabHardware Server</td><td>private.aszlabhardware/servers</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ActivityLog/ActivityLogAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ActivityLog/ActivityLogAsset.svg" alt="Activity log" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Activity log</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ADHybridHealth/RootAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ADHybridHealth/RootAsset.svg" alt="Microsoft Entra Connect Health" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Connect Health</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ADU/IotDUResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ADU/IotDUResource.svg" alt="Device Update for IoT Hub" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Device Update for IoT Hub</td><td>Microsoft.DeviceUpdate/Accounts</td><td>device update iot hub adu</td><td></td></tr>
<tr title="Microsoft_Azure_AFDX/FrontdoorProfile"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AFDX/FrontdoorProfile.svg" alt="Front Door and CDN profile" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Front Door and CDN profile</td><td>microsoft.cdn/profiles</td><td>Front door, CDN, content delivery network, web acceleration, web availability, DDoS, global layer 7 load balancing, AFD, azure front door, WAF, web application firewall, global load balancing</td><td>Azure Front Door and CDN profiles is security led, modern cloud CDN that provides static and dynamic content acceleration, global load balancing and enhanced security for your apps, APIs and websites with intelligent threat protection.</td></tr>
<tr title="Microsoft_Azure_AgFoodPlatform/FarmbeatsResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AgFoodPlatform/FarmbeatsResource.svg" alt="Azure Data Manager for Agriculture" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Data Manager for Agriculture</td><td>Microsoft.AgFoodPlatform/farmBeats</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_AgriculturePlatform/AgriServices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AgriculturePlatform/AgriServices.svg" alt="Agriculture data solutions" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Agriculture data solutions</td><td>Microsoft.AgriculturePlatform/agriServices</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_AnalysisServices/AnalysisServices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AnalysisServices/AnalysisServices.svg" alt="Analysis Services" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Analysis Services</td><td>Microsoft.AnalysisServices/servers</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Analytics/REDIDCILDCBJNGCP"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Analytics/REDIDCILDCBJNGCP.svg" alt="Fabric Capacity" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Fabric Capacity</td><td>Microsoft.Fabric/capacities</td><td>Fabric,Microsoft Fabric,Synapse,Power BI,Power,BI,Microsoft,intelligent,data,platform,Microsoft Intelligent data platform</td><td>Microsoft Fabric delivers an end-to-end analytics platform that goes from the data lake to the business user.</td></tr>
<tr title="Microsoft_Azure_ANMVerifier/verifierWorkspace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ANMVerifier/verifierWorkspace.svg" alt="Verifier Workspace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Verifier Workspace</td><td>Microsoft.Network/networkManagers/verifierWorkspaces</td><td>network, verifier, workspace, network reachability, reachability intent, analysis run</td><td>Azure Virtual Network Manager's verifier workspace enables you to check if your network policies allow or disallow traffic between your Azure network resources. You can create a verifier workspace from your network manager instance.</td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkPacketCoreControlPlanesPacketCoreDataPlanesAttachedDataNetworks"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkPacketCoreControlPlanesPacketCoreDataPlanesAttachedDataNetworks.svg" alt="Attached Data Network" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Attached Data Network</td><td>Microsoft.MobileNetwork/packetCoreControlPlanes/packetCoreDataPlanes/attachedDataNetworks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkPacketCoreControlPlanes"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkPacketCoreControlPlanes.svg" alt="Packet Core Control Plane" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Packet Core Control Plane</td><td>Microsoft.MobileNetwork/packetCoreControlPlanes</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkMobileNetworkDataNetworks"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkMobileNetworkDataNetworks.svg" alt="Data Network" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data Network</td><td>Microsoft.MobileNetwork/mobileNetworks/dataNetworks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkPacketCoreControlPlanesPacketCoreDataPlanes"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkPacketCoreControlPlanesPacketCoreDataPlanes.svg" alt="Packet Core Data Plane" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Packet Core Data Plane</td><td>Microsoft.MobileNetwork/packetCoreControlPlanes/packetCoreDataPlanes</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkMobileNetworks"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkMobileNetworks.svg" alt="Mobile Network" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Mobile Network</td><td>Microsoft.MobileNetwork/mobileNetworks</td><td>Azure Private 5G Core</td><td>Deploy your own Azure Private 5G Core to make services available to your computing resources wherever they may be</td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkSiteRadioAccessNetworks"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkSiteRadioAccessNetworks.svg" alt="Radio Access Network Insights" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Radio Access Network Insights</td><td>Microsoft.MobileNetwork/radioAccessNetworks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkMobileNetworkServices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkMobileNetworkServices.svg" alt="Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service</td><td>Microsoft.MobileNetwork/mobileNetworks/services</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkSims"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkSims.svg" alt="SIM" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SIM</td><td>Microsoft.MobileNetwork/simGroups/sims</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkSimGroups"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkSimGroups.svg" alt="SIM Group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SIM Group</td><td>Microsoft.MobileNetwork/simGroups</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkMobileNetworkSimPolicies"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkMobileNetworkSimPolicies.svg" alt="SIM Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SIM Policy</td><td>Microsoft.MobileNetwork/mobileNetworks/simPolicies</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkMobileNetworkSites"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkMobileNetworkSites.svg" alt="Mobile Network Site" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Mobile Network Site</td><td>Microsoft.MobileNetwork/mobileNetworks/sites</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_AP5GC/MobileNetworkMobileNetworkSlices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AP5GC/MobileNetworkMobileNetworkSlices.svg" alt="Slice" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Slice</td><td>Microsoft.MobileNetwork/mobileNetworks/slices</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ApiManagement/Center"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ApiManagement/Center.svg" alt="API Center" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>API Center</td><td>Microsoft.ApiCenter/services</td><td></td><td>API Center is a structured repository that provides comprehensive information about APIs available within your organization.</td></tr>
<tr title="Microsoft_Azure_ApiManagement/Gateway"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ApiManagement/Gateway.svg" alt="Gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Gateway</td><td>Microsoft.ApiManagement/gateways</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ApiManagement/Service"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ApiManagement/Service.svg" alt="API Management service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>API Management service</td><td>Microsoft.ApiManagement/service</td><td></td><td>Hybrid and multi-cloud management, observability, and discovery platform for APIs across all environments.</td></tr>
<tr title="Microsoft_Azure_ApiManagement/WorkspaceCatalog"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ApiManagement/WorkspaceCatalog.svg" alt="Workspace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Workspace</td><td>Microsoft.ApiCenter/services/workspaces</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AppComplianceAutomation/AppComplianceAutomation"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AppComplianceAutomation/AppComplianceAutomation.svg" alt="App Compliance Automation Tool for Microsoft 365" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>App Compliance Automation Tool for Microsoft 365</td><td></td><td>Microsoft 365 App Compliance</td><td>App Compliance Automation Tool for Microsoft 365 is an application-centric compliance automation tool that helps you complete Microsoft 365 Certification with greater ease and convenience.</td></tr>
<tr title="Microsoft_Azure_Appliance/ApplianceDefinition"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Appliance/ApplianceDefinition.svg" alt="Service catalog managed application definition" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service catalog managed application definition</td><td>Microsoft.Solutions/applicationDefinitions</td><td></td><td>Create new application definitions that comply with your organization's standards and share them within your organization.</td></tr>
<tr title="Microsoft_Azure_Appliance/ApplicationsHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Appliance/ApplicationsHub.svg" alt="Managed applications center" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Managed applications center</td><td></td><td>Managed application, Service catalog, Service catalog application, Marketplace application, Browse application, Service application, Publish application, Service catalog application definition, Application, Application definition</td><td></td></tr>
<tr title="Microsoft_Azure_Appliance/ArmAppliance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Appliance/ArmAppliance.svg" alt="Managed application" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Managed application</td><td>Microsoft.Solutions/applications</td><td></td><td>Create applications developed and managed by Azure partners from the Marketplace, or by your organization from your organization's Service Catalog.</td></tr>
<tr title="Microsoft_Azure_Appliance/MicrosoftVSOnlinePlans"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Appliance/MicrosoftVSOnlinePlans.svg" alt="Visual Studio Online Plan" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Visual Studio Online Plan</td><td>Microsoft.VSOnline/Plans</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AppProtection/AppProtectPolicies"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AppProtection/AppProtectPolicies.svg" alt="App Protect Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>App Protect Policy</td><td>Microsoft.AppSecurity/Policies</td><td>App, Protect, Policy, Security, WAF, Firewall, Front Door, FrontDoor</td><td>App Protect Policies are used to define the security policies (TBD)</td></tr>
<tr title="Microsoft_Azure_ArcCenterUX/AzureArcCenter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ArcCenterUX/AzureArcCenter.svg" alt="Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Arc</td><td></td><td>arc, azurearc, server, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, hybrid, non-azure, nonazure, machine, connect, multicloud, management, azure anywhere, arc center, arccenter, arc-center, azure arc</td><td>Azure Arc simplifies management of complex environments that span clouds, datacenters, and edge devices.</td></tr>
<tr title="Microsoft_Azure_ArcCenterUX/AllArcResourcesFairfax"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ArcCenterUX/AllArcResourcesFairfax.svg" alt="Azure Arc enabled resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Arc enabled resource</td><td>Microsoft.Arc/allFairfax</td><td>arc, azurearc, server, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, hybrid, non-azure, nonazure, machine, connect, multicloud, management, azure anywhere, arc center, arccenter, arc-center, azure arc</td><td>Azure Arc extends Azure management tools to on-premises, multi-cloud environments, and the edge. Start here by adding any of your existing resources.</td></tr>
<tr title="Microsoft_Azure_ArcCenterUX/AllArcResources"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ArcCenterUX/AllArcResources.svg" alt="Azure Arc enabled resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Arc enabled resource</td><td>Microsoft.Arc/all</td><td>arc, azurearc, server, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, hybrid, non-azure, nonazure, machine, connect, multicloud, management, azure anywhere, arc center, arccenter, arc-center, azure arc</td><td>Azure Arc extends Azure management tools to on-premises, multi-cloud environments, and the edge. Start here by adding any of your existing resources.</td></tr>
<tr title="Microsoft_Azure_ArcNetworking/ArcNetworking"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ArcNetworking/ArcNetworking.svg" alt="Arc Load Balancer" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Arc Load Balancer</td><td>microsoft.kubernetesruntime/loadbalancers</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_Attestation/AttestResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Attestation/AttestResource.svg" alt="Attestation provider" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Attestation provider</td><td>Microsoft.Attestation/attestationProviders</td><td>attestation</td><td>Microsoft Azure Attestation is a solution for attesting Trusted Execution Environments (TEEs) such as Intel® Software Guard Extensions (SGX) enclaves and Virtualization-based Security (VBS) enclaves. Attestation is a process of demonstrating that software binaries were properly instantiated on a trusted platform.</td></tr>
<tr title="Microsoft_Azure_AutoManagedVirtualMachines/AutoManagedVirtualMachines"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AutoManagedVirtualMachines/AutoManagedVirtualMachines.svg" alt="Automanage" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Automanage</td><td></td><td>automanage, best practices, machine best practices, azure automanage</td><td></td></tr>
<tr title="Microsoft_Azure_Automation/Account"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Automation/Account.svg" alt="Automation Account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Automation Account</td><td>Microsoft.Automation/AutomationAccounts</td><td>automate, runbook, update, patch, manage, inventory, change, track, dsc, powershell, script, workflow, flow, process, serverless, schedule, python, watcher, hybrid</td><td></td></tr>
<tr title="Microsoft_Azure_Automation/Variable"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Automation/Variable.svg" alt="" title="Click to download" onclick="download(this.src, this.alt)" /></td><td></td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Automation/GuestAssignment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Automation/GuestAssignment.svg" alt="Guest Assignment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Guest Assignment</td><td>Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments</td><td>guest, assignment</td><td>Guest Assignment</td></tr>
<tr title="Microsoft_Azure_Automation/NonAzureGuestAssignment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Automation/NonAzureGuestAssignment.svg" alt="Guest Assignment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Guest Assignment</td><td>Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments</td><td>guest, assignment</td><td>Guest Assignment</td></tr>
<tr title="Microsoft_Azure_Automation/UpdateCenter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Automation/UpdateCenter.svg" alt="Azure Update Manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Update Manager</td><td></td><td>azure update manager, update management center, update center, update, patch, patch management, aum, umc, vulnerability management, virtual machines, arc</td><td></td></tr>
<tr title="Microsoft_Azure_Automation/UpdateAgentTroubleshooting"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Automation/UpdateAgentTroubleshooting.svg" alt="" title="Click to download" onclick="download(this.src, this.alt)" /></td><td></td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_AzConfig/StoreResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AzConfig/StoreResource.svg" alt="App Configuration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>App Configuration</td><td>Microsoft.AppConfiguration/configurationStores</td><td>feature flags, feature flag, AppConfig, config, configuration, App Config</td><td>Azure App Configuration lets you centrally manage application configuration and feature flags in the cloud. Create a resource today to be able to manage your configuration as code, propagate changes without having to redeploy, and easily integrate configuration with CI/CD processes.</td></tr>
<tr title="Microsoft_Azure_AzFleet/AzureFleet"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AzFleet/AzureFleet.svg" alt="Compute Fleet" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Compute Fleet</td><td>microsoft.azurefleet/fleets</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Deploy a fleet of mixed-size virtual machines up to 10,000 instances across multiple availability zones. With flexible VM types and sizes, fleet switches seamlessly between VMs based on capacity and cost.</td></tr>
<tr title="Microsoft_Azure_AzFleet/AzureFleetComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_AzFleet/AzureFleetComputeHub.svg" alt="Compute Fleet" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Compute Fleet</td><td>microsoft.azurefleet/fleetsComputehub</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Deploy a fleet of mixed-size virtual machines up to 10,000 instances across multiple availability zones. With flexible VM types and sizes, fleet switches seamlessly between VMs based on capacity and cost.</td></tr>
<tr title="Microsoft_Azure_Batch/BatchAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Batch/BatchAccount.svg" alt="Batch account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Batch account</td><td>Microsoft.Batch/batchAccounts</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_BCDRCenter/ABCCenter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_BCDRCenter/ABCCenter.svg" alt="Business Continuity Center" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Business Continuity Center</td><td></td><td>ABC Center, Business Continuity Center, Azure Business Continuity Center, BCDR, Backup, Backup center, Recovery Services vaults, Backup vaults, Protection</td><td></td></tr>
<tr title="Microsoft_Azure_Billing/Subscription"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Billing/Subscription.svg" alt="Subscription" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Subscription</td><td>microsoft.resources/subscriptions</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Billing/SubscriptionDetail"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Billing/SubscriptionDetail.svg" alt="Subscription" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Subscription</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Billing/Billing"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Billing/Billing.svg" alt="Cost Management + Billing" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cost Management + Billing</td><td></td><td>cloudyn, recommendations, optimization, optimize</td><td></td></tr>
<tr title="Microsoft_Azure_Billing/FreeServices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Billing/FreeServices.svg" alt="Free service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Free service</td><td></td><td>free account, free tier, tier, account, free services, services, free virtual machine, free vm, free database, free storage, free blob, free file, free disk, free managed disk, free bandwidth, free networking</td><td></td></tr>
<tr title="Microsoft_Azure_BotService/BotService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_BotService/BotService.svg" alt="Bot Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Bot Service</td><td>Microsoft.BotService/botServices</td><td></td><td>Develop intelligent, enterprise-grade bots that help you enrich the customer experience while maintaining control of your data. Build any type of bot—from a Q&A bot to your own branded virtual assistant—to quickly connect your users to the answers they need.</td></tr>
<tr title="Microsoft_Azure_Capacity/QuotaMenu"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Capacity/QuotaMenu.svg" alt="Quotas" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Quotas</td><td></td><td>Quota,Quota approval,Quota request,Quota management,Quota increase,Get Quota,Capacity Acquisition,Manage Capacity,Increase Quota,Subscription Limits,Service Limits</td><td>Quotas provide the ability to oversee and control resource limits in the Azure environment, ensuring efficient allocation and utilization.</td></tr>
<tr title="Microsoft_Azure_Cdn/Origin"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Cdn/Origin.svg" alt="Origin" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Origin</td><td>microsoft.cdn/profiles/endpoints/origins</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Cdn/Endpoint"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Cdn/Endpoint.svg" alt="Endpoint" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Endpoint</td><td>microsoft.cdn/profiles/endpoints</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Cdn/CustomDomain"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Cdn/CustomDomain.svg" alt="Custom domain" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Custom domain</td><td>microsoft.cdn/profiles/endpoints/customdomains</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Cdn/CdnProfile"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Cdn/CdnProfile.svg" alt="Front Door and CDN profiles" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Front Door and CDN profiles</td><td>microsoft.cdn/profiles</td><td>CDN, Content Delivery Network, AFD, Front door, Frontdoor, Global Load Balancing, DSA</td><td></td></tr>
<tr title="Microsoft_Azure_ChangeAnalysis/AzureChangeAnalysis"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ChangeAnalysis/AzureChangeAnalysis.svg" alt="Change Analysis" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Change Analysis</td><td></td><td>UX UI design patterns sample extension ibiza consistency</td><td>View changes in all resources under selected subscriptions to mitigate and diagnose Azure application issues and to monitor Azure resources.</td></tr>
<tr title="Microsoft_Azure_Chaos/privateAccess"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Chaos/privateAccess.svg" alt="Agent Private Access" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Agent Private Access</td><td>microsoft.chaos/privateaccesses</td><td>chaos studio,chaos engineering,experiment,fault injection,reliability,resilience,resiliency,availability,outage,failure,disruption,drill,stress test,disaster,testing,validation,validate,agent private access</td><td>Create an agent private access resource to enable chaos agent experimentation using private networking.</td></tr>
<tr title="Microsoft_Azure_Chaos/chaosStudio"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Chaos/chaosStudio.svg" alt="Chaos Studio" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Chaos Studio</td><td></td><td>chaos studio,chaos engineering,experiment,fault injection,reliability,resilience,resiliency,availability,outage,failure,disruption,drill,stress test,disaster,testing,validation,validate</td><td>Measure, understand, and build application and service resilience to real-world outages using fault injection.</td></tr>
<tr title="Microsoft_Azure_Chaos/chaosExperimentResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Chaos/chaosExperimentResource.svg" alt="Chaos Experiment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Chaos Experiment</td><td>microsoft.chaos/experiments</td><td>chaos studio,chaos engineering,experiment,fault injection,reliability,resilience,resiliency,availability,outage,failure,disruption,drill,stress test,disaster,testing,validation,validate</td><td>Define faults you want to run and the resources you want to inject faults into using Chaos Studio.</td></tr>
<tr title="Microsoft_Azure_Classic_Compute/DomainName"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Classic_Compute/DomainName.svg" alt="Domain Name" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Domain Name</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Classic_Compute/Disks"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Classic_Compute/Disks.svg" alt="Disk (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Disk (classic)</td><td>Microsoft.ClassicStorage/storageAccounts/disks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Classic_Compute/OsUserImages"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Classic_Compute/OsUserImages.svg" alt="OS image (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>OS image (classic)</td><td>Microsoft.ClassicStorage/storageAccounts/osimages</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Classic_Compute/VmUserImages"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Classic_Compute/VmUserImages.svg" alt="VM image (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VM image (classic)</td><td>Microsoft.ClassicStorage/storageAccounts/vmimages</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Classic_Compute/VirtualMachine"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Classic_Compute/VirtualMachine.svg" alt="Virtual machine (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual machine (classic)</td><td>Microsoft.ClassicCompute/VirtualMachines</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_CloudforSovereignty/TransparencyLogsAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudforSovereignty/TransparencyLogsAsset.svg" alt="Transparency log" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Transparency log</td><td>microsoft.sovereign/transparencylogs</td><td>transparency,log,jit,just-in-time</td><td>Microsoft's commitment to transparency includes providing information about occasions when Microsoft engineers had access to resources in your Azure tenant, usually in response to Support requests. Global Administrators can receive a monthly email listing instances in the previous 90 days when Microsoft engineers utilized temporary Just-in-time authorization to access these resources.</td></tr>
<tr title="Microsoft_Azure_CloudforSovereignty/SovereigntyAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudforSovereignty/SovereigntyAsset.svg" alt="Regulated Environment Management" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Regulated Environment Management</td><td></td><td>Microsoft cloud for sovereignty,cloud for sovereignty,landing zone,landing zone configuration,landing zone registration,mcfs,mc4s,policy pack,slz,sovereign,sovereign landing zone,sovereignty,transparency,operational transparency,mcfsov,residency,confidential computing,policy portfolio,Digital Sovereignty,Data Sovereignty,Regulated Industry Cloud Solutions,Data Privacy,Government Data Protection,Azure Data Privacy,Data Policy,Compliance Frameworks,Healthcare,Financial Industry,Government,Public Sector,Regulatory Compliance,Policy Initiatives for Digital Sovereignty,Cloud Policy Management,Azure Policy Initiatives,Cloud Compliance Regulations,Data Sovereignty Policies,rem</td><td>Enables public sector customers to build and digitally transform workloads in the Microsoft Cloud while meeting their compliance, security and policy requirements. This gives customers greater control over their data and increased transparency to the operational and governance processes of the cloud.</td></tr>
<tr title="Microsoft_Azure_CloudforSovereignty/LandingZoneRegistrationsAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudforSovereignty/LandingZoneRegistrationsAsset.svg" alt="Landing Zone Registration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Landing Zone Registration</td><td>microsoft.sovereign/landingzoneregistrations</td><td>lzr, lz, landing, registrations, landing zone, landing zone registrations</td><td>Enables public sector customers to build and digitally transform workloads in the Microsoft Cloud while helping meet their compliance, security and policy requirements. This gives customers greater control over their data and increased transparency to the operational and governance processes of the cloud.</td></tr>
<tr title="Microsoft_Azure_CloudforSovereignty/LandingZoneConfigurationsAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudforSovereignty/LandingZoneConfigurationsAsset.svg" alt="Landing Zone Configuration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Landing Zone Configuration</td><td>microsoft.sovereign/landingzoneconfigurations</td><td>lzc, lz, landing, configurations, landing zone, landing zone configurations</td><td>Enables public sector customers to build and digitally transform workloads in the Microsoft Cloud while helping meet their compliance, security and policy requirements. This gives customers greater control over their data and increased transparency to the operational and governance processes of the cloud.</td></tr>
<tr title="Microsoft_Azure_CloudforSovereignty/LZRegistrationsAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudforSovereignty/LZRegistrationsAsset.svg" alt="Landing Zone Registration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Landing Zone Registration</td><td>microsoft.sovereign/landingzoneaccounts/landingzoneregistrations</td><td>lzr, lz, landing, registrations, landing zone, landing zone registrations</td><td>Enables public sector customers to build and digitally transform workloads in the Microsoft Cloud while helping meet their compliance, security and policy requirements. This gives customers greater control over their data and increased transparency to the operational and governance processes of the cloud.</td></tr>
<tr title="Microsoft_Azure_CloudforSovereignty/LandingZoneAccountsAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudforSovereignty/LandingZoneAccountsAsset.svg" alt="Landing zone accounts" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Landing zone accounts</td><td>microsoft.sovereign/landingzoneaccounts</td><td>Microsoft cloud for sovereignty,cloud for sovereignty,landing zone,landing zone configuration,landing zone registration,mcfs,mc4s,policy pack,slz,sovereign,sovereign landing zone,sovereignty,transparency,operational transparency,mcfsov,residency,confidential computing,policy portfolio</td><td>Landing zone accounts are the entry point for configuring, deploying and managing landing zones.</td></tr>
<tr title="Microsoft_Azure_CloudforSovereignty/LZConfigurationsAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudforSovereignty/LZConfigurationsAsset.svg" alt="Landing Zone Configuration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Landing Zone Configuration</td><td>microsoft.sovereign/landingzoneaccounts/landingzoneconfigurations</td><td>lzc, lz, landing, configurations, landing zone, landing zone configurations</td><td>Enables public sector customers to build and digitally transform workloads in the Microsoft Cloud while helping meet their compliance, security and policy requirements. This gives customers greater control over their data and increased transparency to the operational and governance processes of the cloud.</td></tr>
<tr title="Microsoft_Azure_CloudHSM/CloudHSM"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudHSM/CloudHSM.svg" alt="Azure Cloud HSM" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Cloud HSM</td><td>Microsoft.HardwareSecurityModules/cloudHsmClusters</td><td>Cloud,Cloud HSM, HSM, RSA, EC, AES</td><td>Azure Cloud HSM provides customer-Cloud, single tenant, highly available HSMs to store and manage your cryptographic keys.</td></tr>
<tr title="Microsoft_Azure_CloudNativeTesting/CloudNativeTesting"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudNativeTesting/CloudNativeTesting.svg" alt="Azure Load Testing" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Load Testing</td><td>Microsoft.LoadTestService/LoadTests</td><td>Testing, Azure load testing, Load testing tools, High scale testing, Stress testing, Soak testing, Break point testing, Scalability Testing, Spike Testing, JMeter, Locust, Actionable insights, Performance testing, Resilient applications, URL Testing</td><td>Azure Load Testing is a fully managed load testing service that enables developers and testers to generate high-scale load and reveals actionable insights into app performance, scalability, and capacity.</td></tr>
<tr title="Microsoft_Azure_CloudServices/CloudService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudServices/CloudService.svg" alt="Cloud service (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cloud service (classic)</td><td>microsoft.classicCompute/domainNames</td><td></td><td>Create a cloud service to host your cloud service application. Upload your cloud service package and configuration file to define the operating system and the number of virtual machine instances used to run your application.</td></tr>
<tr title="Microsoft_Azure_CloudServices/Role"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudServices/Role.svg" alt="Cloud service role (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cloud service role (classic)</td><td>microsoft.classiccompute/domainnames/slots/roles</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_CloudServices_Arm/CloudServicesArm"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudServices_Arm/CloudServicesArm.svg" alt="Cloud service (extended support)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cloud service (extended support)</td><td>Microsoft.Compute/cloudServices</td><td>cloud services, arm</td><td>Create a cloud service to host your cloud service application. Upload your cloud service package and configuration file to define the operating system and the number of virtual machine instances used to run your application.</td></tr>
<tr title="Microsoft_Azure_CloudTest/CloudTest"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudTest/CloudTest.svg" alt="1ES" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>1ES</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_CloudTest/CloudTestAccounts"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudTest/CloudTestAccounts.svg" alt="CloudTest Account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>CloudTest Account</td><td>Microsoft.CloudTest/accounts</td><td>cloudtest</td><td></td></tr>
<tr title="Microsoft_Azure_CloudTest/CloudTestBuildCache"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudTest/CloudTestBuildCache.svg" alt="1ES Build Cache" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>1ES Build Cache</td><td>Microsoft.CloudTest/buildcaches</td><td>cloudtest</td><td></td></tr>
<tr title="Microsoft_Azure_CloudTest/HostedPools"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudTest/HostedPools.svg" alt="1ES Hosted Pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>1ES Hosted Pool</td><td>Microsoft.CloudTest/hostedpools</td><td>cloudtest</td><td></td></tr>
<tr title="Microsoft_Azure_CloudTest/CloudTestImages"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudTest/CloudTestImages.svg" alt="1ES Image" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>1ES Image</td><td>Microsoft.CloudTest/images</td><td>cloudtest</td><td></td></tr>
<tr title="Microsoft_Azure_CloudTest/CloudTestPools"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CloudTest/CloudTestPools.svg" alt="CloudTest Pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>CloudTest Pool</td><td>Microsoft.CloudTest/pools</td><td>cloudtest</td><td></td></tr>
<tr title="Microsoft_Azure_CodeOptimizations/CodeOptimizations"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CodeOptimizations/CodeOptimizations.svg" alt="Code Optimizations" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Code Optimizations</td><td></td><td>performance,traces,profiling,app performance,insights,recommendations</td><td>An advanced AI model that helps you identify and resolve performance bottlenecks at the code level in running .NET applications</td></tr>
<tr title="Microsoft_Azure_CodeSigning/CodeSigningAccounts"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CodeSigning/CodeSigningAccounts.svg" alt="Trusted Signing Account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Trusted Signing Account</td><td>Microsoft.CodeSigning/codesigningaccounts</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Trusted Signing is a fully managed end-to-end service for signing. It manages all the keys and certificates through the Certification Authorities that are part of the Microsoft Trusted Root Program and meet WebTrust Certification and the latest industry compliance guidelines.</td></tr>
<tr title="Microsoft_Azure_CommunicationServices/Communication"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CommunicationServices/Communication.svg" alt="Communication Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Communication Service</td><td>Microsoft.Communication/CommunicationServices</td><td>communication, video, voice, call, sms, meeting, phone number, real time communications, webrtc, turn, network traversal, voip, azure, azure communication services, push notifications, push, notifications, real-time communication, real-time</td><td>Create a resource to build communication experiences with SMS, voice, video, and chat.</td></tr>
<tr title="Microsoft_Azure_CommunicationsGatewayExtension/TestLines"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CommunicationsGatewayExtension/TestLines.svg" alt="Communications Gateway Test Line" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Communications Gateway Test Line</td><td>Microsoft.VoiceServices/CommunicationsGateways/TestLines</td><td>communications,gateway,voice,bridge,operator,teams,calling,test,line</td><td>Test Lines for your Azure Communications Gateway.</td></tr>
<tr title="Microsoft_Azure_CommunicationsGatewayExtension/CommunicationsGateways"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CommunicationsGatewayExtension/CommunicationsGateways.svg" alt="Communications Gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Communications Gateway</td><td>Microsoft.VoiceServices/CommunicationsGateways</td><td>communications,gateway,voice,bridge,operator,teams,calling</td><td>Connect Teams to your phone network.</td></tr>
<tr title="Microsoft_Azure_CommunityTraining/CommunityTraining"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CommunityTraining/CommunityTraining.svg" alt="Community Training" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Community Training</td><td>Microsoft.Community/communityTrainings</td><td></td><td>Community Training is an Azure offering to allow skilling and provide employment opportunities to people.</td></tr>
<tr title="Microsoft_Azure_Compute/VirtualMachineScaleSetComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/VirtualMachineScaleSetComputeHub.svg" alt="Virtual machine scale set" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual machine scale set</td><td>Microsoft.Compute/virtualMachineScaleSetsComputehub</td><td>VMSS</td><td>Create a virtual machine scale set to deploy and manage a load balanced set of identical Windows or Linux virtual machines. Use autoscale to automatically scale virtual machine resources in and out.</td></tr>
<tr title="Microsoft_Azure_Compute/VirtualMachineScaleSet"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/VirtualMachineScaleSet.svg" alt="Virtual machine scale set" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual machine scale set</td><td>Microsoft.Compute/virtualMachineScaleSets</td><td>VMSS</td><td>Create a virtual machine scale set to deploy and manage a load balanced set of identical Windows or Linux virtual machines. Use autoscale to automatically scale virtual machine resources in and out.</td></tr>
<tr title="Microsoft_Azure_Compute/VirtualMachineComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/VirtualMachineComputeHub.svg" alt="Virtual machine" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual machine</td><td>Microsoft.Compute/VirtualMachineComputehub</td><td>VM, Windows 10, Ubuntu, ec2, Red Hat, Debian, SUSE, CentOS, Windows Server, arc vm, arc, hci vm, azure stack hci vm, azure stack hci, avs vm, azure vmware solution, scvmm, vmware</td><td>Create a virtual machine that runs Linux or Windows. Select an image from the marketplace or use your own customized image.</td></tr>
<tr title="Microsoft_Azure_Compute/VirtualMachine"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/VirtualMachine.svg" alt="Virtual machine" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual machine</td><td>Microsoft.Compute/VirtualMachines</td><td>VM, Windows 10, Ubuntu, ec2, Red Hat, Debian, SUSE, CentOS, Windows Server, arc vm, arc, hci vm, azure stack hci vm, azure stack hci, avs vm, azure vmware solution, scvmm, vmware</td><td>Create a virtual machine that runs Linux or Windows. Select an image from the marketplace or use your own customized image.</td></tr>
<tr title="Microsoft_Azure_Compute/AllVirtualMachine"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/AllVirtualMachine.svg" alt="Virtual machine" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual machine</td><td>Microsoft.All/virtualMachines</td><td>VM, Windows 10, Ubuntu, ec2, Red Hat, Debian, SUSE, CentOS, Windows Server, arc vm, arc, hci vm, azure stack hci vm, azure stack hci, avs vm, azure vmware solution, scvmm, vmware</td><td>Create a virtual machine that runs Linux or Windows. Select an image from the marketplace or use your own customized image.</td></tr>
<tr title="Microsoft_Azure_Compute/SshKey"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/SshKey.svg" alt="SSH key" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SSH key</td><td>Microsoft.Compute/sshPublicKeys</td><td>ssh, key, sshkey</td><td>SSH is an encrypted connection protocol that allows secure sign-ins over unsecured connections. SSH keys allow secure connection to virtual machines, without having to use passwords.</td></tr>
<tr title="Microsoft_Azure_Compute/ProximityPlacementGroupComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/ProximityPlacementGroupComputeHub.svg" alt="Proximity placement group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Proximity placement group</td><td>Microsoft.Compute/ProximityPlacementGroupsComputehub</td><td>proximity, placement, group, location</td><td>A proximity placement group is a logical grouping used to make sure that Azure compute resources are physically located close to each other. Proximity placement groups are useful for workloads where low latency is a requirement.</td></tr>
<tr title="Microsoft_Azure_Compute/ProximityPlacementGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/ProximityPlacementGroup.svg" alt="Proximity placement group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Proximity placement group</td><td>Microsoft.Compute/ProximityPlacementGroups</td><td>proximity, placement, group, location</td><td>A proximity placement group is a logical grouping used to make sure that Azure compute resources are physically located close to each other. Proximity placement groups are useful for workloads where low latency is a requirement.</td></tr>
<tr title="Microsoft_Azure_Compute/VirtualMachineFlexInstance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/VirtualMachineFlexInstance.svg" alt="Instance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Instance</td><td>microsoft.compute/virtualmachineflexinstances</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Compute/StandbyPoolInstance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/StandbyPoolInstance.svg" alt="Standby pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Standby pool</td><td>microsoft.compute/standbypoolinstance</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Compute/ComputeFleetScaleSet"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/ComputeFleetScaleSet.svg" alt="Virtual machine scale set" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual machine scale set</td><td>microsoft.compute/computefleetscalesets</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Compute/ComputeFleetInstance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/ComputeFleetInstance.svg" alt="Instance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Instance</td><td>microsoft.compute/computefleetinstances</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Compute/DedicatedHostComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/DedicatedHostComputeHub.svg" alt="Host" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Host</td><td></td><td></td><td>Azure Dedicated Hosts provide physical servers isolated to your organization and workloads that host one or more Azure virtual machines.</td></tr>
<tr title="Microsoft_Azure_Compute/DedicatedHost"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/DedicatedHost.svg" alt="Host" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Host</td><td>Microsoft.Compute/hostgroups/hosts</td><td></td><td>Azure Dedicated Hosts provide physical servers isolated to your organization and workloads that host one or more Azure virtual machines.</td></tr>
<tr title="Microsoft_Azure_Compute/DedicatedHostGroupComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/DedicatedHostGroupComputeHub.svg" alt="Host group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Host group</td><td>Microsoft.Compute/hostgroupsComputehub</td><td></td><td>Azure Dedicated Host is a service that provides physical servers able to host one or more virtual machines assigned to one Azure subscription. Dedicated hosts are the same physical servers used in our data centers, provided instead as a directly accessible hardware resource. A host group is a resource that represents a collection of dedicated hosts. You create a host group in a region and an availability zone, and add hosts to it. You can then place VMs directly into your provisioned hosts in whatever configuration best meets your needs.</td></tr>
<tr title="Microsoft_Azure_Compute/DedicatedHostGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/DedicatedHostGroup.svg" alt="Host group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Host group</td><td>Microsoft.Compute/hostgroups</td><td></td><td>Azure Dedicated Host is a service that provides physical servers able to host one or more virtual machines assigned to one Azure subscription. Dedicated hosts are the same physical servers used in our data centers, provided instead as a directly accessible hardware resource. A host group is a resource that represents a collection of dedicated hosts. You create a host group in a region and an availability zone, and add hosts to it. You can then place VMs directly into your provisioned hosts in whatever configuration best meets your needs.</td></tr>
<tr title="Microsoft_Azure_Compute/CapacityReservationGroupComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/CapacityReservationGroupComputeHub.svg" alt="Capacity Reservation Group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Capacity Reservation Group</td><td>Microsoft.Compute/capacityReservationGroupsComputehub</td><td>capacity, reservation</td><td>A capacity reservation group is a collection of capacity reservations. A capacity reservation is used to reserve virtual machine capacity in an Azure region. This reservation provides the same SLA guarantee as virtual machines.</td></tr>
<tr title="Microsoft_Azure_Compute/CapacityReservationGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/CapacityReservationGroup.svg" alt="Capacity Reservation Group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Capacity Reservation Group</td><td>Microsoft.Compute/capacityReservationGroups</td><td>capacity, reservation</td><td>A capacity reservation group is a collection of capacity reservations. A capacity reservation is used to reserve virtual machine capacity in an Azure region. This reservation provides the same SLA guarantee as virtual machines.</td></tr>
<tr title="Microsoft_Azure_Compute/AvailabilitySet"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Compute/AvailabilitySet.svg" alt="Availability set" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Availability set</td><td>Microsoft.Compute/availabilitySets</td><td></td><td>Create an availability set to provide redundancy for your application. Create two or more virtual machines in the availability set to distribute their placement across Azure hardware clusters.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/AdvisorCost"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/AdvisorCost.svg" alt="Recommendations" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recommendations</td><td>Microsoft.ComputeHub/AdvisorCost</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/AdvisorOperationalExcellence"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/AdvisorOperationalExcellence.svg" alt="Recommendations" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recommendations</td><td>Microsoft.ComputeHub/AdvisorOperationalExcellence</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/AdvisorPerformance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/AdvisorPerformance.svg" alt="Recommendations" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recommendations</td><td>Microsoft.ComputeHub/AdvisorPerformance</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/AdvisorReliability"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/AdvisorReliability.svg" alt="Recommendations" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recommendations</td><td>Microsoft.ComputeHub/AdvisorReliability</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/AdvisorSecurity"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/AdvisorSecurity.svg" alt="Recommendations" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recommendations</td><td>Microsoft.ComputeHub/AdvisorSecurity</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/AllResources"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/AllResources.svg" alt="All resources" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>All resources</td><td>Microsoft.ComputeHub/all</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/Backup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/Backup.svg" alt="Backup job" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Backup job</td><td>Microsoft.ComputeHub/Backup</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/ComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/ComputeHub.svg" alt="Compute infrastructure" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Compute infrastructure</td><td>Microsoft.ComputeHub/ComputeHubMain</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/HealthEvents"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/HealthEvents.svg" alt="Health events" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Health events</td><td>Microsoft.ComputeHub/HealthEvents</td><td>UX UI design patterns sample extension ibiza consistency</td><td>No resource has availability related health events.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/LinuxOSType"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/LinuxOSType.svg" alt="Linux OS" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Linux OS</td><td>Microsoft.ComputeHub/LinuxOSType</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/MicrosoftDefenderFreeTrialSubscription"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/MicrosoftDefenderFreeTrialSubscription.svg" alt="Microsoft defender" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft defender</td><td>Microsoft.ComputeHub/MicrosoftDefenderFreeTrialSubscription</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/MicrosoftDefenderStandardSubscription"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/MicrosoftDefenderStandardSubscription.svg" alt="Microsoft defender" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft defender</td><td>Microsoft.ComputeHub/MicrosoftDefenderStandardSubscription</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/Outages"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/Outages.svg" alt="Outages" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Outages</td><td>Microsoft.ComputeHub/Outages</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/PowerStateDeallocated"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/PowerStateDeallocated.svg" alt="Power states" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Power states</td><td>Microsoft.ComputeHub/PowerStateDeallocated</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/PowerStateRunning"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/PowerStateRunning.svg" alt="Power states" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Power states</td><td>Microsoft.ComputeHub/PowerStateRunning</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/PowerStateStopped"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/PowerStateStopped.svg" alt="Power states" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Power states</td><td>Microsoft.ComputeHub/PowerStateStopped</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/ProvisioningStateFailedResources"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/ProvisioningStateFailedResources.svg" alt="Provisioning states" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Provisioning states</td><td>Microsoft.ComputeHub/ProvisioningStateFailedResources</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/ProvisioningStateSucceededResources"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/ProvisioningStateSucceededResources.svg" alt="Provisioning states" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Provisioning states</td><td>Microsoft.ComputeHub/ProvisioningStateSucceededResources</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ComputeHub/WindowsOSType"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ComputeHub/WindowsOSType.svg" alt="Windows OS" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Windows OS</td><td>Microsoft.ComputeHub/WindowsOSType</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Create VMs that scale, optimize cost and performance, and support a mix of sizes, zones, and regions—all easily managed in one place.</td></tr>
<tr title="Microsoft_Azure_ConfidentialLedger/ConfidentialLedger"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ConfidentialLedger/ConfidentialLedger.svg" alt="Confidential Ledger" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Confidential Ledger</td><td>Microsoft.ConfidentialLedger/ledgers</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ConfidentialLedger/ManagedCCF"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ConfidentialLedger/ManagedCCF.svg" alt="Managed CCF App" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Managed CCF App</td><td>Microsoft.ConfidentialLedger/ManagedCCFs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ConfigManager/ConfigManager"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ConfigManager/ConfigManager.svg" alt="Solution Manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Solution Manager</td><td></td><td>Solution manager;Solutions manager</td><td></td></tr>
<tr title="Microsoft_Azure_ContainerRegistries/RegistryResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerRegistries/RegistryResource.svg" alt="Container registry" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Container registry</td><td>Microsoft.ContainerRegistry/registries</td><td></td><td>Build, store, secure, scan, replicate, and manage container images and artifacts with a fully managed, geo-replicated instance of OCI distribution. Connect across environments, including Azure Kubernetes Service and Azure Red Hat OpenShift, and across Azure services like App Service, Machine Learning, and Batch.</td></tr>
<tr title="Microsoft_Azure_ContainerRegistries/ReplicationResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerRegistries/ReplicationResource.svg" alt="Container registry replication" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Container registry replication</td><td>Microsoft.ContainerRegistry/registries/replications</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ContainerRegistries/ScopeMapResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerRegistries/ScopeMapResource.svg" alt="Container registry scope map" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Container registry scope map</td><td>Microsoft.ContainerRegistry/registries/scopeMaps</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ContainerRegistries/TokenResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerRegistries/TokenResource.svg" alt="Container registry token" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Container registry token</td><td>Microsoft.ContainerRegistry/registries/tokens</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ContainerRegistries/WebhookResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerRegistries/WebhookResource.svg" alt="Container registry webhook" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Container registry webhook</td><td>Microsoft.ContainerRegistry/registries/webhooks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ContainerService/ManagedClustersGitOpsConfiguration"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerService/ManagedClustersGitOpsConfiguration.svg" alt="GitOps configuration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>GitOps configuration</td><td>Microsoft.ContainerService/managedClusters/Microsoft.KubernetesConfiguration/fluxConfigurations</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ContainerService/ConnectedClustersGitOpsConfiguration"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerService/ConnectedClustersGitOpsConfiguration.svg" alt="GitOps configuration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>GitOps configuration</td><td>Microsoft.Kubernetes/connectedClusters/Microsoft.KubernetesConfiguration/fluxConfigurations</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ContainerService/ManagedClusterNamespaces"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerService/ManagedClusterNamespaces.svg" alt="Kubernetes namespace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes namespace</td><td>Microsoft.ContainerService/managedClusters/Microsoft.KubernetesConfiguration/namespaces</td><td>aks, kubernetes, k8s, arc, namespace, namespaces</td><td></td></tr>
<tr title="Microsoft_Azure_ContainerService/ConnectedClusterNamespaces"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerService/ConnectedClusterNamespaces.svg" alt="Kubernetes - Azure Arc namespace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes - Azure Arc namespace</td><td>Microsoft.Kubernetes/connectedClusters/Microsoft.KubernetesConfiguration/namespaces</td><td>aks, kubernetes, k8s, arc, namespace, namespaces</td><td></td></tr>
<tr title="Microsoft_Azure_ContainerService/ContainerGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerService/ContainerGroup.svg" alt="Container instances" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Container instances</td><td>Microsoft.ContainerInstance/containerGroups</td><td>ACI, docker, group, kubernetes, k8s, virtual, node, kubelet, serverless</td><td>Use Azure Container Instances to create and manage Docker containers in Azure without having to set up virtual machines or manage additional infrastructure. To get started, create a container in Azure Container Instances.</td></tr>
<tr title="Microsoft_Azure_ContainerService/ManagedClusters"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerService/ManagedClusters.svg" alt="Kubernetes service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes service</td><td>Microsoft.ContainerService/managedClusters</td><td>aks, containers, docker, k8s, arc, Managed, connected, serverless, azure kubernetes</td><td>Use Azure Kubernetes Service to create and manage Kubernetes clusters. Azure will handle cluster operations, including creating, scaling, and upgrading, freeing up developers to focus on their application. To get started, create a cluster with Azure Kubernetes Service.</td></tr>
<tr title="Microsoft_Azure_ContainerService/KubernetesClusterExtensionsChild"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerService/KubernetesClusterExtensionsChild.svg" alt="Kubernetes service extension" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes service extension</td><td>microsoft.containerservice/managedclusters/microsoft.kubernetesconfiguration/extensions</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ContainerService/KubernetesClusterExtensions"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerService/KubernetesClusterExtensions.svg" alt="Kubernetes service extension" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes service extension</td><td>microsoft.kubernetesconfiguration/extensions</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ContainerService/Fleets"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerService/Fleets.svg" alt="Kubernetes fleet manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes fleet manager</td><td>microsoft.containerservice/fleets</td><td>aks, kubernetes, k8s, fleet, fleets</td><td>Kubernetes Fleet Managers enables multi-cluster and at-scale scenarios for Kubernetes Service clusters. To get started, create a Kubernetes Fleet Manager resource.</td></tr>
<tr title="Microsoft_Azure_ContainerService/AroClusters"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerService/AroClusters.svg" alt="Azure Red Hat OpenShift cluster" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Red Hat OpenShift cluster</td><td>Microsoft.RedHatOpenShift/OpenShiftClusters</td><td>aro, kubernetes, k8s, open shift, red hat</td><td>Azure Red Hat OpenShift provides highly available, fully managed OpenShift clusters on demand, monitored and operated jointly by Microsoft and Red Hat.</td></tr>
<tr title="Microsoft_Azure_ContainerStorage/ContainerStorage"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ContainerStorage/ContainerStorage.svg" alt="Container storage" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Container storage</td><td>Microsoft.ContainerStorage/pools</td><td>Container storage</td><td>Container storage asset description placeholder</td></tr>
<tr title="Microsoft_Azure_Copilot/CopilotSettingsAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Copilot/CopilotSettingsAsset.svg" alt="Copilot in Azure admin center" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Copilot in Azure admin center</td><td></td><td></td><td>Microsoft Copilot in Azure is an AI-powered tool to help you do more with Azure. With Microsoft Copilot in Azure, you can gain new insights, discover more benefits of the cloud, and orchestrate across both cloud and edge.</td></tr>
<tr title="Microsoft_Azure_CostManagement/Exports"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CostManagement/Exports.svg" alt="Cost exports" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cost exports</td><td></td><td>scheduled exports, storage, allocation, Amazon Web Services, amortization, amortized, AWS, chargeback, charges, clouds, connectors, costs, cross cloud, download usage and charges, invoices, markup, marketplace, meters, products, purchases, refunds, reporting, reports, reservations, reserved instances, RIs, services, spending, usage, xcloud, x cloud</td><td></td></tr>
<tr title="Microsoft_Azure_CostManagement/CostManagement"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CostManagement/CostManagement.svg" alt="Cost Management" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cost Management</td><td></td><td>alerts, allocation, Amazon Web Services, amortization, amortized, analytics, analyze, anomalies, AWS, budgets, chargeback, charges, charts, clouds, connectors, costs, cross cloud, explorer, governance, insights, invoices, markup, marketplace, meters, metrics, monitoring, notifications, optimization, optimize, optimizing, products, purchases, refunds, reporting, reports, reservations, reserved instances, RIs, scheduled emails, scheduled exports, services, spending, usage, views, xcloud, x cloud, tag, tags, inheritance</td><td></td></tr>
<tr title="Microsoft_Azure_CostManagement/CostAnalysis"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CostManagement/CostAnalysis.svg" alt="Cost analysis" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cost analysis</td><td></td><td>alerts, allocation, Amazon Web Services, amortization, amortized, analytics, analyze, anomalies, AWS, budgets, chargeback, charges, charts, clouds, connectors, costs, cross cloud, download usage and charges, emails, explorer, insights, invoices, markup, marketplace, meters, metrics, monitoring, notifications, optimization, optimize, optimizing, products, purchases, refunds, reporting, reports, reservations, reserved instances, RIs, scheduled emails, scheduled exports, services, spending, usage, views, xcloud, x cloud</td><td></td></tr>
<tr title="Microsoft_Azure_CostManagement/CostAlerts"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CostManagement/CostAlerts.svg" alt="Cost alerts" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cost alerts</td><td></td><td>alerts, Amazon Web Services, anomalies, AWS, budgets, charges, clouds, costs, cross cloud, emails, invoices, markup, marketplace, meters, metrics, monitoring, notifications, optimization, optimize, optimizing, products, purchases, refunds, reporting, reports, reservations, reserved instances, RIs, scheduled emails, scheduled exports, services, spending, usage, views, xcloud, x cloud</td><td></td></tr>
<tr title="Microsoft_Azure_CostManagement/Connectors"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CostManagement/Connectors.svg" alt="Cost Management for AWS" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cost Management for AWS</td><td></td><td>Amazon Web Services, connectors, alerts, allocation, Amazon Web Services, amortization, amortized, analytics, analyze, anomalies, AWS, budgets, chargeback, charges, charts, clouds, connectors, costs, cross cloud, emails, explorer, governance, insights, invoices, markup, marketplace, meters, metrics, monitoring, notifications, optimization, optimize, optimizing, products, purchases, refunds, reporting, reports, reservations, reserved instances, RIs, scheduled emails, scheduled exports, services, spending, usage, views, xcloud, x cloud</td><td></td></tr>
<tr title="Microsoft_Azure_CostManagement/Budgets"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CostManagement/Budgets.svg" alt="Budgets" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Budgets</td><td></td><td>alerts, Amazon Web Services, amortization, amortized, AWS, budgets, charges, clouds, connectors, costs, cross cloud, emails, governance, marketplace, meters, metrics, monitoring, notifications, products, purchases, refunds, reservations, reserved instances, RIs, services, spending, xcloud, x cloud</td><td></td></tr>
<tr title="Microsoft_Azure_CreateUIDef/CustomTemplate"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CreateUIDef/CustomTemplate.svg" alt="Deploy a custom template" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Deploy a custom template</td><td></td><td>Deploy to Azure, template deployments, templates, template, deploy, deployment, ARM template, Azure template, custom deployment</td><td></td></tr>
<tr title="Microsoft_Azure_CreateUIDef/DeploymentStack"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CreateUIDef/DeploymentStack.svg" alt="Deployment Stack" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Deployment Stack</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_CreateUIDef/PortalExtensionDeployments"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CreateUIDef/PortalExtensionDeployments.svg" alt="Extension Deployment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Extension Deployment</td><td>Microsoft.PortalServices/Extensions/Deployments</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_CreateUIDef/PortalExtensions"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CreateUIDef/PortalExtensions.svg" alt="Portal Extension" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Portal Extension</td><td>Microsoft.PortalServices/Extensions</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_CreateUIDef/PortalExtensionSlots"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CreateUIDef/PortalExtensionSlots.svg" alt="Extension Slot" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Extension Slot</td><td>Microsoft.PortalServices/Extensions/Slots</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_CreateUIDef/PortalExtensionVersions"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CreateUIDef/PortalExtensionVersions.svg" alt="Extension Version" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Extension Version</td><td>Microsoft.PortalServices/Extensions/Versions</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_CtsExtension/CloudTransferPipeline"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CtsExtension/CloudTransferPipeline.svg" alt="Pipeline" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Pipeline</td><td>Microsoft.AzureDataTransfer/Pipelines</td><td>ADT azure data transfer cloud security</td><td>Utilize Azure Data Transfer to securely transfer data between various environments.</td></tr>
<tr title="Microsoft_Azure_CtsExtension/CloudTransferFlow"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CtsExtension/CloudTransferFlow.svg" alt="Flow" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Flow</td><td>Microsoft.AzureDataTransfer/Connections/Flows</td><td>ADT azure data transfer cloud security</td><td>Utilize Azure Data Transfer to securely transfer data between various environments.</td></tr>
<tr title="Microsoft_Azure_CtsExtension/CloudTransferConnection"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CtsExtension/CloudTransferConnection.svg" alt="Connection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Connection</td><td>Microsoft.AzureDataTransfer/Connections</td><td>ADT azure data transfer cloud security</td><td>Utilize Azure Data Transfer to securely transfer data between various environments.</td></tr>
<tr title="Microsoft_Azure_CtsExtension/CloudTransferService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CtsExtension/CloudTransferService.svg" alt="Azure Data Transfer" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Data Transfer</td><td></td><td>ADT azure data transfer cloud security</td><td>Utilize Azure Data Transfer to securely transfer data between various environments.</td></tr>
<tr title="Microsoft_Azure_CustomerHub/Lighthouse"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CustomerHub/Lighthouse.svg" alt="Azure Lighthouse" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Lighthouse</td><td>Microsoft.ManagedServices/registrationDefinitions</td><td>MSP,Managed Service Provider,Managed Services,Service Provider,Customer,Azure Lighthouse,Lighthouse</td><td></td></tr>
<tr title="Microsoft_Azure_CustomerHub/MyCustomers"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CustomerHub/MyCustomers.svg" alt="My customers" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>My customers</td><td></td><td>MSP,Managed Service Provider,Managed Services,Service Provider,Customer,Azure Lighthouse,Lighthouse</td><td></td></tr>
<tr title="Microsoft_Azure_CustomerHub/ServiceProviders"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_CustomerHub/ServiceProviders.svg" alt="Service providers" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service providers</td><td></td><td>MSP,Managed Service Provider,Managed Services,Service Provider,Azure Lighthouse,Lighthouse</td><td></td></tr>
<tr title="Microsoft_Azure_Dashboard/AzureDashboardGrafanaResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Dashboard/AzureDashboardGrafanaResource.svg" alt="Azure Managed Grafana" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Managed Grafana</td><td>Microsoft.Dashboard/grafana</td><td>Azure, Managed, Grafana, Azure Managed Grafana</td><td>Run a fully managed instance of Grafana that's automatically connected to your Azure resources.</td></tr>
<tr title="Microsoft_Azure_DatabaseInsights/DatabaseWatcher"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DatabaseInsights/DatabaseWatcher.svg" alt="Database watcher" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Database watcher</td><td>Microsoft.DatabaseWatcher/watchers</td><td>database, monitor, azure sql, watcher, dbwatcher, sql monitor</td><td>Database watcher is a managed monitoring solution for database services in the Azure SQL family. Create a watcher to monitor your Azure SQL estate in depth and with low latency.</td></tr>
<tr title="Microsoft_Azure_Databricks/AccessConnector"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Databricks/AccessConnector.svg" alt="Access Connector for Azure Databricks" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Access Connector for Azure Databricks</td><td>Microsoft.Databricks/accessConnectors</td><td>Databricks Access Connectors</td><td>Unity Catalog provides unified governance for all data and AI assets in your Lakehouse. Unity Catalog can be configured to use an Azure managed identity to access storage containers on behalf of Unity Catalog users. Managed identities provide an identity for applications to use when they connect to resources that support Microsoft Entra ID authentication.</td></tr>
<tr title="Microsoft_Azure_Databricks/Workspace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Databricks/Workspace.svg" alt="Azure Databricks Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Databricks Service</td><td>Microsoft.Databricks/workspaces</td><td>Databrick,Databricks,Data Bricks,Spark,AzureSpark,Apache Spark,ML,MLib,Graphx,Fast Spark,Azure Spark,Streaming,Real-time,Real time,SparkBI</td><td>Unlock insights from all your data and build artificial intelligence (AI) solutions with Azure Databricks, set up your Apache Spark environment in minutes, autoscale, and collaborate on shared projects in an interactive workspace.</td></tr>
<tr title="Microsoft_Azure_DataFactory/Activity"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataFactory/Activity.svg" alt="Activity" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Activity</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DataFactory/Table"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataFactory/Table.svg" alt="Table" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Table</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DataFactory/DataFactory"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataFactory/DataFactory.svg" alt="Data factory" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data factory</td><td>Microsoft.DataFactory/dataFactories</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DataFactory/DataFactoryv2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataFactory/DataFactoryv2.svg" alt="Data factory (V2)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data factory (V2)</td><td>Microsoft.DataFactory/factories</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DataFactory/Pipeline"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataFactory/Pipeline.svg" alt="Pipeline" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Pipeline</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DataFactory/Slice"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataFactory/Slice.svg" alt="Slice" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Slice</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DataLakeAnalytics/KonaAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataLakeAnalytics/KonaAccount.svg" alt="Data Lake Analytics" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data Lake Analytics</td><td>Microsoft.DataLakeAnalytics/accounts</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DataLakeStore/CaboAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataLakeStore/CaboAccount.svg" alt="Data Lake Storage Gen1" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data Lake Storage Gen1</td><td>Microsoft.DataLakeStore/accounts</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DataProtection/ResourceGuardResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataProtection/ResourceGuardResource.svg" alt="Resource Guard" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource Guard</td><td>Microsoft.DataProtection/resourceGuards</td><td>Resource, Guard, Backup, Recovery, Restore, Multi-user, Authorization, MUA</td><td>Resource Guard lets you secure critical operations on Recovery Services vaults associated with it, giving you enhanced protection against data loss. Get started by creating a Resource Guard.</td></tr>
<tr title="Microsoft_Azure_DataProtection/DataProtectionResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataProtection/DataProtectionResource.svg" alt="Backup vault" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Backup vault</td><td>Microsoft.DataProtection/BackupVaults</td><td>Backup, Restore, Virtual machine backup, Recovery Services Vaults, VM backup, BCDR, Protection</td><td>Data protection strategy keeps your business running when unexpected events occur. Get started by creating a Backup vault.</td></tr>
<tr title="Microsoft_Azure_DataProtection/BackupCenter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataProtection/BackupCenter.svg" alt="Backup center" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Backup center</td><td></td><td>Backup, Restore, Virtual machine backup, Recovery Services Vaults, VM backup, BCDR, Protection</td><td></td></tr>
<tr title="Microsoft_Azure_DataShare/DataShare"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataShare/DataShare.svg" alt="Data Share" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data Share</td><td>Microsoft.DataShare/accounts</td><td>Share</td><td>Share data simply and safely from multiple sources with other organizations. Easily control what you share, who receives your data, and the terms of use. Data Share provides full visibility into your data sharing relationships with a user-friendly interface. Share data in just a few clicks, or build your own application using REST APIs.</td></tr>
<tr title="Microsoft_Azure_DataShare/InvitationsBrowse"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DataShare/InvitationsBrowse.svg" alt="Data Share Invitation" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data Share Invitation</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Dedicated_ClusterStor/ClusterStor"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Dedicated_ClusterStor/ClusterStor.svg" alt="ClusterStor" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>ClusterStor</td><td>Microsoft.ClusterStor/nodes</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_DetonationService/DetonationChamber"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DetonationService/DetonationChamber.svg" alt="Security Detonation Chamber" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Security Detonation Chamber</td><td>Microsoft.SecurityDetonation/chambers</td><td>Daas, Sonar, Sonar DaaS, Detonation</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_DevCenter/Project"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevCenter/Project.svg" alt="Project" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Project</td><td>Microsoft.DevCenter/projects</td><td>Microsoft Dev Box,Azure Deployment Environments</td><td>Create a project to manage team level settings and empower development teams to self-serve dev boxes and environments.</td></tr>
<tr title="Microsoft_Azure_DevCenter/Pools"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevCenter/Pools.svg" alt="Pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Pool</td><td>Microsoft.DevCenter/projects/pools</td><td>Microsoft Dev Box,Azure Deployment Environments</td><td>Create a dev box pool to allow developers to self-serve developer workstations using pre-approved templates and settings.</td></tr>
<tr title="Microsoft_Azure_DevCenter/Plan"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevCenter/Plan.svg" alt="Dev center plan" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Dev center plan</td><td>Microsoft.DevCenter/plans</td><td>Microsoft Dev Box,Azure Deployment Environments</td><td>Create a dev center plan to centrally manage enterprise dev centers and projects.</td></tr>
<tr title="Microsoft_Azure_DevCenter/NetworkConnection"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevCenter/NetworkConnection.svg" alt="Network connection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network connection</td><td>Microsoft.DevCenter/networkconnections</td><td>Microsoft Dev Box</td><td>Create a network connection to enable dev boxes to access your virtual network.</td></tr>
<tr title="Microsoft_Azure_DevCenter/EnvironmentsService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevCenter/EnvironmentsService.svg" alt="Azure Deployment Environment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Deployment Environment</td><td></td><td>Dev centers,Projects</td><td>Enable your team to quickly spin up app infrastructure with project-based templates.</td></tr>
<tr title="Microsoft_Azure_DevCenter/DevCenterService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevCenter/DevCenterService.svg" alt="Microsoft Dev Box" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Dev Box</td><td></td><td>Dev centers,Projects,Network connections</td><td>Streamline development with secure, ready-to-code workstations in the cloud.</td></tr>
<tr title="Microsoft_Azure_DevCenter/DevCenter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevCenter/DevCenter.svg" alt="Dev center" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Dev center</td><td>Microsoft.DevCenter/devcenters</td><td>Microsoft Dev Box,Azure Deployment Environments</td><td>Create a dev center to centrally manage images, workstation sizes, environment templates, and networks made available to your development teams.</td></tr>
<tr title="Microsoft_Azure_DevCenter/DevBoxDefinitions"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevCenter/DevBoxDefinitions.svg" alt="Dev Box definition" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Dev Box definition</td><td>Microsoft.DevCenter/devcenters/devboxdefinitions</td><td>Microsoft Dev Box,Azure Deployment Environments</td><td>Create a dev box definition to provide the configuration details for the dev boxes that are created within dev box pools.</td></tr>
<tr title="Microsoft_Azure_DevCenter/CodeStudioService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevCenter/CodeStudioService.svg" alt="Microsoft Code Studio" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Code Studio</td><td></td><td>Plans,Dev centers,Projects</td><td>Streamline development with Microsoft Code Studio.</td></tr>
<tr title="Microsoft_Azure_DeviceRegistry/schemaRegistries"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DeviceRegistry/schemaRegistries.svg" alt="IoT Schema Registry" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IoT Schema Registry</td><td>microsoft.deviceregistry/schemaRegistries</td><td>IoT schema registry management</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_DeviceRegistry/devices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DeviceRegistry/devices.svg" alt="IoT Device" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IoT Device</td><td>microsoft.deviceregistry/devices</td><td>IoT device management</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_DeviceRegistry/assetEndpointProfiles"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DeviceRegistry/assetEndpointProfiles.svg" alt="IoT Asset Endpoint Profile" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IoT Asset Endpoint Profile</td><td>microsoft.deviceregistry/assetEndpointProfiles</td><td>IoT asset endpoint profile</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_DeviceRegistry/assets"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DeviceRegistry/assets.svg" alt="IoT Asset" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IoT Asset</td><td>microsoft.deviceregistry/assets</td><td>IoT asset management</td><td>An asset is a physical or logical entity that represents a device, machine, system, or process. When you create an asset, it will appear here and can be managed from this table.</td></tr>
<tr title="Microsoft_Azure_DeviceUpdate/updateAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DeviceUpdate/updateAccount.svg" alt="Device Update Account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Device Update Account</td><td>Microsoft.DeviceUpdate/updateAccounts</td><td>Azure Device Update, IoT Devices, Device Management</td><td>Device Update Accounts allow you to manage the deployment of updates to your IoT Devices.</td></tr>
<tr title="Microsoft_Azure_DeviceUpdate/update"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DeviceUpdate/update.svg" alt="Device Update" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Device Update</td><td>Microsoft.DeviceUpdate/updateAccounts/updates</td><td>Azure Device Update, IoT Devices, Device Management</td><td>Device Updates represent updates to be deployed to your devices.</td></tr>
<tr title="Microsoft_Azure_DeviceUpdate/deviceClass"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DeviceUpdate/deviceClass.svg" alt="Device Update Device Class" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Device Update Device Class</td><td>Microsoft.DeviceUpdate/updateAccounts/deviceClasses</td><td>Azure Device Update, IoT Devices, Device Management</td><td>Device Update Device Classes identify the best possible update for your devices based on their properties.</td></tr>
<tr title="Microsoft_Azure_DeviceUpdate/deployment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DeviceUpdate/deployment.svg" alt="Device Update Deployment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Device Update Deployment</td><td>Microsoft.DeviceUpdate/updateAccounts/deployments</td><td>Azure Device Update, IoT Devices, Device Management</td><td>Device Update Deployments record deployment of updates to your devices.</td></tr>
<tr title="Microsoft_Azure_DeviceUpdate/agent"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DeviceUpdate/agent.svg" alt="Device Update Agent" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Device Update Agent</td><td>Microsoft.DeviceUpdate/updateAccounts/agents</td><td>Azure Device Update, IoT Devices, Device Management</td><td>Device Update Agents manage deployment of updates to your devices.</td></tr>
<tr title="Microsoft_Azure_DeviceUpdate/activeDeployment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DeviceUpdate/activeDeployment.svg" alt="Device Update Active Deployment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Device Update Active Deployment</td><td>Microsoft.DeviceUpdate/updateAccounts/activeDeployments</td><td>Azure Device Update, IoT Devices, Device Management</td><td>Device Update Active Deployments monitor deployment of updates to your devices.</td></tr>
<tr title="Microsoft_Azure_DevOpsInfrastructure/ManagedDevOpsPools"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevOpsInfrastructure/ManagedDevOpsPools.svg" alt="Managed DevOps Pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Managed DevOps Pool</td><td>Microsoft.DevOpsInfrastructure/pools</td><td>DevOps,Dev Centers,Projects</td><td>Managed DevOps Pools that meet your team needs.</td></tr>
<tr title="Microsoft_Azure_DevTestLab/CustomImage"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevTestLab/CustomImage.svg" alt="Custom image" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Custom image</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DevTestLab/DevTestLab"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevTestLab/DevTestLab.svg" alt="DevTest Lab" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>DevTest Lab</td><td>Microsoft.DevTestLab/labs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DevTestLab/MyLabVms"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevTestLab/MyLabVms.svg" alt="Virtual machine" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual machine</td><td>Microsoft.DevTestLab/labs/virtualMachines</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DevTunnels/devtunnels"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DevTunnels/devtunnels.svg" alt="Dev Tunnels Domain" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Dev Tunnels Domain</td><td>microsoft.devtunnels/tunnelplans</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DigitalTwins/digitaltwinsInstances"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DigitalTwins/digitaltwinsInstances.svg" alt="Azure Digital Twins" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Digital Twins</td><td>Microsoft.DigitalTwins/digitalTwinsInstances</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/Snapshot"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/Snapshot.svg" alt="Snapshot" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Snapshot</td><td>Microsoft.Compute/snapshots</td><td></td><td>Managed snapshots are a full point-in-time copy of a VM managed disk. Take a snapshot of a managed disk for backup or create a managed disk from the snapshot and attach it to a test virtual machine to troubleshoot.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/SharedImageGallery"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/SharedImageGallery.svg" alt="Azure compute gallery" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure compute gallery</td><td>Microsoft.Compute/galleries</td><td>shared image gallery sig gallery</td><td>Azure compute galleries help you organize your custom managed images, share images with users, and replicate images to multiple regions.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/RestorePointCollection"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/RestorePointCollection.svg" alt="Restore Point Collection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Restore Point Collection</td><td>Microsoft.Compute/restorePointCollections</td><td></td><td>Restore point collections are the ARM resource which contains the restore points specific to a VM and each restore point contains disk restore points for each included disk.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/RestorePoint"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/RestorePoint.svg" alt="Restore Point" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Restore Point</td><td>Microsoft.Compute/restorePointCollections/restorePoints</td><td></td><td>Restore points store the VM configuration and point-in-time crash (if the VM is shutdown) or application consistent snapshot for all managed disks attached to an Azure virtual machine.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/ImageVersionComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/ImageVersionComputeHub.svg" alt="VM image version" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VM image version</td><td></td><td></td><td>A VM image version can be used to create a VM when using an Azure compute gallery. You can create a VM in any region where the VM image version is replicated.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/ImageVersion"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/ImageVersion.svg" alt="VM image version" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VM image version</td><td>Microsoft.Compute/galleries/images/versions</td><td>vm image version</td><td>A VM image version can be used to create a VM when using an Azure compute gallery. You can create a VM in any region where the VM image version is replicated.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/ImageTemplate"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/ImageTemplate.svg" alt="Image template" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Image template</td><td>Microsoft.VirtualMachineImages/imageTemplates</td><td>image template</td><td>Azure image builder simplifies the image customization pipeline. Provide a simple configuration describing your image and the image is built then distributed to a VM image version in Azure compute gallery, a managed image, or a storage blob (VHD) in a storage account.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/ImageComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/ImageComputeHub.svg" alt="Image" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Image</td><td>Microsoft.Compute/imagesComputehub</td><td></td><td>Managed images can be used to deploy virtual machines and virtual machine scale sets. The image contains a list of managed blobs and metadata necessary for creating virtual machines.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/Image"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/Image.svg" alt="Image" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Image</td><td>Microsoft.Compute/images</td><td></td><td>Managed images can be used to deploy virtual machines and virtual machine scale sets. The image contains a list of managed blobs and metadata necessary for creating virtual machines.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/ImageDefinitionComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/ImageDefinitionComputeHub.svg" alt="VM image definition" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VM image definition</td><td>Microsoft.Compute/galleries/imagesComputehub</td><td>vm image definition</td><td>VM image definitions are defined within an Azure compute gallery and carry information about the image and requirements for using it. A VM image definition may have one or more VM image versions.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/ImageDefinition"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/ImageDefinition.svg" alt="VM image definition" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VM image definition</td><td>Microsoft.Compute/galleries/images</td><td>vm image definition</td><td>VM image definitions are defined within an Azure compute gallery and carry information about the image and requirements for using it. A VM image definition may have one or more VM image versions.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/GalleryApplicationVersion"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/GalleryApplicationVersion.svg" alt="VM application version" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VM application version</td><td>Microsoft.Compute/galleries/applications/versions</td><td></td><td>VM application versions can be deployed to virtual machines and virtual machine scale sets. The application package can be easily replicated to Azure regions around the world and managed through versions.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/GalleryApplication"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/GalleryApplication.svg" alt="VM application definition" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VM application definition</td><td>Microsoft.Compute/galleries/applications</td><td></td><td>VM application definitions are created within a gallery and carry information about the application and requirements for using it internally. This includes the operating system type for the VM application versions contained within the application definition.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/DiskEncryptionSetComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/DiskEncryptionSetComputeHub.svg" alt="Disk Encryption Set" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Disk Encryption Set</td><td></td><td></td><td>Disk encryption sets allow you to manage encryption keys using server-side encryption for managed disks.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/DiskEncryptionSet"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/DiskEncryptionSet.svg" alt="Disk Encryption Set" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Disk Encryption Set</td><td>Microsoft.Compute/diskEncryptionSets</td><td></td><td>Disk encryption sets allow you to manage encryption keys using server-side encryption for managed disks.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/DiskAccess"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/DiskAccess.svg" alt="Disk Access" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Disk Access</td><td>Microsoft.Compute/diskAccesses</td><td></td><td>Disk accesses give you control over the networks that can access data on your managed disks and snapshots.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/DiskComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/DiskComputeHub.svg" alt="Disk" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Disk</td><td></td><td></td><td>Azure managed disks are block-level storage volumes that are managed by Azure and used with Azure virtual machines. Managed disks are like a physical disk in an on-premises server but, virtualized.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/Disk"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/Disk.svg" alt="Disk" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Disk</td><td>Microsoft.Compute/disks</td><td></td><td>Azure managed disks are block-level storage volumes that are managed by Azure and used with Azure virtual machines. Managed disks are like a physical disk in an on-premises server but, virtualized.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/CommunityImageComputeHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/CommunityImageComputeHub.svg" alt="Community image" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Community image</td><td>Microsoft.Compute/locations/communityGalleries/imagesComputehub</td><td></td><td>Community images are VM image definitions which are shared publicly with everyone through Azure compute gallery's community gallery feature.</td></tr>
<tr title="Microsoft_Azure_DiskMgmt/CommunityImage"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DiskMgmt/CommunityImage.svg" alt="Community image" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Community image</td><td>Microsoft.Compute/locations/communityGalleries/images</td><td></td><td>Community images are VM image definitions which are shared publicly with everyone through Azure compute gallery's community gallery feature.</td></tr>
<tr title="Microsoft_Azure_DMS/Dms"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DMS/Dms.svg" alt="Azure Database Migration Service (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Database Migration Service (classic)</td><td>Microsoft.DataMigration/services</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DMS/DmsProject"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DMS/DmsProject.svg" alt="Azure Database Migration Project" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Database Migration Project</td><td>Microsoft.DataMigration/services/projects</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DMS/DmsV2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DMS/DmsV2.svg" alt="Azure Database Migration Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Database Migration Service</td><td>microsoft.datamigration/sqlmigrationservices</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_DNS/DnsZone"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DNS/DnsZone.svg" alt="DNS zone" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>DNS zone</td><td>Microsoft.Network/dnsZones</td><td>Public DNS zone</td><td>Azure DNS is a hosting service for DNS domains that provides name resolution by using Microsoft Azure infrastructure. By hosting your domains in Azure, you can manage your DNS records by using the same credentials, APIs, tools, and billing as your other Azure services.</td></tr>
<tr title="Microsoft_Azure_DNS/TrafficManager"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DNS/TrafficManager.svg" alt="Traffic Manager profile" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Traffic Manager profile</td><td>Microsoft.Network/trafficmanagerprofiles</td><td></td><td>Azure Traffic Manager is a DNS-based traffic load balancer. This service allows you to distribute traffic to your public facing applications across the global Azure regions. Traffic Manager also provides your public endpoints with high availability and quick responsiveness.</td></tr>
<tr title="Microsoft_Azure_DNSManagedResolver/DnsForwardingRulesets"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DNSManagedResolver/DnsForwardingRulesets.svg" alt="DNS forwarding ruleset" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>DNS forwarding ruleset</td><td>Microsoft.Network/dnsForwardingRulesets</td><td>DNS Private Resolver Forwarding Ruleset</td><td>Define conditional forwarding rules for DNS traffic across multiple Azure Private Resolver or Virtual Network instances with Private Resolver Endpoints enabled.</td></tr>
<tr title="Microsoft_Azure_DNSManagedResolver/DnsManagedResolver"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DNSManagedResolver/DnsManagedResolver.svg" alt="DNS private resolver" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>DNS private resolver</td><td>Microsoft.Network/dnsResolvers</td><td>DNS Private Resolver Forwarding Ruleset</td><td>Azure DNS private resolver bridges on-premises DNS namespaces with private DNS zones hosted on Azure DNS without the burden of deploying VM-based custom DNS servers. You can resolve DNS queries from on-premises networks and do conditional forwarding to on-premises DNS zones.</td></tr>
<tr title="Microsoft_Azure_DnsSecurityPolicy/DnsDomainList"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DnsSecurityPolicy/DnsDomainList.svg" alt="DNS Domain List" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>DNS Domain List</td><td>Microsoft.Network/dnsResolverDomainLists</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Azure DNS Domain List along with Dns Security policy allows you to monitor outgoing dns requests from a virtual network.</td></tr>
<tr title="Microsoft_Azure_DnsSecurityPolicy/DnsSecurityPolicy"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DnsSecurityPolicy/DnsSecurityPolicy.svg" alt="DNS Security Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>DNS Security Policy</td><td>Microsoft.Network/dnsResolverPolicies</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Azure DNS Security Policy provides a set of controls to prevent unintended access to customer data from bad actors. This is done by creating custom DNS traffic rules which can permit or deny traffic and also alerts customers of queries.</td></tr>
<tr title="Microsoft_Azure_DocumentDB/DocumentDBDatabaseAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DocumentDB/DocumentDBDatabaseAccount.svg" alt="Azure Cosmos DB account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Cosmos DB account</td><td>Microsoft.DocumentDb/databaseAccounts</td><td>Document, Database, DocumentDB, NoSQL, MongoDB, Mongo, Cosmos, CosmosDB, DB</td><td>Create a globally distributed, multi-model, fully managed database using API of your choice. Or try it for free, up to 20k RU/s, for 30 days with unlimited renewal.</td></tr>
<tr title="Microsoft_Azure_DocumentDB/DocumentDBCassandraClusters"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DocumentDB/DocumentDBCassandraClusters.svg" alt="Azure Managed Instance for Apache Cassandra" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Managed Instance for Apache Cassandra</td><td>Microsoft.DocumentDB/cassandraClusters</td><td>Document, Database, DocumentDB, Apache, Cassandra, Cluster, Cosmos, CosmosDB, DB, Managed, Instance</td><td>Create a Microsoft Azure Managed Instance for Apache Cassandra</td></tr>
<tr title="Microsoft_Azure_DocumentDB/PostgreSqlServerGroupV2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DocumentDB/PostgreSqlServerGroupV2.svg" alt="Azure Cosmos DB for PostgreSQL Cluster" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Cosmos DB for PostgreSQL Cluster</td><td>Microsoft.DBforPostgreSQL/serverGroupsv2</td><td>citus,scaleout,scale-out,postgresql,postgres,postgre,open source,oss,database,cluster,cluster,hyperscale,horizontal scaling,sharding,sharded database,relational,Document, Database, DocumentDB, Cosmos, CosmosDB, DB</td><td></td></tr>
<tr title="Microsoft_Azure_DocumentDB/MongoCluster"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DocumentDB/MongoCluster.svg" alt="Azure Cosmos DB for MongoDB (vCore)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Cosmos DB for MongoDB (vCore)</td><td>Microsoft.DocumentDB/mongoClusters</td><td>MongoDB, Mongo, Free Mongo, Cosmos, CosmosDB, DB, v-Core, vCore, vector, vector search, vector database</td><td></td></tr>
<tr title="Microsoft_Azure_DocumentManagement/Microsoft_Azure_DocumentManagement"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_DocumentManagement/Microsoft_Azure_DocumentManagement.svg" alt="Reporting & Analytics" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Reporting & Analytics</td><td></td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_EASM/EasmWorkspace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EASM/EasmWorkspace.svg" alt="Microsoft Defender EASM" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Defender EASM</td><td>Microsoft.Easm/workspaces</td><td>EASM, attack surface, defender, attack surface management, external attack surface, internet assets, cloud assets, riskiq, digital footprint, attack surface insights</td><td>Microsoft Defender External Attack Surface Management (Defender EASM) uses proprietary technology to build a dynamic inventory of your web applications, third-party dependencies, and web infrastructure. We combine that with latest threat research and vulnerability intelligence to give you visibility into your organization's security posture.</td></tr>
<tr title="Microsoft_Azure_EASM/PrivateEasmWorkspace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EASM/PrivateEasmWorkspace.svg" alt="Microsoft Defender EASM (Preview)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Defender EASM (Preview)</td><td>Private.Easm/workspaces</td><td>EASM, attack surface, defender, attack surface management, external attack surface, internet assets, cloud assets, riskiq, digital footprint, attack surface insights</td><td>Microsoft Defender External Attack Surface Management (Defender EASM) uses proprietary technology to build a dynamic inventory of your web applications, third-party dependencies, and web infrastructure. We combine that with latest threat research and vulnerability intelligence to give you visibility into your organization's security posture.</td></tr>
<tr title="Microsoft_Azure_ECE/ImpactRP"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ECE/ImpactRP.svg" alt="Impact Reporting" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Impact Reporting</td><td></td><td>ImpactRP, Impact Reporting</td><td></td></tr>
<tr title="Microsoft_Azure_ECE/microsoft_impact_connectors_2024_05_01_preview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ECE/microsoft_impact_connectors_2024_05_01_preview.svg" alt="Impact Reporting Connector" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Impact Reporting Connector</td><td>microsoft.impact/connectors</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EdgeAction/EdgeAction"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EdgeAction/EdgeAction.svg" alt="Edge Action" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Edge Action</td><td>Microsoft.Cdn/edgeactions</td><td>Edge Action EA AFD code javascript</td><td>Azure Edge Actions is security and performance focused service, that enables customers to run short-lived and simple business logic code at the edge of Microsoft network, closer to users, apps and devices with the least possible latencies in a industry leading secure environment.</td></tr>
<tr title="Microsoft_Azure_EdgeAIExtension/MyResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EdgeAIExtension/MyResource.svg" alt="My Resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>My Resource</td><td>Providers.Test/statefulIbizaEngines</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_EdgeGateway/EdgeGateway"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EdgeGateway/EdgeGateway.svg" alt="Azure Stack Edge / Data Box Gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Stack Edge / Data Box Gateway</td><td>Microsoft.DataBoxEdge/dataBoxEdgeDevices</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EdgeManagementCopilot/MyResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EdgeManagementCopilot/MyResource.svg" alt="My Resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>My Resource</td><td>Providers.Test/statefulIbizaEngines</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_EdgeOrder/AllAddressResources"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EdgeOrder/AllAddressResources.svg" alt="Azure Edge Hardware Center Address" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Edge Hardware Center Address</td><td>Microsoft.EdgeOrder/addresses</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Addresses created while ordering hardware through Azure Edge Hardware Center are displayed here.</td></tr>
<tr title="Microsoft_Azure_EdgeOrder/AllBootstrapConfigurationResources"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EdgeOrder/AllBootstrapConfigurationResources.svg" alt="Site Key" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Site Key</td><td>microsoft.edgeorder/bootstrapConfigurations</td><td>UX UI design patterns sample extension ibiza consistency</td><td>You can generate a Site key to start provisioning your devices at your Site.</td></tr>
<tr title="Microsoft_Azure_EdgeOrder/AllOrderResources"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EdgeOrder/AllOrderResources.svg" alt="Azure Edge Hardware Center" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Edge Hardware Center</td><td>Microsoft.EdgeOrder/orderItems</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Azure Edge Hardware Center lets you explore and order a variety of first party Azure hardware helping you build and run hybrid apps across datacenters, edge locations, remote offices and the cloud.</td></tr>
<tr title="Microsoft_Azure_EdgeOrder/AllZtpOrderItemResources"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EdgeOrder/AllZtpOrderItemResources.svg" alt="Device" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Device</td><td>Microsoft.EdgeOrder/virtual_orderItems</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Follow the secure, low-touch step by step procedure to set up one or thousands of devices.</td></tr>
<tr title="Microsoft_Azure_EdgeOrder/AzureEdgeDevice"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EdgeOrder/AzureEdgeDevice.svg" alt="Azure Edge Hardware Center" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Edge Hardware Center</td><td></td><td>UX UI design patterns sample extension ibiza consistency</td><td>Azure Edge Hardware Center lets you explore and order a variety of first party Azure hardware helping you build and run hybrid apps across datacenters, edge locations, remote offices and the cloud.</td></tr>
<tr title="Microsoft_Azure_Education/Education"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Education/Education.svg" alt="Education" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Education</td><td></td><td>education, educate, student, students, pupil, learn, learning, devtools, classroom, course, university, institution, school, teach, teaching, teacher, teachers, professor, professors, instructor, academic, azure dev tools for teaching, ADT4T, kivuto, onthehub, hub, software, free software, free, office, visio, tools, developer, visual, studio, visual studio</td><td>Here you can access learning materials, download free software or use Quickstarts to deploy on Azure with ease. Verify your student status and get access to additional Azure benefits. </td></tr>
<tr title="Microsoft_Azure_ElasticSan/ElasticSan"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ElasticSan/ElasticSan.svg" alt="Elastic SAN" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Elastic SAN</td><td>Microsoft.ElasticSan/elasticsans</td><td>elastic san storage area network</td><td>Create a fully managed cloud-native storage area network solution (SAN) that serves as a powerful storage solution for your workloads. Connect to your resources in the SAN using the industry-standard iSCSI protocol.</td></tr>
<tr title="Microsoft_Azure_EMA/Workflow"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EMA/Workflow.svg" alt="Logic app" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Logic app</td><td>Microsoft.Logic/workflows</td><td>Logic, Logic Apps, LogicApps, Schedule, Workflow, Orchestration, Integrate, Integration</td><td>Create workflows leveraging hundreds of connectors and the visual designer.</td></tr>
<tr title="Microsoft_Azure_EMA/ManagedConnector"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EMA/ManagedConnector.svg" alt="Managed Connector" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Managed Connector</td><td>Microsoft.Logic/integrationServiceEnvironments/managedApis</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EMA/IntegrationServiceEnvironment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EMA/IntegrationServiceEnvironment.svg" alt="Integration Service Environment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Integration Service Environment</td><td>Microsoft.Logic/integrationServiceEnvironments</td><td></td><td>Fully isolated and dedicated environment for Logic Apps. Please note that the deployment of ISE can take up to 4 hours to complete.</td></tr>
<tr title="Microsoft_Azure_EMA/IntegrationAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EMA/IntegrationAccount.svg" alt="Integration account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Integration account</td><td>Microsoft.Logic/integrationAccounts</td><td>IntegrationAccount, Enterprise Integration, XML, B2B, EDI, X12, AS2, EDIFACT, XSLT, agreement, partner, map, schema</td><td>Build enterprise integration and B2B/EDI solutions with Logic Apps.</td></tr>
<tr title="Microsoft_Azure_EMA/Gateway"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EMA/Gateway.svg" alt="On-premises data gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>On-premises data gateway</td><td>Microsoft.Web/connectionGateways</td><td></td><td>The on-premises data gateway acts as a bridge, providing quick and secure data transfer between on-premises data and Power BI, Microsoft Flow, Logic Apps and PowerApps.</td></tr>
<tr title="Microsoft_Azure_EMA/CustomConnector"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EMA/CustomConnector.svg" alt="Logic apps custom connector" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Logic apps custom connector</td><td>Microsoft.Web/customApis</td><td></td><td>Create Logic Apps custom connectors for your service.</td></tr>
<tr title="Microsoft_Azure_EMA/ApiConnection"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EMA/ApiConnection.svg" alt="API Connection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>API Connection</td><td>Microsoft.Web/connections</td><td></td><td>API Connection allows you to easily connect to hundreds of services from Logic Apps.</td></tr>
<tr title="Microsoft_Azure_EmailCommunicationServices/EmailCommunicationServicesDomain"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EmailCommunicationServices/EmailCommunicationServicesDomain.svg" alt="Email Communication Services Domain" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Email Communication Services Domain</td><td>Microsoft.Communication/EmailServices/Domains</td><td>email communication bulk e-mail</td><td>Communication Email Services simplifies the integration of email capabilities to your applications, supporting transactional bookkeeping, simple surveys, and marketing emails.</td></tr>
<tr title="Microsoft_Azure_EmailCommunicationServices/EmailCommunicationService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EmailCommunicationServices/EmailCommunicationService.svg" alt="Email Communication Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Email Communication Service</td><td>Microsoft.Communication/EmailServices</td><td>email communication bulk e-mail</td><td>Communication Email Services simplifies the integration of email capabilities to your applications, supporting transactional bookkeeping, simple surveys, and marketing emails.</td></tr>
<tr title="Microsoft_Azure_EpicManagement/LandingAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EpicManagement/LandingAsset.svg" alt="Azure Center for Epic solution" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Center for Epic solution</td><td></td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_EpicManagement/OverviewAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EpicManagement/OverviewAsset.svg" alt="Virtual Instance for Epic solution" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual Instance for Epic solution</td><td>Microsoft.Workloads/epicVirtualInstances</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_EventGrid/TopicSpace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/TopicSpace.svg" alt="Event Grid Topic Space" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Topic Space</td><td>Microsoft.EventGrid/namespaces/topicSpaces</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/Topic"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/Topic.svg" alt="Event Grid Topic" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Topic</td><td>Microsoft.EventGrid/topics</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/SystemTopicEventSubscription"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/SystemTopicEventSubscription.svg" alt="Event Grid Subscriptions" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Subscriptions</td><td>Microsoft.EventGrid/systemTopics/eventSubscriptions</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/SystemTopic"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/SystemTopic.svg" alt="Event Grid System Topic" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid System Topic</td><td>Microsoft.EventGrid/systemTopics</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/QueueSubscription"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/QueueSubscription.svg" alt="Event Subscription" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Subscription</td><td>Microsoft.EventGrid/namespaces/topics/eventSubscriptions</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/PubSubNamespace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/PubSubNamespace.svg" alt="Event Grid Namespace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Namespace</td><td>Microsoft.EventGrid/namespaces</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/PartnerTopic"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/PartnerTopic.svg" alt="Event Grid Partner Topic" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Partner Topic</td><td>Microsoft.EventGrid/partnerTopics</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/PartnerRegistration"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/PartnerRegistration.svg" alt="Event Grid Partner Registration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Partner Registration</td><td>Microsoft.EventGrid/partnerRegistrations</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/PartnerNamespace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/PartnerNamespace.svg" alt="Event Grid Partner Namespace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Partner Namespace</td><td>Microsoft.EventGrid/partnerNamespaces</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/PartnerDestination"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/PartnerDestination.svg" alt="Event Grid Partner Destination" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Partner Destination</td><td>Microsoft.EventGrid/partnerDestinations</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/PartnerConfiguration"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/PartnerConfiguration.svg" alt="Event Grid Partner Configuration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Partner Configuration</td><td>Microsoft.EventGrid/partnerConfigurations</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/NamespaceTopic"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/NamespaceTopic.svg" alt="Event Grid Namespace Topic" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Namespace Topic</td><td>Microsoft.EventGrid/namespaces/topics</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/EventGridCentral"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/EventGridCentral.svg" alt="Event Grid" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid</td><td></td><td>Event Grid, System Topic, Topic, Domain, Partner Topic, Partner Destination, Partner Configuration, Partner Registration, Partner Namespace, Namespace, MQTT, PubSub, Queue, Stream, Push, Pull, IoT, HTTP, event, grid, subscription, system, topic, custom, namespace, domain, partner</td><td>Azure Event Grid allows you to easily build applications with event-based architectures.</td></tr>
<tr title="Microsoft_Azure_EventGrid/EventGrid"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/EventGrid.svg" alt="Event Grid Subscriptions" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Subscriptions</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/EventDomainTopic"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/EventDomainTopic.svg" alt="Event Grid Domain Topic" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Domain Topic</td><td>Microsoft.EventGrid/domains/topics</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/EventDomain"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/EventDomain.svg" alt="Event Grid Domain" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Domain</td><td>Microsoft.EventGrid/domains</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventGrid/Channel"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventGrid/Channel.svg" alt="Event Grid Channel" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Grid Channel</td><td>Microsoft.EventGrid/partnerNamespaces/channels</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventHub/ServiceBusDrConfig"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventHub/ServiceBusDrConfig.svg" alt="Event Hubs Geo-DR Alias" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Hubs Geo-DR Alias</td><td>Microsoft.EventHub/namespaces/disasterrecoveryconfigs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventHub/SchemaGroupSelect"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventHub/SchemaGroupSelect.svg" alt="Schema Group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Schema Group</td><td>Microsoft.EventHub/namespaces/schemagroups</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_EventHub/EventHubSelect"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventHub/EventHubSelect.svg" alt="Event Hubs Instance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Hubs Instance</td><td>Microsoft.EventHub/namespaces/eventhubs</td><td></td><td>An event hub is a component that facilitates the organization of events within Event Hubs, providing a connection point for publishers and consumers.</td></tr>
<tr title="Microsoft_Azure_EventHub/EventHubCluster"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventHub/EventHubCluster.svg" alt="Event Hubs Cluster" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Hubs Cluster</td><td>Microsoft.EventHub/clusters</td><td>Apache Kafka, Kafka, Ingestion, Stream Ingestion, Real-time, Event Streaming, Streaming platform, Data Ingestion, Managed Kafka Ingestion Platform, micro-batch, Capture, EventHubs cluster, Confluent cluster, Data processing</td><td>Event Hubs Dedicated clusters are designed to meet the needs of most demanding mission-critical event streaming workloads.</td></tr>
<tr title="Microsoft_Azure_EventHub/EventHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_EventHub/EventHub.svg" alt="Event Hubs Namespace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Event Hubs Namespace</td><td>Microsoft.EventHub/namespaces</td><td>Apache Kafka, Kafka, Ingestion, Stream Ingestion, Real-time, Event Streaming, Streaming platform, Data Ingestion, Managed Kafka Ingestion Platform, micro-batch, Capture, EventHubs cluster, Confluent cluster, Data processing</td><td>An Event Hubs namespace is a management container for event hubs which provides DNS-integrated network endpoints and a range of access control and network integration management.</td></tr>
<tr title="Microsoft_Azure_Experimentation/Browse"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Experimentation/Browse.svg" alt="Experiment Workspace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Experiment Workspace</td><td>Microsoft.Experimentation/experimentWorkspaces</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_Expert/AzureAdvisor"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Expert/AzureAdvisor.svg" alt="Advisor" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Advisor</td><td></td><td>Azure, Azure Advisor, Adviser, Recommendations, best practices, installation checks, configuration checks</td><td></td></tr>
<tr title="Microsoft_Azure_ExpressPod/DataBox"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ExpressPod/DataBox.svg" alt="Azure Data Box" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Data Box</td><td>Microsoft.DataBox/jobs</td><td>azure data box, box, data, data box, import, export, import/export, import export, import/export jobs, import export jobs</td><td></td></tr>
<tr title="Microsoft_Azure_FairfieldGardens/fairfieldgardens"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_FairfieldGardens/fairfieldgardens.svg" alt="Fairfield Gardens" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Fairfield Gardens</td><td>Microsoft.FairfieldGardens/ProvisioningResources</td><td>Fairfield Gardens, IoT Devices, Device Management</td><td>Fairfield Gardens Service is a helper service that enables zero-touch, just-in-time provisioning of devices to the right endpoint without requiring human intervention, allowing customers to provision millions of devices in a secure and scalable manner. In addition, customers can also choose to issue and manage short-lived X.509 certificates for their devices, thereby increasing the security posture of their solution.</td></tr>
<tr title="Microsoft_Azure_FairfieldGardens/provisioningpolicies"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_FairfieldGardens/provisioningpolicies.svg" alt="Provisioning policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Provisioning policy</td><td>Microsoft.FairfieldGardens/ProvisioningResources/ProvisioningPolicies</td><td>Provisioning policy, IoT Devices, Device Management</td><td>Provisioning policy description.</td></tr>
<tr title="Microsoft_Azure_FileShare/FileShares"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_FileShare/FileShares.svg" alt="File share" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>File share</td><td>Microsoft.FileShares/fileshares</td><td>File share</td><td>Azure Files offers fully managed file shares in the cloud that are accessible via the industry standard Network File System (NFS) protocol, and Azure Files REST API.</td></tr>
<tr title="Microsoft_Azure_FIST/FirmwareDefender"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_FIST/FirmwareDefender.svg" alt="Microsoft Firmware Analysis" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Firmware Analysis</td><td>microsoft.iotfirmwaredefense/workspaces</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_FluidRelay/FrsResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_FluidRelay/FrsResource.svg" alt="Fluid Relay" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Fluid Relay</td><td>Microsoft.FluidRelay/fluidRelayServers</td><td>FRS Fluid Relay</td><td>The Fluid Relay service is a managed cloud-based service for the Fluid Framework.</td></tr>
<tr title="Microsoft_Azure_Frontdoor/AzureFrontdoor"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Frontdoor/AzureFrontdoor.svg" alt="Front Door and CDN profiles" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Front Door and CDN profiles</td><td>Microsoft.Network/frontdoors</td><td>Frontdoor, Front Door,Front Door and CDN profiles, Load balancer, Network, AFD, CDN, Azure Front Door Service, Content Delivery Network, acceleration, DDoS, Protection</td><td>Azure Front Door Service is Microsoft's highly available and scalable web application acceleration platform and global HTTP(s) load balancer. It provides built-in DDoS protection and application layer security and caching. Front Door enables you to build applications that maximize and automate high-availability and performance for your end-users. Use Front Door with Azure services including Web/Mobile Apps, Cloud Services and Virtual Machines – or combine it with on-premises services for hybrid deployments and smooth cloud migration.</td></tr>
<tr title="Microsoft_Azure_GlobalView/GlobalView"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_GlobalView/GlobalView.svg" alt="Global view" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Global view</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_GraphDataConnect/Microsoft_Graph_Data_Connect"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_GraphDataConnect/Microsoft_Graph_Data_Connect.svg" alt="Microsoft Graph Data Connect" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Graph Data Connect</td><td></td><td>mgdc graph data connect</td><td>Create and manage applications to access rich M365 data in bulk into your Azure subscription with granular control for consent.</td></tr>
<tr title="Microsoft_Azure_GTM/Billing"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_GTM/Billing.svg" alt="Cost Management + Billing" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cost Management + Billing</td><td></td><td>cloudyn, recommendations, alerts, allocation, Amazon Web Services, amortization, amortized, analytics, analyze, AWS, bill, billing, budgets, chargeback, charges, charts, clouds, connectors, costs, credit card, cross cloud, explorer, insights, invoices, load balance, make a payment, markup, marketplace, meters, metrics, monitoring, optimization, optimize, optimizing, pay balance, pay bill, pay invoice, payment, payment method, products, purchases, refunds, reporting, reports, reservations, reserved instances, RIs, services, spending, upi, usage, views, xcloud, x cloud, billing account, billing profile, invoice section</td><td></td></tr>
<tr title="Microsoft_Azure_GTM/Invoice"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_GTM/Invoice.svg" alt="Invoice" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Invoice</td><td></td><td>bill, charge, cost, invoice, spending, usage</td><td></td></tr>
<tr title="Microsoft_Azure_GTM/BillingSubscriptions"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_GTM/BillingSubscriptions.svg" alt="Billing subscription" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Billing subscription</td><td></td><td>billing, subscription, product</td><td></td></tr>
<tr title="Microsoft_Azure_GTM/AccessControl"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_GTM/AccessControl.svg" alt="Billing access control (IAM)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Billing access control (IAM)</td><td></td><td>billing access, billing control, billing iam</td><td></td></tr>
<tr title="Microsoft_Azure_HDInsight/HDInsightClusterPool"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HDInsight/HDInsightClusterPool.svg" alt="Azure HDInsight on AKS cluster pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure HDInsight on AKS cluster pool</td><td>Microsoft.HDInsight/clusterpools</td><td>HDInsight, HDI, hdinsight, hdi, Azure HDInsight on AKS cluster pool, Azure HDInsight on AKS, AKS, Kubernetes</td><td>Create an Azure HDInsight on AKS cluster pool to organize your HDInsight on AKS clusters. You can have multiple clusters in the same cluster pool.</td></tr>
<tr title="Microsoft_Azure_HDInsight/HDInsightClusterGen2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HDInsight/HDInsightClusterGen2.svg" alt="Azure HDInsight on AKS cluster" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure HDInsight on AKS cluster</td><td>Microsoft.HDInsight/clusterpools/clusters</td><td>HDInsight, HDI, hdinsight, hdi, Azure HDInsight on AKS cluster, Azure HDInsight on AKS, AKS, Kubernetes</td><td>Create an Azure HDInsight on AKS cluster to process massive amounts of data using modern and latest open-source frameworks such as Apache Flink, Trino, Apache Spark, and more.</td></tr>
<tr title="Microsoft_Azure_HDInsight/HDInsightCluster"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HDInsight/HDInsightCluster.svg" alt="HDInsight cluster" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>HDInsight cluster</td><td>Microsoft.HDInsight/clusters</td><td>HDInsight, HDI, hdinsight, hdi, HDInsight cluster, Hadoop, HBase, Spark, Storm, R Server, R, Kafka, Interactive Query, Analytics, Big data, ML server, ML services, Machine Learning Server, 9.3 Server</td><td>Create an HDInsight cluster to process massive amounts of data using popular open-source frameworks such as Hadoop, Spark, Hive, LLAP, Kafka, Storm, ML Services, and more.</td></tr>
<tr title="Microsoft_Azure_Health/AzureHealth"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Health/AzureHealth.svg" alt="Service Health" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service Health</td><td></td><td>Health, Maintenance, Planned Maintenance</td><td></td></tr>
<tr title="Microsoft_Azure_HealthBot/HealthBot"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HealthBot/HealthBot.svg" alt="Healthcare agent service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Healthcare agent service</td><td>Microsoft.HealthBot/healthBots</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HealthDataDeidentification/DeidService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HealthDataDeidentification/DeidService.svg" alt="De-identification Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>De-identification Service</td><td>Microsoft.HealthDataAIServices/DeidServices</td><td>De-identification, Health Data, PHI, Health</td><td>De-identification for Health Data and AI Services is a cloud-based API service that applies machine-learning intelligence to extract and label, redact, or surrogate protected health information (PHI) from a variety of unstructured texts such as doctor's notes, clinical documents, clinical transcripts, and electronic health records. The service performs three key functions which are tag, redact, or surrogate, through synchronous (“real time”) or asynchronous (“batch”) API calls.</td></tr>
<tr title="Microsoft_Azure_HealthModels/AzureHealthModel"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HealthModels/AzureHealthModel.svg" alt="Health Model (preview)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Health Model (preview)</td><td>Microsoft.HealthModel/healthmodels</td><td>health resiliency resources metrics signals</td><td>A health model augments metric and logs with critical business context of a workload, enabling the automated evaluation of quantified health states.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/ResourceBridge"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/ResourceBridge.svg" alt="Resource bridge" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource bridge</td><td>Microsoft.ResourceConnector/Appliances</td><td>resource bridge, private cloud</td><td>Resource bridge is a packaged virtual machine which has a built-in Kubernetes management cluster, which requries no user management. This virtual appliance helps customers enable VM self-serving on-prem from Azure without the customer creating and managing a Kubernetes cluster from scratch.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/ArcK8Resources"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/ArcK8Resources.svg" alt="Azure Arc Kubernetes cluster" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Arc Kubernetes cluster</td><td>Microsoft.Arc/kubernetesResources</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridCompute/ConnectedClusters"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/ConnectedClusters.svg" alt="Kubernetes - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes - Azure Arc</td><td>Microsoft.Kubernetes/connectedClusters</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridCompute/ConnectedClusterExtension"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/ConnectedClusterExtension.svg" alt="Kubernetes - Azure Arc extension" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes - Azure Arc extension</td><td>Microsoft.Kubernetes/connectedClusters/Microsoft.KubernetesConfiguration/extensions</td><td>aks, kubernetes, k8s, arc, extension, extensions</td><td></td></tr>
<tr title="Microsoft_Azure_HybridCompute/ProvisionedCluster"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/ProvisionedCluster.svg" alt="Kubernetes hybrid - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes hybrid - Azure Arc</td><td>Microsoft.HybridContainerService/provisionedClusters</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridCompute/ArcVirtualMachines"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/ArcVirtualMachines.svg" alt="Azure Arc virtual machine" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Arc virtual machine</td><td>Microsoft.All/arcVirtualMachines</td><td>arc, virtual, machine, hybrid, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, multicloud</td><td>Create an Azure Arc virtual machine that runs on your private cloud. Select an image from the marketplace or use your own customized image.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/VirtualMachines"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/VirtualMachines.svg" alt="Virtual machine" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual machine</td><td>Microsoft.All/virtualMachines</td><td>virtual,vm,vms,compute,machine,arc,azurearc,hybrid</td><td>Create a virtual machine that runs Linux or Windows. Select an image from the marketplace or use your own customized image.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/AzureStackHci"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/AzureStackHci.svg" alt="Azure Local virtual machine - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Local virtual machine - Azure Arc</td><td>Microsoft.AzureStackHci/virtualMachines</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridCompute/CustomLocation"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/CustomLocation.svg" alt="Custom location" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Custom location</td><td>Microsoft.ExtendedLocation/CustomLocations</td><td>custom location, location, region, arc, azurearc, hybrid, nonazure, non-azure, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, private </td><td>With custom locations you can map your on-premises and other infrastructure environments to Azure. Create and manage virtual machines, operate your infrastructure, and run services like Azure Functions in your own datacenters, all with Azure management tools.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/ArcServerWithWac"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/ArcServerWithWac.svg" alt="Machine - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Machine - Azure Arc</td><td>Microsoft.HybridCompute/arcServerWithWac</td><td>arc, azurearc, hybrid, nonazure, non-azure, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, computer, server, machine</td><td>Ensure compliance across all your environments by adding your Linux and Windows servers to Azure. Once in Azure, you can leverage Azure management and governance, and view and organize your inventory in one place.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/HybridCompute"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/HybridCompute.svg" alt="Machine - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Machine - Azure Arc</td><td>Microsoft.HybridCompute/machines</td><td>arc, azurearc, hybrid, nonazure, non-azure, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, computer, server, machine</td><td>Ensure compliance across all your environments by adding your Linux and Windows servers to Azure. Once in Azure, you can leverage Azure management and governance, and view and organize your inventory in one place.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/HybridComputeSovereign"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/HybridComputeSovereign.svg" alt="Machine - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Machine - Azure Arc</td><td>Microsoft.HybridCompute/machinesSovereign</td><td>arc, azurearc, hybrid, nonazure, non-azure, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, computer, server, machine</td><td>Ensure compliance across all your environments by adding your Linux and Windows servers to Azure. Once in Azure, you can leverage Azure management and governance, and view and organize your inventory in one place.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/microsoft_awsconnector_ec2instances_2024_08_01_preview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/microsoft_awsconnector_ec2instances_2024_08_01_preview.svg" alt="Microsoft.AwsConnector ec2 instance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.AwsConnector ec2 instance</td><td>microsoft.hybridcompute/machines/microsoft.awsconnector/ec2instances</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridCompute/MultiCloudConnector"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/MultiCloudConnector.svg" alt="Multicloud connector" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Multicloud connector</td><td>Microsoft.HybridConnectivity/publicCloudConnectors</td><td>multicloud, aws</td><td>Create an AWS connector to add your AWS assets to Azure.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/AzureArcPrivateLinkScope"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/AzureArcPrivateLinkScope.svg" alt="Azure Arc Private Link Scope" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Arc Private Link Scope</td><td>Microsoft.HybridCompute/privateLinkScopes</td><td>arc, azurearc, private link scope, private, endpoints, connection, network, PLS</td><td>Azure Arc Private link scope enables you to access Azure PaaS services and Azure hosted customer owned services over a private endpoint in your virtual network. Use Azure Arc Private link scopes to privately connect your Azure Arc resources.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/ArcVmScVmm"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/ArcVmScVmm.svg" alt="SCVMM virtual machine - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SCVMM virtual machine - Azure Arc</td><td>Microsoft.scvmm/virtualMachines</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridCompute/ScVmmManagementServer"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/ScVmmManagementServer.svg" alt="SCVMM management server" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SCVMM management server</td><td>Microsoft.ScVmm/vmmServers</td><td>scvmm</td><td>Connect your existing SCVMM management server to Azure so you can provision and manage VMs on it through Azure Arc.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/ArcGateway"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/ArcGateway.svg" alt="Arc gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Arc gateway</td><td>Microsoft.HybridCompute/gateways</td><td>gateway, arc gateway</td><td>If you use enterprise proxies or firewalls to manage outbound traffic from your environment, the Azure Arc gateway allows you to onboard infrastructure to Azure Arc with a significantly reduced list of required endpoints.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/HybridComputeEsu"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/HybridComputeEsu.svg" alt="Machine - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Machine - Azure Arc</td><td>Microsoft.HybridCompute/machinesEsu</td><td>arc, azurearc, hybrid, nonazure, non-azure, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, computer, server, machine</td><td>Enable ESUs on your Windows Server 2012 and 2012 R2 across multi-clouds, on-premise and any environment that are reaching end of support and get access to Extended Security Updates. Add servers through Azure Arc to enable ESUs.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/EsuLicense"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/EsuLicense.svg" alt="Extended Security Updates - Windows Server 2012/R2" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Extended Security Updates - Windows Server 2012/R2</td><td>Microsoft.HybridCompute/licenses</td><td>Extended Security Updates - Windows Server 2012/R2, esu, esu Windows Server 2012, esu Windows Server 2012/R2, extended security updates, esu license, license</td><td>Create and attach an Extended Security Updates (ESUs) license to eligible Arc-enabled machines to continue receiving critical security updates automatically.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/PayGoEligible"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/PayGoEligible.svg" alt="Machine - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Machine - Azure Arc</td><td>Microsoft.HybridCompute/machinesPayGo</td><td>arc, azurearc, hybrid, nonazure, non-azure, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, computer, server, machine</td><td>Ensure compliance across all your environments by adding your Linux and Windows servers to Azure. Once in Azure, you can leverage Azure management and governance, and view and organize your inventory in one place.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/SoftwareAssurance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/SoftwareAssurance.svg" alt="Machine - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Machine - Azure Arc</td><td>Microsoft.HybridCompute/machinesSoftwareAssurance</td><td>arc, azurearc, hybrid, nonazure, non-azure, onprem, on prem, on-prem, on premise, on-premise, on premises, on-premises, computer, server, machine</td><td>Ensure compliance across all your environments by adding your Linux and Windows servers to Azure. Once in Azure, you can leverage Azure management and governance, and view and organize your inventory in one place.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/VMwarevCenter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/VMwarevCenter.svg" alt="VMware vCenter" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VMware vCenter</td><td>Microsoft.connectedVMwareVSphere/vCenters</td><td>vCenter, vSphere, private cloud, hybrid, multicloud</td><td>Connect your existing VMware vCenter to Azure so you can provision and manage VMs on it through Azure Arc.</td></tr>
<tr title="Microsoft_Azure_HybridCompute/VMwareVm"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/VMwareVm.svg" alt="VMware + AVS virtual machine" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VMware + AVS virtual machine</td><td>Microsoft.ConnectedVMwarevSphere/VirtualMachines</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridCompute/VMwareVmV2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridCompute/VMwareVmV2.svg" alt="VMware + AVS virtual machine" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VMware + AVS virtual machine</td><td>Microsoft.HybridCompute/Machines/Microsoft.ConnectedVMwarevSphere/virtualMachineInstances</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridData_Platform/DataController"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridData_Platform/DataController.svg" alt="Azure Arc data controller" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Arc data controller</td><td>Microsoft.AzureArcData/dataControllers</td><td>Azure Arc data controller</td><td>Create an Azure Arc data controller to enable Azure data services in the Kubernetes environment of your choice.</td></tr>
<tr title="Microsoft_Azure_HybridData_Platform/PostgresInstance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridData_Platform/PostgresInstance.svg" alt="PostgreSQL server – Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>PostgreSQL server – Azure Arc</td><td>Microsoft.AzureArcData/postgresInstances</td><td>PostgreSQL server – Azure Arc</td><td>Create a semi-managed PostgreSQL enabled by Azure Arc on the infrastructure of your choice (on your premises, in the cloud, at the edge), with built-in management capabilities that drastically reduces your management overhead and meets your requirements of data residency and customer control.</td></tr>
<tr title="Microsoft_Azure_HybridData_Platform/SqlManagedInstance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridData_Platform/SqlManagedInstance.svg" alt="SQL managed instance - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SQL managed instance - Azure Arc</td><td>Microsoft.AzureArcData/sqlManagedInstances</td><td>SQL managed instance - Azure Arc</td><td>Create a fully managed SQL Managed Instance enabled by Azure Arc on the infrastructure of your choice, with built-in management capabilities that drastically reduce your management overhead.</td></tr>
<tr title="Microsoft_Azure_HybridData_Platform/SqlServerEsuLicense"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridData_Platform/SqlServerEsuLicense.svg" alt="SQL Server ESU license" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SQL Server ESU license</td><td>microsoft.azurearcdata/sqlserveresulicenses</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridData_Platform/SqlServerInstance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridData_Platform/SqlServerInstance.svg" alt="SQL Server - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SQL Server - Azure Arc</td><td>Microsoft.AzureArcData/sqlServerInstances</td><td>SQL Server - Azure Arc</td><td>SQL Server enabled by Azure Arc allows you to manage your global inventory of SQL servers, protect SQL Server instances with Microsoft Defender for Cloud or periodically assess and tune the health of your SQL Server configurations.</td></tr>
<tr title="Microsoft_Azure_HybridData_Platform/SqlServerInstancesDatabases"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridData_Platform/SqlServerInstancesDatabases.svg" alt="SQL Server database - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SQL Server database - Azure Arc</td><td>Microsoft.AzureArcData/SqlServerInstances/Databases</td><td>SQL Server databases - Azure Arc</td><td>SQL Server databases - Azure Arc allows you to manage your global inventory of SQL servers databases, protect SQL Server databases with Microsoft Defender for Cloud or periodically assess and tune the health of your SQL Server databases configurations.</td></tr>
<tr title="Microsoft_Azure_HybridData_Platform/SqlServerLicense"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridData_Platform/SqlServerLicense.svg" alt="SQL Server License" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SQL Server License</td><td>microsoft.azurearcdata/sqlserverlicenses</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridNetworking/microsoft_network_networkvirtualappliances_2020_03_01"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/microsoft_network_networkvirtualappliances_2020_03_01.svg" alt="Microsoft.Network network virtual appliance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.Network network virtual appliance</td><td>microsoft.network/networkvirtualappliances</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridNetworking/VirtualWan"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/VirtualWan.svg" alt="Virtual WAN" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual WAN</td><td>Microsoft.Network/virtualWans</td><td></td><td>Create a virtual WAN to get started. Next, create sites in your virtual WAN and connect them to virtual hubs in your preferred Azure regions. Within your virtual WAN, you can also connect hubs to your existing virtual networks.</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/GlobalSecureAccess"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/GlobalSecureAccess.svg" alt="Azure Cortex" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Cortex</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridNetworking/VirtualRoutermanager"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/VirtualRoutermanager.svg" alt="Route Server" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Route Server</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridNetworking/VirtualRouter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/VirtualRouter.svg" alt="Microsoft.Network/virtualHub" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.Network/virtualHub</td><td>Microsoft.Network/virtualHubs</td><td></td><td>Create a Route Server to get started.</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/VirtualNetworkGateway"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/VirtualNetworkGateway.svg" alt="Virtual network gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual network gateway</td><td>Microsoft.Network/virtualNetworkGateways</td><td>VPN, VNG, Virtual, Network, Gateway</td><td>Azure VPN Gateway connects your on-premises networks to Azure through Site-to-Site VPNs in a similar way that you set up and connect to a remote branch office. The connectivity is secure and uses the industry-standard protocols Internet Protocol Security (IPsec) and Internet Key Exchange (IKE).</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/RouteFilter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/RouteFilter.svg" alt="Route filter" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Route filter</td><td>Microsoft.Network/routeFilters</td><td>Peering, BGP, ER</td><td>When Microsoft peering is configured on your ExpressRoute circuit, the Microsoft edge routers establish a pair of BGP sessions with the edge routers (yours or your connectivity provider's). No routes are advertised to your network. To enable route advertisements to your network, you must associate a route filter. A route filter lets you identify services you want to consume through your ExpressRoute circuit's Microsoft peering. It is essentially a white list of all the BGP community values. Once a route filter resource is defined and attached to an ExpressRoute circuit, all prefixes that map to the BGP community values are advertised to your network.</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/MeshVpn"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/MeshVpn.svg" alt="Mesh VPN" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Mesh VPN</td><td>Microsoft.NetworkFunction/meshVpns</td><td></td><td>Create a mesh VPN to get started.</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/LocalNetworkGateway"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/LocalNetworkGateway.svg" alt="Local network gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Local network gateway</td><td>Microsoft.Network/localnetworkgateways</td><td>VPN, LNG, Local, Network, Gateway</td><td>Create a local network gateway to represent the on-premises site that you want to connect to a virtual network. The local network gateway specifies the public IP address of the VPN device and IP address ranges located on the on-premises site. Later, create a VPN gateway connection between the virtual network gateway for the virtual network, and the local network gateway for the on-premises site.</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/IpGroups"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/IpGroups.svg" alt="IP Group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IP Group</td><td>Microsoft.Network/ipGroups</td><td>IP, Groups, IP Groups, ip group, ipgroup, groups</td><td>Browse IP groups</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/FirewallPolicy"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/FirewallPolicy.svg" alt="Firewall Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Firewall Policy</td><td>Microsoft.Network/firewallPolicies</td><td>Security, Protect, Network, Firewall, Firewall Policy</td><td>Firewall Policy</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/FirewallManager"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/FirewallManager.svg" alt="Firewall Manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Firewall Manager</td><td></td><td>Security, Protect, Network, Firewall, Manager, Firewall Manager</td><td></td></tr>
<tr title="Microsoft_Azure_HybridNetworking/ExpressRouteTrafficCollector"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/ExpressRouteTrafficCollector.svg" alt="ExpressRoute traffic collector" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>ExpressRoute traffic collector</td><td>Microsoft.NetworkFunction/azureTrafficCollectors</td><td>VPN, co-location, colo, connectivity, ER</td><td>ExpressRoute traffic collector</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/ExpressRouteProvider"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/ExpressRouteProvider.svg" alt="ExpressRoute provider" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>ExpressRoute provider</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridNetworking/Microsoft_Network_expressRouteGateways_expressRouteConnections_2022_01_01"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/Microsoft_Network_expressRouteGateways_expressRouteConnections_2022_01_01.svg" alt="Microsoft.Network express route gateways express route connection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.Network express route gateways express route connection</td><td>Microsoft.Network/expressRouteGateways/expressRouteConnections</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_HybridNetworking/ExpressRouteDirect"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/ExpressRouteDirect.svg" alt="ExpressRoute Direct" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>ExpressRoute Direct</td><td>Microsoft.Network/expressRoutePorts</td><td>VPN, co-location, colo, connectivity, ER</td><td>ExpressRoute Direct gives you the ability to connect directly into Microsoft's global network at peering location strategically distributed across the world. ExpressRoute Direct provides dual 100 Gbps or 10 Gbps connectivity, which supports Active/Active connectivity at scale</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/ExpressRoute"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/ExpressRoute.svg" alt="ExpressRoute circuit" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>ExpressRoute circuit</td><td>Microsoft.Network/expressRouteCircuits</td><td>VPN, co-location, colo, connectivity, ER</td><td>Use ExpressRoute to set up a fast, private connection to Microsoft cloud services from your on-premises infrastructure or co-location facility. You can create a connection between your on-premises network and the Microsoft cloud in three different ways, CloudExchange Co-location, Point-to-point Ethernet Connection, and Any-to-any (IPVPN) Connection. Connectivity providers can offer one or more connectivity models. You can work with your connectivity provider to pick the model that works best for you.</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/Connection"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/Connection.svg" alt="Connection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Connection</td><td>Microsoft.Network/connections</td><td>VPN, ExpressRoute, ER</td><td>Create a secure connection to your virtual network by using VPN Gateway or ExpressRoute.</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/CloudNativeFirewall"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/CloudNativeFirewall.svg" alt="Firewall" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Firewall</td><td>Microsoft.Network/azureFirewalls</td><td>Security, Protect, Network, Firewall</td><td>Cloud-native network security to protect your Azure Virtual Network resources</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/BastionHost"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/BastionHost.svg" alt="Bastion" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Bastion</td><td>Microsoft.Network/bastionHosts</td><td>Network security, Policy, Policies, ASG, NSG</td><td>You can use Bastions to configure web based access to your vnet vm.</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/ApplicationGateway"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/ApplicationGateway.svg" alt="Application gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Application gateway</td><td>Microsoft.Network/applicationGateways</td><td>AppGw, Load balancer (Layer 7/HTTP), SSL offloading, Web application firewall (WAF), L7, Gateway, Application</td><td>Azure Application Gateway gives you application-level routing and load balancing services that let you build a scalable and highly-available web front end in Azure. You control the size of the gateway and scale your deployment based on your needs.</td></tr>
<tr title="Microsoft_Azure_HybridNetworking/AppGwForContainers"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_HybridNetworking/AppGwForContainers.svg" alt="Application Gateway for Containers" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Application Gateway for Containers</td><td>Microsoft.ServiceNetworking/trafficControllers</td><td>application gateway for containers, appgw, agc, agic, application gateway ingress controller, application load balancer, alb, kubernetes load balancer</td><td>Application Gateway for Containers</td></tr>
<tr title="Microsoft_Azure_IacAutomation/ArcIacAutomation"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_IacAutomation/ArcIacAutomation.svg" alt="Infrastructure as Code Automation" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Infrastructure as Code Automation</td><td>Microsoft.DevHub/iacProfiles</td><td>Simple, Consistent, Automation</td><td>Simplify how you manage your edge infrastrucutre using industry leading processes and tools.</td></tr>
<tr title="Microsoft_Azure_IdentityGovernance/MyResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_IdentityGovernance/MyResource.svg" alt="My Resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>My Resource</td><td>Providers.Test/statefulIbizaEngines</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_IoTCentral/IoTApps"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_IoTCentral/IoTApps.svg" alt="IoT Central Application" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IoT Central Application</td><td>Microsoft.IoTCentral/IoTApps</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_IotHub/DeviceProvisioning"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_IotHub/DeviceProvisioning.svg" alt="Azure IoT Hub Device Provisioning Service (DPS)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure IoT Hub Device Provisioning Service (DPS)</td><td>Microsoft.Devices/ProvisioningServices</td><td></td><td>Use Azure IoT Hub Device Provisioning Service to automate IoT device provisioning and registration.</td></tr>
<tr title="Microsoft_Azure_IotHub/IotHubs"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_IotHub/IotHubs.svg" alt="IoT Hub" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IoT Hub</td><td>Microsoft.Devices/IotHubs</td><td></td><td>Create an IoT hub to help you connect, monitor, and manage billions of your IoT assets.</td></tr>
<tr title="Microsoft_Azure_IoTOperations/IoTOperations"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_IoTOperations/IoTOperations.svg" alt="Azure IoT Operations" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure IoT Operations</td><td>Microsoft.IoTOperations/instances</td><td>Azure IoT</td><td>Azure IoT Operations is a set of composable services that run on Azure Arc-enabled edge Kubernetes clusters. These services can be deployed and managed together.</td></tr>
<tr title="Microsoft_Azure_IoT_Defender/IoTDefender"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_IoT_Defender/IoTDefender.svg" alt="Microsoft Defender for IoT" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Defender for IoT</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_IPAddressManager/IPAMPools"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_IPAddressManager/IPAMPools.svg" alt="IP address pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IP address pool</td><td>Microsoft.Network/networkManagers/ipamPools</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_Kailani/SyncServiceAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Kailani/SyncServiceAsset.svg" alt="Storage Sync Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Storage Sync Service</td><td>Microsoft.StorageSync/storageSyncServices</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_KeyVault/Certificate"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_KeyVault/Certificate.svg" alt="Certificate" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Certificate</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_KeyVault/Key"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_KeyVault/Key.svg" alt="Key" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Key</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_KeyVault/KeyVault"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_KeyVault/KeyVault.svg" alt="Key vault" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Key vault</td><td>Microsoft.KeyVault/vaults</td><td>KV, AKV, Vault, Secrets, Certificates, HSM key, HSM, RSA, ECC certificate, Self Signed Certificate, RSA, EC, P-256, P-384, P-521, P-256K, PKCS #12, PEM </td><td>Safeguard cryptographic keys and other secrets used by cloud apps and services.</td></tr>
<tr title="Microsoft_Azure_KeyVault/Secret"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_KeyVault/Secret.svg" alt="Secret" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Secret</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_KubernetesFleet/Fleets"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_KubernetesFleet/Fleets.svg" alt="Kubernetes fleet manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes fleet manager</td><td>microsoft.containerservice/fleets</td><td>aks, kubernetes, k8s, fleet, fleets</td><td>Kubernetes Fleet Managers enables multi-cluster and at-scale scenarios for Kubernetes Service clusters. To get started, create a Kubernetes Fleet Manager resource.</td></tr>
<tr title="Microsoft_Azure_Kusto/kustoSynapsePoolDatabase"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Kusto/kustoSynapsePoolDatabase.svg" alt="Data Explorer Database" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data Explorer Database</td><td>Microsoft.Synapse/workspaces/kustopools/databases</td><td>kusto,synapse,Data Explorer pool,big data,database</td><td>Create a Data Explorer Database to store your data.</td></tr>
<tr title="Microsoft_Azure_Kusto/kustoSynapsePool"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Kusto/kustoSynapsePool.svg" alt="Data Explorer pool (preview)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data Explorer pool (preview)</td><td>Microsoft.Synapse/workspaces/kustopools</td><td>kusto,data explorer,big data,adhoc,analytics,telemetry,adx,kustopool,synapse,sde,dx,kql,time series</td><td>Create a Data Explorer pool to enjoy a big-data, interactive analytics platform that provides ultra-fast telemetry search and advanced text search for any type of data.</td></tr>
<tr title="Microsoft_Azure_Kusto/KustoClusterDatabase"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Kusto/KustoClusterDatabase.svg" alt="Azure Data Explorer Database" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Data Explorer Database</td><td>Microsoft.Kusto/clusters/databases</td><td>kusto,data explorer,big data,database</td><td>Create an Azure Data Explorer database to store your data.</td></tr>
<tr title="Microsoft_Azure_Kusto/KustoCluster"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Kusto/KustoCluster.svg" alt="Azure Data Explorer Cluster" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Data Explorer Cluster</td><td>Microsoft.Kusto/clusters</td><td>kusto,data explorer,big data,adhoc,analytics,telemetry,adx,azure data,dx,kql,time series</td><td>Create an Azure Data Explorer cluster to enjoy a big-data, interactive analytics platform that provides ultra-fast telemetry search and advanced text search for any type of data.</td></tr>
<tr title="Microsoft_Azure_LocationServices/Creator"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_LocationServices/Creator.svg" alt="Azure Maps Creator Resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Maps Creator Resource</td><td>Microsoft.Maps/accounts/creators</td><td>Location, Maps, Cartography, Render, Rendering, Route, Routing, Directions, Vehicle, Car, Truck, Navigation, Geospatial, Geography, Geographic, Cartographic, GIS, Traffic, Flow, Incident, Time, Zone, Control, World, Earth, Planet, Search, Business, POI, Address, Landmarks, Geocoding, Reverse, Fuzzy, Geometry, Nearby, Radius, Along, CrossStreet, Batch, Matrix, Calculate, point, circle, location, fastest, shortest, thrilling, eco, tollRoads, motorways, ferries, unpavedRoads, carpools, alreadyUsedRoads, Polyline, taxi, bus, van, motorcycle, bicycle, bike, pedestrian, combustion, electric, hazmat, hazardous, material, explosive, batch, matrix, raster, vector, tile, WMS, WMTS, grid, zoom, segment, Transit, publicTransport, publicTransit, maas, subway, metro, carshare, scooter, Weather, weatherForecast, currentWeather, weatherRadar, weatherSatellite, private maps, private atlas, Creator</td><td>Creator allows you to create private maps and map applications using Azure Maps API and SDK.</td></tr>
<tr title="Microsoft_Azure_LocationServices/Maps"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_LocationServices/Maps.svg" alt="Azure Maps Account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Maps Account</td><td>Microsoft.Maps/accounts</td><td>Location, Maps, Cartography, Render, Rendering, Route, Routing, Directions, Vehicle, Car, Truck, Navigation, Geospatial, Geography, Geographic, Cartographic, GIS, Traffic, Flow, Incident, Time, Zone, Control, World, Earth, Planet, Search, Business, POI, Address, Landmarks, Geocoding, Reverse, Fuzzy, Geometry, Nearby, Radius, Along, CrossStreet, Batch, Matrix, Calculate, point, circle, location, fastest, shortest, thrilling, eco, tollRoads, motorways, ferries, unpavedRoads, carpools, alreadyUsedRoads, Polyline, taxi, bus, van, motorcycle, bicycle, bike, pedestrian, combustion, electric, hazmat, hazardous, material, explosive, batch, matrix, raster, vector, tile, WMS, WMTS, grid, zoom, segment, Transit, publicTransport, publicTransit, maas, subway, metro, carshare, scooter, Weather, weatherForecast, currentWeather, weatherRadar, weatherSatellite, private maps, private atlas, Creator</td><td>Azure Maps is a portfolio of geospatial services that include service APIs for Maps, Search, Routing, Traffic and Time Zones. The portfolio of Azure OneAPI compliant services allows you to use familiar developer tools to quickly develop and scale solutions that integrate location information into your Azure solutions. Azure Maps provides developers from all industries powerful geospatial capabilities packed with fresh mapping data imperative to providing geographic context to web and mobile applications.</td></tr>
<tr title="Microsoft_Azure_Lockbox/AzureLockbox"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Lockbox/AzureLockbox.svg" alt="Customer Lockbox for Microsoft Azure" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Customer Lockbox for Microsoft Azure</td><td></td><td>azure lockbox customer support request approval security access management</td><td>Enable Customer Lockbox for Microsoft Azure to get control over cloud provider’s access to customer data. Lockbox provides an interface for customers to review and approve or reject customer data access requests. It is used in cases where a Microsoft engineer needs to access customer data, whether in response to a customer-initiated support ticket or a problem identified by Microsoft.</td></tr>
<tr title="Microsoft_Azure_Maintenance/MaintenanceConfiguration"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Maintenance/MaintenanceConfiguration.svg" alt="Maintenance Configuration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Maintenance Configuration</td><td>Microsoft.Maintenance/maintenanceConfigurations</td><td>maintenance, configuration</td><td>Manage platform updates that don't require a reboot using maintenance control. Maintenance control lets you decide when to apply updates to your virtual infrastructure.</td></tr>
<tr title="Microsoft_Azure_ManagedHSM/ManagedHSM"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedHSM/ManagedHSM.svg" alt="Azure Key Vault Managed HSM" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Key Vault Managed HSM</td><td>Microsoft.KeyVault/managedHSMs</td><td>Managed HSM, HSM key, HSM, RSA, EC, AES</td><td>Azure Managed HSM provides single-tenant, highly available HSMs to store and manage your cryptographic keys.</td></tr>
<tr title="Microsoft_Azure_ManagedLab/Lab"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedLab/Lab.svg" alt="Lab" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Lab</td><td>Microsoft.LabServices/labs</td><td>lab labs plan class classroom education hackathon training PC</td><td>Lab Creators use the Azure Lab Services website to create labs, provision virtual machines, install software and more. To create labs, at least one lab plan is needed.</td></tr>
<tr title="Microsoft_Azure_ManagedLab/LabAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedLab/LabAccount.svg" alt="Lab account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Lab account</td><td>Microsoft.LabServices/labAccounts</td><td>lab labs plan class classroom education hackathon training PC</td><td>Lab accounts allow settings and configurations to be applied to groups of labs. Create a lab account to enable the creation of labs in your organization.</td></tr>
<tr title="Microsoft_Azure_ManagedLab/LabPlan"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedLab/LabPlan.svg" alt="Lab plan" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Lab plan</td><td>Microsoft.LabServices/labPlans</td><td>lab labs plan class classroom education hackathon training PC</td><td>Lab plans allow settings and configurations to be applied to labs. Create a lab plan to enable the creation of labs in your organization.</td></tr>
<tr title="Microsoft_Azure_ManagedLab/LabServices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedLab/LabServices.svg" alt="Azure Lab Services" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Lab Services</td><td></td><td>lab labs plan class classroom education hackathon training PC</td><td>Easily set up and provide on-demand access to preconfigured virtual machines. Simply define your needs and the service will roll the lab out to your audience. Users access all their lab VMs from a single place.</td></tr>
<tr title="Microsoft_Azure_ManagedLab/LegacyLab"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedLab/LegacyLab.svg" alt="Lab" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Lab</td><td>Microsoft.LabServices/labAccounts/labs</td><td>lab labs plan class classroom education hackathon training PC</td><td>Lab Creators use the Azure Lab Services website to create labs, provision virtual machines, install software and more. To create labs, at least one lab plan is needed.</td></tr>
<tr title="Microsoft_Azure_ManagedNetwork/VirtualNetworkManager"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedNetwork/VirtualNetworkManager.svg" alt="Virtual Network Manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual Network Manager</td><td></td><td>network, manager, management, virtual network, avnm, network managers</td><td></td></tr>
<tr title="Microsoft_Azure_ManagedNetwork/UserDefinedRoutingConfiguration"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedNetwork/UserDefinedRoutingConfiguration.svg" alt="Network manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network manager</td><td>Microsoft.Network/networkManagers/routingConfigurations</td><td>network, manager, management, virtual network, avnm, anm, vnm, network group, security admin, hub and spoke, mesh, admin rule, network managers, connectivity configuration</td><td></td></tr>
<tr title="Microsoft_Azure_ManagedNetwork/SecurityUserConfigurationOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedNetwork/SecurityUserConfigurationOverview.svg" alt="Network manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network manager</td><td>Microsoft.Network/networkManagers/securityUserConfigurations</td><td>network, manager, management, virtual network, avnm, anm, vnm, network group, security admin, hub and spoke, mesh, admin rule, network managers, connectivity configuration</td><td></td></tr>
<tr title="Microsoft_Azure_ManagedNetwork/SecurityAdminConfigurationOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedNetwork/SecurityAdminConfigurationOverview.svg" alt="Network manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network manager</td><td>Microsoft.Network/networkManagers/securityAdminConfigurations</td><td>network, manager, management, virtual network, avnm, anm, vnm, network group, security admin, hub and spoke, mesh, admin rule, network managers, connectivity configuration</td><td></td></tr>
<tr title="Microsoft_Azure_ManagedNetwork/NetworkGroupOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedNetwork/NetworkGroupOverview.svg" alt="Network manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network manager</td><td>Microsoft.Network/networkManagers/networkGroups</td><td>network, manager, management, virtual network, avnm, anm, vnm, network group, security admin, hub and spoke, mesh, admin rule, network managers, connectivity configuration</td><td></td></tr>
<tr title="Microsoft_Azure_ManagedNetwork/ConnectivityConfigurationOverview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedNetwork/ConnectivityConfigurationOverview.svg" alt="Network manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network manager</td><td>Microsoft.Network/networkManagers/connectivityConfigurations</td><td>network, manager, management, virtual network, avnm, anm, vnm, network group, security admin, hub and spoke, mesh, admin rule, network managers, connectivity configuration</td><td></td></tr>
<tr title="Microsoft_Azure_ManagedNetwork/NetworkManager"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedNetwork/NetworkManager.svg" alt="Network manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network manager</td><td>Microsoft.Network/networkManagers</td><td>network, manager, management, virtual network, avnm, anm, vnm, network group, security admin, hub and spoke, mesh, admin rule, network managers, connectivity configuration</td><td>Azure Virtual Network Manager enables you to define and apply connectivity and security configurations for your virtual networks across subscriptions and management groups.</td></tr>
<tr title="Microsoft_Azure_ManagedServiceIdentity/UserAssignedIdentity"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedServiceIdentity/UserAssignedIdentity.svg" alt="Managed Identity" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Managed Identity</td><td>Microsoft.ManagedIdentity/userAssignedIdentities</td><td>Identity, Managed Identity, User Assigned Identity</td><td></td></tr>
<tr title="Microsoft_Azure_ManagedStorageClass/ConnectedClusterWithStorageClassPlus"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ManagedStorageClass/ConnectedClusterWithStorageClassPlus.svg" alt="kubernetes 1 - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>kubernetes 1 - Azure Arc</td><td>microsoft.kubernetes/connectedClusters</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_Marketplace/SaasSubscriptionLevel"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Marketplace/SaasSubscriptionLevel.svg" alt="SaaS" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SaaS</td><td>Microsoft.SaaS/resources</td><td>saas</td><td></td></tr>
<tr title="Microsoft_Azure_Marketplace/SaasClassic"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Marketplace/SaasClassic.svg" alt="Software as a Service (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Software as a Service (classic)</td><td>Microsoft.SaaS/applications</td><td>saas</td><td></td></tr>
<tr title="Microsoft_Azure_Marketplace/Saas"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Marketplace/Saas.svg" alt="SaaS (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SaaS (classic)</td><td>Microsoft.SaaS/saasresources</td><td>saas</td><td></td></tr>
<tr title="Microsoft_Azure_Marketplace/GalleryRpItem"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Marketplace/GalleryRpItem.svg" alt="Template" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Template</td><td>Microsoft.Gallery/myareas/galleryitems</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Marketplace/StoreGallery"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Marketplace/StoreGallery.svg" alt="Marketplace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Marketplace</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Marketplace/Gallery"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Marketplace/Gallery.svg" alt="Marketplace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Marketplace</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_MarketplaceTransact/ProfessionalService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MarketplaceTransact/ProfessionalService.svg" alt="Professional Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Professional Service</td><td>Microsoft.ProfessionalService/resources</td><td>Professional, Consulting</td><td>Professional service</td></tr>
<tr title="Microsoft_Azure_Migrate/MigrationProject"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Migrate/MigrationProject.svg" alt="Migration project" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Migration project</td><td>Microsoft.Migrate/projects</td><td>azure migrate,migration,migration planner,planner,project,migrate</td><td>You are on your way to assess your on-premises machines for migration to Azure. Create a project to start the process.</td></tr>
<tr title="Microsoft_Azure_Migrate/AzureMigrationHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Migrate/AzureMigrationHub.svg" alt="Azure Migrate" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Migrate</td><td></td><td>Azure Migrate, database migration, migration, assess, assessment, modernize, modernization, VMware, Hyper-V, .net, dotnet, Java, SQL, TCO, business case, cost planning, app service</td><td></td></tr>
<tr title="Microsoft_Azure_MigrateAssessment/MigrateAssessmentResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MigrateAssessment/MigrateAssessmentResource.svg" alt="Migrate Assessment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Migrate Assessment</td><td>Providers.Test/statefulIbizaEngines</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/Nixtla"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/Nixtla.svg" alt="Nixtla" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Nixtla</td><td></td><td>AI, Hub, AI Studio, Azure AI Studio, AI Foundry, Azure AI Foundry, AI Hub, AI Project, AIStudio, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Train, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning, LLM, Chatbot</td><td>Your platform to build generative AI solutions and custom copilots</td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/ModelProvider"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/ModelProvider.svg" alt="Model Provider" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Model Provider</td><td></td><td>AI, Hub, AI Studio, Azure AI Studio, AI Foundry, Azure AI Foundry, AI Hub, AI Project, AIStudio, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Train, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning, LLM, Chatbot</td><td>Your platform to build generative AI solutions and custom copilots</td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/Mistral"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/Mistral.svg" alt="Mistral" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Mistral</td><td></td><td>AI, Hub, AI Studio, Azure AI Studio, AI Foundry, Azure AI Foundry, AI Hub, AI Project, AIStudio, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Train, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning, LLM, Chatbot</td><td>Your platform to build generative AI solutions and custom copilots</td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/MachineLearningServices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/MachineLearningServices.svg" alt="Azure Machine Learning workspace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Machine Learning workspace</td><td>Microsoft.MachineLearningServices/workspaces</td><td>ML, AML, Machine Learning, AI, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Workbench, Train, Notebooks, AutoML, Designer, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning</td><td>Workspaces are where you manage all the models, assets, and data related to your machine learning projects. Create one now to start using Azure Machine Learning.</td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/Llama2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/Llama2.svg" alt="Llama2" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Llama2</td><td></td><td>AI, Hub, AI Studio, Azure AI Studio, AI Foundry, Azure AI Foundry, AI Hub, AI Project, AIStudio, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Train, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning, LLM, Chatbot</td><td>Your platform to build generative AI solutions and custom copilots</td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/Core42"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/Core42.svg" alt="Core42" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Core42</td><td></td><td>AI, Hub, AI Studio, Azure AI Studio, AI Foundry, Azure AI Foundry, AI Hub, AI Project, AIStudio, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Train, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning, LLM, Chatbot</td><td>Your platform to build generative AI solutions and custom copilots</td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/Cohere"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/Cohere.svg" alt="Cohere" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cohere</td><td></td><td>AI, Hub, AI Studio, Azure AI Studio, AI Foundry, Azure AI Foundry, AI Hub, AI Project, AIStudio, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Train, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning, LLM, Chatbot</td><td>Your platform to build generative AI solutions and custom copilots</td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/AIStudio"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/AIStudio.svg" alt="Azure AI Foundry" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure AI Foundry</td><td>Microsoft.MachineLearningServices/aistudio</td><td>AI, Hub, AI Studio, Azure AI Studio, AI Foundry, Azure AI Foundry, AI Hub, AI Project, AIStudio, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Train, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning, LLM, Chatbot</td><td>Your platform to build generative AI solutions and custom copilots</td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/Registry"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/Registry.svg" alt="Azure Machine Learning registry" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Machine Learning registry</td><td>Microsoft.MachineLearningServices/registries</td><td>ML, AML, Machine Learning, AI, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Workbench, Train, Notebooks, AutoML, Designer, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning</td><td>Workspaces are where you manage all the models, assets, and data related to your machine learning projects. Create one now to start using Azure Machine Learning.</td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/OnlineEndpoint"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/OnlineEndpoint.svg" alt="Machine learning online endpoint" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Machine learning online endpoint</td><td>Microsoft.MachineLearningServices/workspaces/onlineEndpoints</td><td>ML, AML, Machine Learning, AI, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Workbench, Train, Notebooks, AutoML, Designer, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning</td><td>Workspaces are where you manage all the models, assets, and data related to your machine learning projects. Create one now to start using Azure Machine Learning.</td></tr>
<tr title="Microsoft_Azure_MLTeamAccounts/OnlineEndpointDeployment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MLTeamAccounts/OnlineEndpointDeployment.svg" alt="Machine learning online deployment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Machine learning online deployment</td><td>Microsoft.MachineLearningServices/workspaces/onlineEndpoints/deployments</td><td>ML, AML, Machine Learning, AI, Artificial Intelligence, Preview, Deep Learning, Analytics, Data, NLP, Natural Language Processing, CNN, Neural Network, Workbench, Train, Notebooks, AutoML, Designer, Computer Vision, Models, Data Science, Classification, Regression, Reinforcement Learning</td><td>Workspaces are where you manage all the models, assets, and data related to your machine learning projects. Create one now to start using Azure Machine Learning.</td></tr>
<tr title="Microsoft_Azure_ModSimWorkbench/SdwChamberResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ModSimWorkbench/SdwChamberResource.svg" alt="Chamber" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Chamber</td><td>Microsoft.ModSimWorkbench/workbenches/chambers</td><td></td><td>Create a chamber to set up secure workplace which is isolated from other chambers within the Modeling and Simulation Workbench.</td></tr>
<tr title="Microsoft_Azure_ModSimWorkbench/SdwChamberDataPipelineFileResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ModSimWorkbench/SdwChamberDataPipelineFileResource.svg" alt="Chamber Data Pipeline File" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Chamber Data Pipeline File</td><td>Microsoft.ModSimWorkbench/workbenches/chambers/files</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ModSimWorkbench/SdwChamberDataPipelineFileRequestResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ModSimWorkbench/SdwChamberDataPipelineFileRequestResource.svg" alt="Chamber Data Pipeline File Request" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Chamber Data Pipeline File Request</td><td>Microsoft.ModSimWorkbench/workbenches/chambers/fileRequests</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ModSimWorkbench/SdwChamberLicenseResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ModSimWorkbench/SdwChamberLicenseResource.svg" alt="Chamber License" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Chamber License</td><td>Microsoft.ModSimWorkbench/workbenches/chambers/licenses</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ModSimWorkbench/WorkbenchResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ModSimWorkbench/WorkbenchResource.svg" alt="Modeling and Simulation Workbench" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Modeling and Simulation Workbench</td><td>Microsoft.ModSimWorkbench/workbenches</td><td>MSWB, SDW, Silicon, Semiconductor, EDA</td><td>Create a Modeling and Simulation Workbench for deploying a secure, collaborative engineering design environment on Azure.</td></tr>
<tr title="Microsoft_Azure_ModSimWorkbench/SdwChamberConnectorResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ModSimWorkbench/SdwChamberConnectorResource.svg" alt="Chamber Connector" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Chamber Connector</td><td>Microsoft.ModSimWorkbench/workbenches/chambers/connectors</td><td></td><td>Create a chamber connector to connect from on-premises network to specific chamber.</td></tr>
<tr title="Microsoft_Azure_ModSimWorkbench/SdwSharedStorageResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ModSimWorkbench/SdwSharedStorageResource.svg" alt="Shared Storage" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Shared Storage</td><td>Microsoft.ModSimWorkbench/workbenches/sharedStorages</td><td></td><td>Create a shared storage to collaborate across design teams and organizations.</td></tr>
<tr title="Microsoft_Azure_ModSimWorkbench/SdwChamberStorageResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ModSimWorkbench/SdwChamberStorageResource.svg" alt="Chamber Storage" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Chamber Storage</td><td>Microsoft.ModSimWorkbench/workbenches/chambers/storages</td><td></td><td>Create a chamber storage to add a high performance file-storage which is private to this chamber.</td></tr>
<tr title="Microsoft_Azure_ModSimWorkbench/SdwChamberWorkloadResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ModSimWorkbench/SdwChamberWorkloadResource.svg" alt="Chamber VM" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Chamber VM</td><td>Microsoft.ModSimWorkbench/workbenches/chambers/workloads</td><td></td><td>Create a chamber VM to scale your engineering workload’s computing power.</td></tr>
<tr title="Microsoft_Azure_MonitorDashboard/MonitorDashboard"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MonitorDashboard/MonitorDashboard.svg" alt="Azure Monitor Dashboard" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Monitor Dashboard</td><td>Microsoft.Dashboard/dashboards</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_MonitorDashboard/PrivateMonitorDashboard"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_MonitorDashboard/PrivateMonitorDashboard.svg" alt="Azure Monitor Dashboard (PrivateRP)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Monitor Dashboard (PrivateRP)</td><td>Private.MonitorGrafana/dashboards</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_Monitoring/AzureEdgePipeline"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/AzureEdgePipeline.svg" alt="Azure Monitor pipeline (preview)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Monitor pipeline (preview)</td><td>Microsoft.monitor/pipelineGroups</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring/Autoscale"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/Autoscale.svg" alt="Autoscale" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Autoscale</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring/AzureMonitoring"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/AzureMonitoring.svg" alt="Monitor" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Monitor</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring/AzureMonitoringDiagnostics"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/AzureMonitoringDiagnostics.svg" alt="Diagnostic settings" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Diagnostic settings</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring/AzureMonitoringDiagnosticsDetail"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/AzureMonitoringDiagnosticsDetail.svg" alt="Diagnostic settings" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Diagnostic settings</td><td>microsoft.eventhub/namespaces/providers/diagnosticsettings</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring/AzureMonitoringSubscriptionalLevelDiagnosticsDetail"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/AzureMonitoringSubscriptionalLevelDiagnosticsDetail.svg" alt="Diagnostic settings" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Diagnostic settings</td><td>Microsoft.Insights/diagnosticSettings</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring/Metrics"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/Metrics.svg" alt="Metrics" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Metrics</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring/Prometheus"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/Prometheus.svg" alt="Managed Prometheus" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Managed Prometheus</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring/DataCollectionEndpoints"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/DataCollectionEndpoints.svg" alt="Data collection endpoint" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data collection endpoint</td><td>microsoft.insights/datacollectionendpoints</td><td>dce</td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring/DataCollectionRules"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/DataCollectionRules.svg" alt="Data collection rule" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Data collection rule</td><td>microsoft.insights/datacollectionrules</td><td>dcr</td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring/MonitoringAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/MonitoringAccount.svg" alt="Azure Monitor workspace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Monitor workspace</td><td>microsoft.monitor/accounts</td><td>Prometheus metrics</td><td>Azure Monitor workspaces are a data repository for your Azure Monitor telemetry.</td></tr>
<tr title="Microsoft_Azure_Monitoring/PrometheusRuleGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring/PrometheusRuleGroup.svg" alt="Prometheus rule group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Prometheus rule group</td><td>microsoft.alertsmanagement/prometheusrulegroups</td><td>Prometheus</td><td>Create new Prometheus rule groups that can include recording and alert rules.</td></tr>
<tr title="Microsoft_Azure_Monitoring_Alerts/ActionGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring_Alerts/ActionGroup.svg" alt="Action group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Action group</td><td>microsoft.insights/actiongroups</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring_Alerts/ActivityLogAlertRule"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring_Alerts/ActivityLogAlertRule.svg" alt="Activity log alert rule" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Activity log alert rule</td><td>microsoft.insights/activitylogalerts</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring_Alerts/AlertProcessingRule"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring_Alerts/AlertProcessingRule.svg" alt="Alert processing rule" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Alert processing rule</td><td>microsoft.alertsmanagement/actionrules</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring_Alerts/Alerts"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring_Alerts/Alerts.svg" alt="Alerts" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Alerts</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring_Alerts/LogSearchAlertRule"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring_Alerts/LogSearchAlertRule.svg" alt="Log search alert rule" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Log search alert rule</td><td>microsoft.insights/scheduledqueryrules</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring_Alerts/MetricAlertRule"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring_Alerts/MetricAlertRule.svg" alt="Metric alert rule" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Metric alert rule</td><td>microsoft.insights/metricalerts</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Monitoring_Alerts/SmartDetectorAlertRule"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Monitoring_Alerts/SmartDetectorAlertRule.svg" alt="Smart detector alert rule" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Smart detector alert rule</td><td>microsoft.alertsmanagement/smartdetectoralertrules</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetApp/NetAppAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetApp/NetAppAccount.svg" alt="NetApp account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>NetApp account</td><td>Microsoft.NetApp/netAppAccounts</td><td></td><td>Azure NetApp Files makes it easy to migrate and run complex, file-based applications with no code change. With support for multiple protocols and integrated data protection, storage management is simple, fast, and reliable.</td></tr>
<tr title="Microsoft_Azure_NetApp/NfsBackupVault"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetApp/NfsBackupVault.svg" alt="Backup vault" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Backup vault</td><td>Microsoft.NetApp/netAppAccounts/backupVaults</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetApp/NfsPool"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetApp/NfsPool.svg" alt="Capacity pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Capacity pool</td><td>Microsoft.NetApp/netAppAccounts/capacityPools</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetApp/NfsSnapshot"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetApp/NfsSnapshot.svg" alt="Snapshot" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Snapshot</td><td>Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetApp/NfsSnapshotPolicy"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetApp/NfsSnapshotPolicy.svg" alt="Snapshot policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Snapshot policy</td><td>Microsoft.NetApp/netAppAccounts/snapshotPolicies</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetApp/NfsVolume"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetApp/NfsVolume.svg" alt="Volume" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Volume</td><td>Microsoft.NetApp/netAppAccounts/capacityPools/Volumes</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetApp/NfsVolumeGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetApp/NfsVolumeGroup.svg" alt="VolumeGroup" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>VolumeGroup</td><td>Microsoft.NetApp/netAppAccounts/volumeGroups</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetApp/NfsVolumeQuotaRule"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetApp/NfsVolumeQuotaRule.svg" alt="User and group quota" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>User and group quota</td><td>Microsoft.NetApp/netAppAccounts/capacityPools/volumes/volumeQuotaRules</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Network/ApplicationSecurityGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/ApplicationSecurityGroup.svg" alt="Application security group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Application security group</td><td>Microsoft.Network/applicationSecurityGroups</td><td>Network security, Policy, Policies, ASG, NSG</td><td>You can use application security groups to configure network security as natural extension of an application’s structure, by arbitrarily grouping VMs and defining network security policies based on those groups. You can reuse your security policy and scale without manual maintenance of explicit IP addresses. The platform handles the complexity of explicit IP addresses and multiple rule sets, so you can focus on your business logic.</td></tr>
<tr title="Microsoft_Azure_Network/ClassicNetworkSecurityGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/ClassicNetworkSecurityGroup.svg" alt="Network security group (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network security group (classic)</td><td>Microsoft.ClassicNetwork/networkSecurityGroups</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Network/ClassicVirtualNetwork"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/ClassicVirtualNetwork.svg" alt="Virtual network (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual network (classic)</td><td>Microsoft.ClassicNetwork/virtualNetworks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Network/CustomIpPrefix"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/CustomIpPrefix.svg" alt="Custom IP Prefix" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Custom IP Prefix</td><td>Microsoft.Network/customIpPrefixes</td><td>custom, ip, prefix, public, cidr</td><td>Custom IP prefixes allow you to bring your own IP address range to Azure and use it for your Azure resources, including virtual machines, load balancers, application gateways, and VPN gateways. You can create public IP prefixes and public IP addresses from your custom IP prefix.</td></tr>
<tr title="Microsoft_Azure_Network/DdosProtectionPlan"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/DdosProtectionPlan.svg" alt="DDoS protection plan" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>DDoS protection plan</td><td>Microsoft.Network/ddosProtectionPlans</td><td>Security, Denial of Service, Distributed Denial of Service, Network, DDoS</td><td>DDoS Protection leverages the scale and elasticity of Microsoft’s global network to bring massive DDoS mitigation capacity in every Azure region. Microsoft’s DDoS Protection service protects your Azure applications by scrubbing traffic at the Azure network edge before it can impact your service's availability.</td></tr>
<tr title="Microsoft_Azure_Network/DnsZone"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/DnsZone.svg" alt="DNS zone" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>DNS zone</td><td>Microsoft.Network/dnsZones</td><td></td><td>Create a DNS zone to host the DNS records for your domain. After the DNS zone is deployed, you can add your DNS records to the zone.</td></tr>
<tr title="Microsoft_Azure_Network/GuestAssignment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/GuestAssignment.svg" alt="Guest Assignment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Guest Assignment</td><td>Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments</td><td>guest, assignment</td><td>A guest assignment links a virtual machine to a specific configuration defined by Azure Policy. Use guest assignments to enforce compliance and security policies on your virtual machines, such as ensuring that only certain users have administrative privileges, or that certain software is installed and updated. A guest assignment can also perform actions on your virtual machines, such as installing or removing software, or changing settings.</td></tr>
<tr title="Microsoft_Azure_Network/NonAzureGuestAssignment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/NonAzureGuestAssignment.svg" alt="Guest Assignment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Guest Assignment</td><td>Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments</td><td>guest, assignment</td><td>A guest assignment links a virtual machine to a specific configuration defined by Azure Policy. Use guest assignments to enforce compliance and security policies on your virtual machines, such as ensuring that only certain users have administrative privileges, or that certain software is installed and updated. A guest assignment can also perform actions on your virtual machines, such as installing or removing software, or changing settings.</td></tr>
<tr title="Microsoft_Azure_Network/VMSSGuestAssignment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/VMSSGuestAssignment.svg" alt="Guest Assignment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Guest Assignment</td><td>Microsoft.Compute/virtualMachineScaleSets/providers/guestConfigurationAssignments</td><td>guest, assignment</td><td>A guest assignment links a virtual machine to a specific configuration defined by Azure Policy. Use guest assignments to enforce compliance and security policies on your virtual machines, such as ensuring that only certain users have administrative privileges, or that certain software is installed and updated. A guest assignment can also perform actions on your virtual machines, such as installing or removing software, or changing settings.</td></tr>
<tr title="Microsoft_Azure_Network/VMWareGuestAssignment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/VMWareGuestAssignment.svg" alt="Guest Assignment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Guest Assignment</td><td>Microsoft.ConnectedVMwarevSphere/virtualMachines/providers/guestConfigurationAssignments</td><td>guest, assignment</td><td>A guest assignment links a virtual machine to a specific configuration defined by Azure Policy. Use guest assignments to enforce compliance and security policies on your virtual machines, such as ensuring that only certain users have administrative privileges, or that certain software is installed and updated. A guest assignment can also perform actions on your virtual machines, such as installing or removing software, or changing settings.</td></tr>
<tr title="Microsoft_Azure_Network/LoadBalancer"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/LoadBalancer.svg" alt="Load balancer" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Load balancer</td><td>Microsoft.Network/LoadBalancers</td><td>LB, L4, Balancer</td><td>Azure Load Balancer enables your applications to be highly available and scalable. You can scale up and down based on your traffic patterns. Azure Load Balancer is best suited for network traffic requiring high performance and ultra-low latency.</td></tr>
<tr title="Microsoft_Azure_Network/LoadBalancerAndContentDelivery"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/LoadBalancerAndContentDelivery.svg" alt="Load balancing and content delivery" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Load balancing and content delivery</td><td></td><td>Load Balancer, Standard load balancer, Gateway load balancer, Application Gateway, Application Gateway for Containers, Azure front door, AFD</td><td></td></tr>
<tr title="Microsoft_Azure_Network/LoadBalancingHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/LoadBalancingHub.svg" alt="Load balancing - help me choose" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Load balancing - help me choose</td><td></td><td>Load Balancers, Application Gateway, Frontdoor, Traffic Managers, Load Balancing</td><td>View information about different load balancing options in Azure and get guidance on the right services for your requirements.</td></tr>
<tr title="Microsoft_Azure_Network/NatGateway"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/NatGateway.svg" alt="NAT gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>NAT gateway</td><td>Microsoft.Network/natGateways</td><td></td><td>Use Azure NAT Gateway to provide highly resilient and secure outbound connectivity to the internet from private instances in your virtual network. NAT gateway is a fully managed network address translation service that dynamically scales outbound connectivity and helps avoid connectivity failures due to port exhaustion. You can use a single instance to scale across multiple VMs in your network with predictable outbound addresses.</td></tr>
<tr title="Microsoft_Azure_Network/NetworkInterface"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/NetworkInterface.svg" alt="Network interface" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network interface</td><td>Microsoft.Network/networkinterfaces</td><td>NIC, Card, Interface, Network</td><td>Create a network interface and attach it to a virtual machine. A network interface enables a virtual machine to communicate with Internet, Azure, and on-premises resources.</td></tr>
<tr title="Microsoft_Azure_Network/NetworkSecurityGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/NetworkSecurityGroup.svg" alt="Network security group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network security group</td><td>Microsoft.Network/NetworkSecurityGroups</td><td>NSG, port, security, rule, Network, Security, Group</td><td>Create a network security group with rules to filter inbound traffic to, and outbound traffic from, virtual machines and subnets.</td></tr>
<tr title="Microsoft_Azure_Network/NetworkWatcher"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/NetworkWatcher.svg" alt="Network Watcher" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Watcher</td><td></td><td>IP flow verify, Topology, Connectivity check, Packet capture, Next hop, Watcher, Network</td><td>Azure Network Watcher helps you monitor and diagnose your network performance and health in Azure. Use Azure Network Watcher to visualize your network topology, capture network traffic, analyze flow logs, test connectivity, and perform other network diagnostics, including troubleshooting connection problems, packet loss, latency, and security rules.</td></tr>
<tr title="Microsoft_Azure_Network/NetworkWatcherResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/NetworkWatcherResource.svg" alt="Network Watcher" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Watcher</td><td>microsoft.network/networkwatchers</td><td>Watcher, Network</td><td></td></tr>
<tr title="Microsoft_Azure_Network/NSGFlowLog"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/NSGFlowLog.svg" alt="Flow log" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Flow log</td><td>microsoft.network/networkwatchers/flowlogs</td><td>network security groups, flow log</td><td></td></tr>
<tr title="Microsoft_Azure_Network/PrivateEndpoint"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/PrivateEndpoint.svg" alt="Private endpoint" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Private endpoint</td><td>Microsoft.Network/privateEndpoints</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Network/PrivateLinkAssociations"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/PrivateLinkAssociations.svg" alt="Application Gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Application Gateway</td><td>Microsoft.Management/managementGroups/providers/privateLinkAssociations</td><td>AppGw, Load balancer (Layer 7/HTTP), SSL offloading, Web application firewall (WAF), L7, Gateway, Application</td><td></td></tr>
<tr title="Microsoft_Azure_Network/PrivateLinkCenter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/PrivateLinkCenter.svg" alt="Private Link" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Private Link</td><td></td><td>private endpoint, private link service, private link, private</td><td>Azure Private Link allows you to connect your virtual network to Azure services, customer-owned services, or partner services, privately and securely. It helps protect your network from data leakage and exfiltration risks by removing the need for public IP addresses and internet access for those services.</td></tr>
<tr title="Microsoft_Azure_Network/PrivateLinkService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/PrivateLinkService.svg" alt="Private link service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Private link service</td><td>Microsoft.Network/privateLinkServices</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Network/PublicIpAddress"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/PublicIpAddress.svg" alt="Public IP address" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Public IP address</td><td>Microsoft.Network/PublicIpAddresses</td><td></td><td>Public IP addresses allow internet resources to communicate inbound to your Azure resources. You can also associate public IP addresses to Azure resources, like virtual machines, to communicate to the internet and public facing Azure services.</td></tr>
<tr title="Microsoft_Azure_Network/PublicIpPrefix"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/PublicIpPrefix.svg" alt="Public IP Prefix" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Public IP Prefix</td><td>Microsoft.Network/publicIpPrefixes</td><td></td><td>Azure Public IP Prefixes allow you to reserve a range of public IP addresses and use them for your Azure resources. You can create public IP addresses from this static range and assign them to Azure resources, such as virtual machines, NAT gateways, Load balancers, Application gateways, and VPN gateways. This range of IPs can be used to communicate to and from the internet.</td></tr>
<tr title="Microsoft_Azure_Network/ReservedIpAddress"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/ReservedIpAddress.svg" alt="Reserved IP address (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Reserved IP address (classic)</td><td>Microsoft.ClassicNetwork/reservedIps</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Network/ResourceManagementPrivateLink"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/ResourceManagementPrivateLink.svg" alt="Resource management private link" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource management private link</td><td>Microsoft.Authorization/resourceManagementPrivateLinks</td><td>RMPL, control plane, ARM</td><td>Use resource management private links to limit access to Azure Resource Manager's operations by blocking users who aren't connected from a specific private endpoint. You can also block activity coming from public networks.</td></tr>
<tr title="Microsoft_Azure_Network/RouteTable"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/RouteTable.svg" alt="Route table" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Route table</td><td>Microsoft.Network/routeTables</td><td>UDR, Route, Table</td><td>Create a route table when you need to override Azure’s default routing. For example, you can route traffic to a network virtual appliance or to your on-premises network for inspection. A route table contains routes and is associated to one or more subjects.</td></tr>
<tr title="Microsoft_Azure_Network/ServiceEndpointPolicy"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/ServiceEndpointPolicy.svg" alt="Service endpoint policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service endpoint policy</td><td>Microsoft.Network/serviceEndpointPolicies</td><td>Service endpoint, Service endpoints, Service endpoint policy, service endpoint policies, Policy, Policies, Network security</td><td>Service endpoint policies provide granular access control to specific service resources over the direct connection of service endpoints.</td></tr>
<tr title="Microsoft_Azure_Network/VirtualNetwork"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/VirtualNetwork.svg" alt="Virtual network" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual network</td><td>Microsoft.Network/virtualNetworks</td><td>Vnet, Subnet, DDoS, Peering, Virtual, Network</td><td>Create a virtual network to securely connect your Azure resources to each other. Connect your virtual network to your on-premises network using an Azure VPN Gateway or ExpressRoute.</td></tr>
<tr title="Microsoft_Azure_Network/VirtualNetworkTAP"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/VirtualNetworkTAP.svg" alt="Virtual network terminal access point" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual network terminal access point</td><td>microsoft.network/virtualnetworktaps</td><td>tap, virtual, network, terminal, access, point, mirror</td><td></td></tr>
<tr title="Microsoft_Azure_Network/ApplicationGatewayWafPolicy"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/ApplicationGatewayWafPolicy.svg" alt="Application Gateway WAF policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Application Gateway WAF policy</td><td>Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies</td><td>Application gateway, Frontdoor, Front Door, Load balancer, Network, AFD, CDN, Azure Front Door Service, Content Delivery Network, acceleration, DDoS, Protection, Waf, Web application firewall</td><td>Create a Web Application Firewall policy to protect your web applications from common exploits and vulnerabilities, keep your service available and help you meet compliance requirements.</td></tr>
<tr title="Microsoft_Azure_Network/ContentDeliveryNetworkWafPolicy"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/ContentDeliveryNetworkWafPolicy.svg" alt="Content Delivery Network WAF policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Content Delivery Network WAF policy</td><td>Microsoft.Cdn/CdnWebApplicationFirewallPolicies</td><td>Application gateway, Load balancer, Network, AFD, CDN, Content Delivery Network, acceleration, DDoS, Protection, Waf, Web application firewall</td><td>Create a Web Application Firewall policy to protect your web applications from common exploits and vulnerabilities, keep your service available and help you meet compliance requirements.</td></tr>
<tr title="Microsoft_Azure_Network/FrontdoorWafPolicy"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network/FrontdoorWafPolicy.svg" alt="Front Door WAF policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Front Door WAF policy</td><td>Microsoft.Network/FrontDoorWebApplicationFirewallPolicies</td><td>Application gateway, Frontdoor, Front Door, Load balancer, Network, AFD, CDN, Azure Front Door Service, Content Delivery Network, acceleration, DDoS, Protection, Waf, Web application firewall</td><td>Create a Web Application Firewall policy to protect your web applications from common exploits and vulnerabilities, keep your service available and help you meet compliance requirements.</td></tr>
<tr title="Microsoft_Azure_NetworkCloud/VolumeResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/VolumeResource.svg" alt="Volume (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Volume (Operator Nexus)</td><td>Microsoft.NetworkCloud/volumes</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/ConsoleResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/ConsoleResource.svg" alt="Virtual Machine Console (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual Machine Console (Operator Nexus)</td><td>Microsoft.NetworkCloud/virtualMachines/consoles</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/VirtualMachineResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/VirtualMachineResource.svg" alt="Virtual Machine (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual Machine (Operator Nexus)</td><td>Microsoft.NetworkCloud/virtualMachines</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/TrunkedNetworksResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/TrunkedNetworksResource.svg" alt="Trunked Network (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Trunked Network (Operator Nexus)</td><td>Microsoft.NetworkCloud/trunkedNetworks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/StorageApplianceResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/StorageApplianceResource.svg" alt="Storage Appliance (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Storage Appliance (Operator Nexus)</td><td>Microsoft.NetworkCloud/storageAppliances</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/OperatorNexusHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/OperatorNexusHub.svg" alt="Operator Nexus" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Operator Nexus</td><td></td><td></td><td>Azure Operator Nexus is a carrier-grade hybrid cloud platform built for mission-critical mobile network applications.</td></tr>
<tr title="Microsoft_Azure_NetworkCloud/RoutePoliciesResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/RoutePoliciesResource.svg" alt="Route Policy (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Route Policy (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/RoutePolicies</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NetworkTapRuleResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NetworkTapRuleResource.svg" alt="Network Tap Rule (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Tap Rule (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/networkTapRules</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NetworkTapResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NetworkTapResource.svg" alt="Network Tap (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Tap (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/networkTaps</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NetworkRacksResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NetworkRacksResource.svg" alt="Network Rack (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Rack (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/NetworkRacks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NetworkPacketBrokersResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NetworkPacketBrokersResource.svg" alt="Network Packet Broker (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Packet Broker (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/NetworkPacketBrokers</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NetworkInterfaceResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NetworkInterfaceResource.svg" alt="Network Interface (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Interface (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/NetworkDevices/networkInterfaces</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NetworkFabricControllersResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NetworkFabricControllersResource.svg" alt="Network Fabric Controller (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Fabric Controller (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/networkFabricControllers</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NetworkFabricResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NetworkFabricResource.svg" alt="Network Fabric (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Fabric (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/NetworkFabrics</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NetworkDevicesResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NetworkDevicesResource.svg" alt="Network Device (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Device (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/NetworkDevices</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NeighborGroupsResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NeighborGroupsResource.svg" alt="Neighbor Group (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Neighbor Group (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/NeighborGroups</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NetworkToNetworkInterconnectResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NetworkToNetworkInterconnectResource.svg" alt="Network to Network Interconnect (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network to Network Interconnect (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/NetworkFabrics/networkToNetworkInterconnects</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/L3IsolationDomainsResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/L3IsolationDomainsResource.svg" alt="Layer 3 Isolation Domain (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Layer 3 Isolation Domain (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/l3IsolationDomains</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/L2IsolationDomainsResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/L2IsolationDomainsResource.svg" alt="Layer 2 Isolation Domain (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Layer 2 Isolation Domain (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/l2IsolationDomains</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/IPPrefixesResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/IPPrefixesResource.svg" alt="IP Prefix (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IP Prefix (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/ipPrefixes</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/IPExtendedCommunitiesResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/IPExtendedCommunitiesResource.svg" alt="IP Extended Community (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IP Extended Community (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/ipExtendedCommunities</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/IPCommunitiesResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/IPCommunitiesResource.svg" alt="IP Community (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>IP Community (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/ipCommunities</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/InternetGatewayRulesResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/InternetGatewayRulesResource.svg" alt="Internet Gateway Rule (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Internet Gateway Rule (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/internetGatewayRules</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/InternetGatewaysResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/InternetGatewaysResource.svg" alt="Internet Gateway (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Internet Gateway (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/internetGateways</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/InternalNetworkResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/InternalNetworkResource.svg" alt="Internal Network (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Internal Network (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/l3IsolationDomains/internalNetworks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/ExternalNetworkResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/ExternalNetworkResource.svg" alt="External Network (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>External Network (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/l3IsolationDomains/externalNetworks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/AccessControlListsResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/AccessControlListsResource.svg" alt="Access Control List (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Access Control List (Operator Nexus)</td><td>Microsoft.ManagedNetworkFabric/accessControlLists</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/NexusAksClusterResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/NexusAksClusterResource.svg" alt="Kubernetes Cluster (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Kubernetes Cluster (Operator Nexus)</td><td>Microsoft.NetworkCloud/kubernetesClusters</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/Layer3NetworksResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/Layer3NetworksResource.svg" alt="Layer 3 Network (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Layer 3 Network (Operator Nexus)</td><td>Microsoft.NetworkCloud/l3Networks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/Layer2NetworksResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/Layer2NetworksResource.svg" alt="Layer 2 Network (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Layer 2 Network (Operator Nexus)</td><td>Microsoft.NetworkCloud/l2Networks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/ComputeRackResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/ComputeRackResource.svg" alt="Compute Rack (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Compute Rack (Operator Nexus)</td><td>Microsoft.NetworkCloud/racks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/ClusterMetricConfigResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/ClusterMetricConfigResource.svg" alt="Cluster Metrics Configuration (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cluster Metrics Configuration (Operator Nexus)</td><td>Microsoft.NetworkCloud/clusters/metricsConfigurations</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/ClusterMgrResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/ClusterMgrResource.svg" alt="Cluster Manager (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cluster Manager (Operator Nexus)</td><td>Microsoft.NetworkCloud/clusterManagers</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/ClusterBmmKeysetResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/ClusterBmmKeysetResource.svg" alt="Cluster Bare Metal Machine Key Set (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cluster Bare Metal Machine Key Set (Operator Nexus)</td><td>Microsoft.NetworkCloud/clusters/bareMetalMachineKeySets</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/ClusterBmcKeysetResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/ClusterBmcKeysetResource.svg" alt="Cluster Baseboard Management Controller Key Set (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cluster Baseboard Management Controller Key Set (Operator Nexus)</td><td>Microsoft.NetworkCloud/clusters/bmcKeySets</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/ClusterResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/ClusterResource.svg" alt="Cluster (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cluster (Operator Nexus)</td><td>Microsoft.NetworkCloud/clusters</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/CloudServicesNet"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/CloudServicesNet.svg" alt="Cloud Services Network (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cloud Services Network (Operator Nexus)</td><td>Microsoft.NetworkCloud/cloudServicesNetworks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/BareMetalMachineResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/BareMetalMachineResource.svg" alt="Bare Metal Machine (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Bare Metal Machine (Operator Nexus)</td><td>Microsoft.NetworkCloud/bareMetalMachines</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCloud/AgentPoolResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCloud/AgentPoolResource.svg" alt="Agent Pool (Operator Nexus)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Agent Pool (Operator Nexus)</td><td>Microsoft.NetworkCloud/kubernetesClusters/agentPools</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NetworkCopilotExtension/MyResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkCopilotExtension/MyResource.svg" alt="My Resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>My Resource</td><td>Providers.Test/statefulIbizaEngines</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_NetworkSecurityPerimeter/networkSecurityPerimeter"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkSecurityPerimeter/networkSecurityPerimeter.svg" alt="Network Security Perimeter" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Security Perimeter</td><td>Microsoft.Network/networkSecurityPerimeters</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Network Security Perimeter is a boundary around PaaS resources. Access between resources on the same network security perimeter is allowed by default.</td></tr>
<tr title="Microsoft_Azure_NetworkSecurityPerimeter/NspProfiles"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NetworkSecurityPerimeter/NspProfiles.svg" alt="Network Security Perimeter" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Security Perimeter</td><td>Microsoft.Network/networkSecurityPerimeters/profiles</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Network Security Perimeter is a boundary around PaaS resources. Access between resources on the same network security perimeter is allowed by default.</td></tr>
<tr title="Microsoft_Azure_Network_Access/NetworkAccess"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Network_Access/NetworkAccess.svg" alt="Global Secure Access" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Global Secure Access</td><td></td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_NotificationHubs/Namespace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NotificationHubs/Namespace.svg" alt="Notification Hub Namespace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Notification Hub Namespace</td><td>Microsoft.NotificationHubs/namespaces</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_NotificationHubs/NotificationHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_NotificationHubs/NotificationHub.svg" alt="Notification Hub" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Notification Hub</td><td>Microsoft.NotificationHubs/namespaces/notificationHubs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_OneInventory/ResourceGraphVisualizer"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_OneInventory/ResourceGraphVisualizer.svg" alt="Resource Graph Visualizer" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource Graph Visualizer</td><td>Microsoft.Resources/resourceGraphVisualizer</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_OneInventory/ResourceChange"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_OneInventory/ResourceChange.svg" alt="Change Analysis (preview)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Change Analysis (preview)</td><td>Microsoft.Resources/resourceChange</td><td>Azure,Azure One Inventory,One Inventory,OneInventory,Change,Changes,Resource Changes,Change Configuration,Change Analysis,Change Analysis (preview)</td><td>View changes in all resources under selected subscriptions to mitigate and diagnose Azure application issues and to monitor Azure resources.</td></tr>
<tr title="Microsoft_Azure_OneInventory/MyResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_OneInventory/MyResource.svg" alt="My Resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>My Resource</td><td>Providers.Test/statefulIbizaEngines</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_OneMigrate/AzureOneMigrate"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_OneMigrate/AzureOneMigrate.svg" alt="OneMigrate" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>OneMigrate</td><td></td><td>One Migrate, Assess</td><td></td></tr>
<tr title="Microsoft_Azure_OnlineExperimentation/OnlineExperimentationWorkspace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_OnlineExperimentation/OnlineExperimentationWorkspace.svg" alt="Online Experimentation Workspace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Online Experimentation Workspace</td><td>microsoft.onlineexperimentation/workspaces</td><td>Online Experimentation Workspace, Online Experimentation, OnlineExperimentation</td><td>An online experiment workspace resource.</td></tr>
<tr title="Microsoft_Azure_OpenEnergyPlatform/OpenEnergyResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_OpenEnergyPlatform/OpenEnergyResource.svg" alt="Azure Data Manager for Energy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Data Manager for Energy</td><td>Microsoft.OpenEnergyPlatform/energyServices</td><td>Microsoft Energy Data Services, Energy Data Services, microsoft energy data services, energy data services, MEDS, meds, Project Oak Forest, Oak Forest, Oak, project oak forest, oak forest, oak, Azure Open Energy Platform, Open Energy Platform, azure open energy platform,open energy platform, OEP, oep, ADME, adme, Azure data manager, Azure data manager for energy, energy, energy data, microsoft energy, microsoft energy data, oil, gas, petroleum, seismic, seismic data, geoscience</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_OperationsMgr/Aquila"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_OperationsMgr/Aquila.svg" alt="SCOM managed instance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SCOM managed instance</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_OperationsMgr/AquilaExtensionResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_OperationsMgr/AquilaExtensionResource.svg" alt="SCOM managed instance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SCOM managed instance</td><td>Microsoft.Scom/managedInstances</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/CloudAccessRouters"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/CloudAccessRouters.svg" alt="Cloud Access Router" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cloud Access Router</td><td>Microsoft.Orbital/cloudAccessRouters</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/CloudAccessTerminals"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/CloudAccessTerminals.svg" alt="Cloud Access Terminal" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Cloud Access Terminal</td><td>Microsoft.Orbital/terminals</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/AzureOrbitalCloudAccess"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/AzureOrbitalCloudAccess.svg" alt="Azure Orbital Cloud Access" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Orbital Cloud Access</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/SDWANControllers"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/SDWANControllers.svg" alt="SDWAN Controller" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SDWAN Controller</td><td>Microsoft.Orbital/sdwanControllers</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/Contacts"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/Contacts.svg" alt="Contact" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Contact</td><td>Microsoft.Orbital/spacecrafts/contacts</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/ContactProfiles"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/ContactProfiles.svg" alt="Contact Profile" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Contact Profile</td><td>Microsoft.Orbital/contactProfiles</td><td>contactprofile,contact profile,contact config,contact xml</td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/EdgeSites"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/EdgeSites.svg" alt="Edge Site" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Edge Site</td><td>Microsoft.Orbital/EdgeSites</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/geoCatalogs"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/geoCatalogs.svg" alt="GeoCatalog" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>GeoCatalog</td><td>Microsoft.Orbital/geoCatalogs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/GroundStations"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/GroundStations.svg" alt="Ground Station" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Ground Station</td><td>Microsoft.Orbital/GroundStations</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/L2Connections"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/L2Connections.svg" alt="L2 Connection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>L2 Connection</td><td>Microsoft.Orbital/l2Connections</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/AzureOrbital"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/AzureOrbital.svg" alt="Azure Orbital" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Orbital</td><td></td><td>space,orbital,ground station,azure orbital ground station,aogs,gsaas,kratos,viasat,ksat,teleport</td><td></td></tr>
<tr title="Microsoft_Azure_Orbital/Spacecrafts"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Orbital/Spacecrafts.svg" alt="Spacecraft" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Spacecraft</td><td>Microsoft.Orbital/spacecrafts</td><td>spacecraft,satellite,spaceship,rocket</td><td></td></tr>
<tr title="Microsoft_Azure_OSSDatabases/PostgreSqlFlexibleServer"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_OSSDatabases/PostgreSqlFlexibleServer.svg" alt="Azure Database for PostgreSQL - Flexible Server" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Database for PostgreSQL - Flexible Server</td><td>Microsoft.DBforPostgreSQL/flexibleServers</td><td>postgresql,postgres,postgre,pg,pgsql,open source,oss,database,relational,flexible,single,flexible server</td><td>Azure Database for PostgreSQL flexible server is a fully managed Azure Database service based on the PostgreSQL open source relational database, optimized for performance, security and cost efficiency.</td></tr>
<tr title="Microsoft_Azure_OSSDatabases/MySqlFlexibleServer"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_OSSDatabases/MySqlFlexibleServer.svg" alt="Azure Database for MySQL flexible server" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Database for MySQL flexible server</td><td>Microsoft.DBforMySQL/flexibleServers</td><td>MySQL,sql,open source,OSS,database,relational,flexible,single,flexible server</td><td></td></tr>
<tr title="Microsoft_Azure_PaasServerless/TaskHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PaasServerless/TaskHub.svg" alt="Task Hub" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Task Hub</td><td>Microsoft.DurableTask/Schedulers/TaskHubs</td><td>task hub</td><td></td></tr>
<tr title="Microsoft_Azure_PaasServerless/MyResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PaasServerless/MyResource.svg" alt="My Resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>My Resource</td><td>Providers.Test/statefulIbizaEngines</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_PaasServerless/IntegrationSpace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PaasServerless/IntegrationSpace.svg" alt="Integration Environment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Integration Environment</td><td>Microsoft.IntegrationSpaces/spaces</td><td>integration environment</td><td></td></tr>
<tr title="Microsoft_Azure_PaasServerless/DurableTaskScheduler"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PaasServerless/DurableTaskScheduler.svg" alt="Durable Task Scheduler" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Durable Task Scheduler</td><td>Microsoft.DurableTask/Schedulers</td><td>durable task managed backend</td><td></td></tr>
<tr title="Microsoft_Azure_PaasServerless/BusinessProcessTracking"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PaasServerless/BusinessProcessTracking.svg" alt="Business Process" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Business Process</td><td>Microsoft.Logic/businessprocesses</td><td>business process</td><td></td></tr>
<tr title="Microsoft_Azure_PaasServerless/AppSpaces"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PaasServerless/AppSpaces.svg" alt="App Space" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>App Space</td><td>Microsoft.App/spaces</td><td>starshot, app service, container app, containers, kubernetes, compute, container, microservices, autoscale, api, events, background jobs, background processing, serverless, keda, app spaces, app space, project, azd, dev, cli</td><td></td></tr>
<tr title="Microsoft_Azure_Peering/AzurePeering"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Peering/AzurePeering.svg" alt="Peering" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Peering</td><td>Microsoft.Peering/peerings</td><td>peering, networking, network, peer, PNI, asn, interconnect</td><td>This page is meant for Internet Service Providers (ISP) and Internet Exchange Providers. Peering is the direct interconnection between Microsoft’s network (AS8075) and another network for the purpose of exchanging traffic between these networks.</td></tr>
<tr title="Microsoft_Azure_Peering/MicrosoftPeeringService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Peering/MicrosoftPeeringService.svg" alt="Peering Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Peering Service</td><td>Microsoft.Peering/peeringServices</td><td>peering, networking, network, peer, PNI, asn, interconnect</td><td>Microsoft Peering Service allows the monitoring of Internet performance between customer locations and Microsoft Network and for a selected list of Internet providers part of the program</td></tr>
<tr title="Microsoft_Azure_Peering/MicrosoftPeeringServicePrefix"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Peering/MicrosoftPeeringServicePrefix.svg" alt="Peering Service Prefix" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Peering Service Prefix</td><td>Microsoft.Peering/peeringServices/prefixes</td><td>peering, networking, network, peer, PNI, asn, interconnect</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_Peering/RegisteredAsn"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Peering/RegisteredAsn.svg" alt="Registered ASN" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Registered ASN</td><td>Microsoft.Peering/peerings/registeredAsns</td><td>registered ASN</td><td>The registered asn description</td></tr>
<tr title="Microsoft_Azure_Peering/RegisteredPrefix"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Peering/RegisteredPrefix.svg" alt="Registered prefix" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Registered prefix</td><td>Microsoft.Peering/peerings/registeredPrefixes</td><td>registered prefix</td><td>The registered prefix description</td></tr>
<tr title="Microsoft_Azure_PIMCommon/BrowsePIM"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PIMCommon/BrowsePIM.svg" alt="Microsoft Entra Privileged Identity Management" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Entra Privileged Identity Management</td><td></td><td>activate,eligible,assignment,access,access control,privileged,PIM,PAM,protect,azure ad,microsoft entra,aad,secure,active directory,active,my,security,identity,governance</td><td>Protect your organization from the risk of compromised permanent privileged user accounts by managing, controlling, and monitoring your privileged identities. Privileged Identity Management provides you a way to enable on-demand time limited access for administrative tasks.</td></tr>
<tr title="Microsoft_Azure_PlaywrightService/PlaywrightService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PlaywrightService/PlaywrightService.svg" alt="Playwright Testing" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Playwright Testing</td><td>Microsoft.AzurePlaywrightService/accounts</td><td>Playwright service, Browser automation, playwright</td><td>Use Microsoft Playwright testing to run tests faster across browsers and OS platforms, and gain actionable insights from a unified reporting dashboard.</td></tr>
<tr title="Microsoft_Azure_Policy/ArmBlueprintHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Policy/ArmBlueprintHub.svg" alt="Blueprint" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Blueprint</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Policy/PolicyHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Policy/PolicyHub.svg" alt="Policy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Policy</td><td></td><td>Tag, Policy, Regulatory Compliance, Governance, Security, Assignment, Definition, Initiative</td><td></td></tr>
<tr title="Microsoft_Azure_PortalDashboard/DashboardHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PortalDashboard/DashboardHub.svg" alt="Dashboard hub" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Dashboard hub</td><td></td><td>Dashboard hub, Private dashboards, Shared dashboards, DashboardV2</td><td></td></tr>
<tr title="Microsoft_Azure_PortalDashboard/Dashboards"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PortalDashboard/Dashboards.svg" alt="Shared dashboard" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Shared dashboard</td><td>Microsoft.Portal/dashboards</td><td>Shared dashboards</td><td></td></tr>
<tr title="Microsoft_Azure_PortalDashboard/DashboardsV2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PortalDashboard/DashboardsV2.svg" alt="Shared dashboard (preview)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Shared dashboard (preview)</td><td>Microsoft.Portalservices/dashboards</td><td>Shared dashboards (preview)</td><td></td></tr>
<tr title="Microsoft_Azure_PowerBIDedicated/PowerBIDedicated"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PowerBIDedicated/PowerBIDedicated.svg" alt="Power BI Embedded" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Power BI Embedded</td><td>Microsoft.PowerBIDedicated/capacities</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_PowerPlatform/PowerPlatform"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PowerPlatform/PowerPlatform.svg" alt="Power Platform" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Power Platform</td><td></td><td>apps, developer, business applications, web apps, mobile apps, process automation, rpa, robotic process automation, workflows, approvals, analytics, analysis, dashboards, visualization, reports, low code, no code, biz apps, powerapps, flow, power bi, flows, analyze, power bi embedded, embed</td><td></td></tr>
<tr title="Microsoft_Azure_PrivateAiForScience_Catalog/CatalogResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PrivateAiForScience_Catalog/CatalogResource.svg" alt="Catalog" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Catalog</td><td>Private.AiForScience/catalogs</td><td>Catalog</td><td>Create a catalog resource</td></tr>
<tr title="Microsoft_Azure_PrivateDNS/PrivateDnsZone"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PrivateDNS/PrivateDnsZone.svg" alt="Private DNS zone" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Private DNS zone</td><td>Microsoft.Network/privateDnsZones</td><td>Private DNS zone, Private DNS, DNS zone, Record Sets, Virtual Network links, Network</td><td>Azure Private DNS provides a reliable, secure DNS service to manage and resolve domain names in a virtual network without the need to add a custom DNS solution. By using private DNS zones, you can use your own custom domain names rather than the Azure-provided names available today. Using custom domain names helps you to tailor your virtual network architecture to best suit your organization's needs. It provides name resolution for virtual machines (VMs) within a virtual network and between virtual networks. Additionally, you can configure zones names with a split-horizon view, which allows a private and a public DNS zone to share the name.</td></tr>
<tr title="Microsoft_Azure_ProgrammableConnectivity/OperatorApiPlanResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProgrammableConnectivity/OperatorApiPlanResource.svg" alt="APC Operator API Plan" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>APC Operator API Plan</td><td>Microsoft.ProgrammableConnectivity/operatorApiPlans</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ProgrammableConnectivity/OperatorApiConnectionResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProgrammableConnectivity/OperatorApiConnectionResource.svg" alt="APC Operator API Connection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>APC Operator API Connection</td><td>Microsoft.ProgrammableConnectivity/operatorApiConnections</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ProgrammableConnectivity/GatewayResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProgrammableConnectivity/GatewayResource.svg" alt="APC Gateway" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>APC Gateway</td><td>Microsoft.ProgrammableConnectivity/gateways</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ProjectBabylon/PurviewAccountResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectBabylon/PurviewAccountResource.svg" alt="Microsoft Purview account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Purview account</td><td>Microsoft.Purview/Accounts</td><td></td><td>Maximize the business value of data with Microsoft Purview, a unified data governance solution.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/AIServices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/AIServices.svg" alt="Azure AI services" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure AI services</td><td>Microsoft.CognitiveServices/BrowseAIServices</td><td>Vision, computer vision, face, face recognition, face identification, OCR, optical character recognition, content moderator, text moderation, image moderation, video moderation, emotion, emotion recognition, custom vision, custom computer vision, video indexer, video analysis, image analysis, translator, speech translator, text translator, speech translation, text translation, translate, speaker recognition, speaker identification, text to speech, speech to text, tts, stt, custom speech, custom voice, custom acoustic model, language understanding, luis, spell check, speller, language, text analysis, sentiment analysis, key phrase extraction, QnA maker, QnAMaker, q&a, Q & A, question extraction, custom decision, reinforcement learning, Azure AI services, cognitive, vision, speech, language, knowledge, face, vision, academic, spell, spellcheck, autosuggest, speech, custom speech, customspeech, emotion, speaker recognition, recognition, translation, translator, translate, language, textanalytics, analytics, weblanguagemodel, weblm, languagemodel, web language model, language model, recommendations, language understanding, luis, search, content moderator, Personal, Personalizer, Personalization, Personalized, Ink, Ink analysis, Ink recognition , Ink recognizer, translator text, anomaly detector, openai</td><td></td></tr>
<tr title="Microsoft_Azure_ProjectOxford/AllInOne"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/AllInOne.svg" alt="Azure AI services multi-service account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure AI services multi-service account</td><td>Microsoft.CognitiveServices/BrowseAllInOne</td><td></td><td>Add multiple Azure AI services to your application.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/AnomalyDetector"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/AnomalyDetector.svg" alt="Anomaly detector" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Anomaly detector</td><td>Microsoft.CognitiveServices/BrowseAnomalyDetector</td><td></td><td>Identify potential problems early on.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/CognitiveServicesAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/CognitiveServicesAccount.svg" alt="Azure AI services" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure AI services</td><td>Microsoft.CognitiveServices/accounts</td><td>Vision, computer vision, face, face recognition, face identification, OCR, optical character recognition, content moderator, text moderation, image moderation, video moderation, emotion, emotion recognition, custom vision, custom computer vision, video indexer, video analysis, image analysis, translator, speech translator, text translator, speech translation, text translation, translate, speaker recognition, speaker identification, text to speech, speech to text, tts, stt, custom speech, custom voice, custom acoustic model, language understanding, luis, spell check, speller, language, text analysis, sentiment analysis, key phrase extraction, QnA maker, QnAMaker, q&a, Q & A, question extraction, custom decision, reinforcement learning, Azure AI services, cognitive, vision, speech, language, knowledge, face, vision, academic, spell, spellcheck, autosuggest, speech, custom speech, customspeech, emotion, speaker recognition, recognition, translation, translator, translate, language, textanalytics, analytics, weblanguagemodel, weblm, languagemodel, web language model, language model, recommendations, language understanding, luis, search, content moderator, Personal, Personalizer, Personalization, Personalized, Ink, Ink analysis, Ink recognition , Ink recognizer, translator text, anomaly detector</td><td>Embed the ability to see, hear, speak, search, understand and accelerate decision-making with Azure AI services.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/ComputerVision"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/ComputerVision.svg" alt="Computer vision" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Computer vision</td><td>Microsoft.CognitiveServices/BrowseComputerVision</td><td></td><td>Analyze content in images and videos.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/ContentModerator"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/ContentModerator.svg" alt="Content moderator" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Content moderator</td><td>Microsoft.CognitiveServices/BrowseContentModerator</td><td></td><td>Detect potentially offensive or unwanted content.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/ContentSafety"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/ContentSafety.svg" alt="Content safety" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Content safety</td><td>Microsoft.CognitiveServices/BrowseContentSafety</td><td></td><td>An AI service that detects unwanted contents.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/CustomVision"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/CustomVision.svg" alt="Custom vision" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Custom vision</td><td>Microsoft.CognitiveServices/BrowseCustomVision</td><td></td><td>Customize image recognition to fit your business.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/Face"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/Face.svg" alt="Face API" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Face API</td><td>Microsoft.CognitiveServices/BrowseFace</td><td></td><td>Detect and identify people and emotions in images.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/FormRecognizer"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/FormRecognizer.svg" alt="Document intelligence" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Document intelligence</td><td>Microsoft.CognitiveServices/BrowseFormRecognizer</td><td>AI, Applied AI, Form, Form recognition, Form understanding</td><td>Turn documents into usable data at a fraction of the time and cost.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/HealthDecisionSupport"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/HealthDecisionSupport.svg" alt="Health decision support" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Health decision support</td><td>Microsoft.CognitiveServices/BrowseHealthDecisionSupport</td><td>health decision, AI</td><td>Health decision support</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/HealthInsights"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/HealthInsights.svg" alt="Health Insights" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Health Insights</td><td>Microsoft.CognitiveServices/BrowseHealthInsights</td><td>health insights, AI</td><td>Health Insights serves insight models, which perform analysis to support a human decision.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/ImmersiveReader"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/ImmersiveReader.svg" alt="Immersive reader" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Immersive reader</td><td>Microsoft.CognitiveServices/BrowseImmersiveReader</td><td>AI, Applied AI</td><td>Help users read and comprehend text.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/LUIS"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/LUIS.svg" alt="Language understanding" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Language understanding</td><td>Microsoft.CognitiveServices/BrowseLUIS</td><td>language understanding, luis</td><td>Understand natural language in your apps.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/MetricsAdvisor"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/MetricsAdvisor.svg" alt="Metrics advisor" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Metrics advisor</td><td>Microsoft.CognitiveServices/BrowseMetricsAdvisor</td><td>AI, Applied AI</td><td>Proactively monitor metrics and diagnose issues.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/OpenAI"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/OpenAI.svg" alt="Azure OpenAI" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure OpenAI</td><td>Microsoft.CognitiveServices/BrowseOpenAI</td><td>OpenAI, open ai, open, ai, davinci</td><td>Perform a wide variety of natural language tasks.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/Personalizer"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/Personalizer.svg" alt="Personalizer" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Personalizer</td><td>Microsoft.CognitiveServices/BrowsePersonalizer</td><td></td><td>Create rich, personalized experiences for each user.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/QnAMaker"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/QnAMaker.svg" alt="QnA maker" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>QnA maker</td><td>Microsoft.CognitiveServices/BrowseQnAMaker</td><td>q&a, Q & A, question extraction</td><td>Distill information into easy-to-navigate questions and answers.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/SpeechServices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/SpeechServices.svg" alt="Speech service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Speech service</td><td>Microsoft.CognitiveServices/BrowseSpeechServices</td><td></td><td>Speech to text, text to speech, translation and speaker recognition.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/TextAnalytics"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/TextAnalytics.svg" alt="Language" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Language</td><td>Microsoft.CognitiveServices/BrowseTextAnalytics</td><td>Azure AI services, Cognitive, Azure AI services, qna, qna maker, question, answer, custom qna, LUIS, machine teaching, LU, intelligent service, language, language understanding, language orchestrator, conversational language understanding, CLU, entity recognition, named entity recognition, NER, information extraction, entity extraction, language detection, natural language processing, NLP, sentiment analysis, sentiment, voice of customer, relationship extraction, relation extraction, keyword extraction, keyword detection, document classification, summarization, multi-document summarization, single-document summarization, aspect-based sentiment, biomedical information extraction, comprehend, medical information extraction, text analysis, text analytics, textual analysis, key phrase extraction, key phrase recognition, key phrase detection, SpaCy, entity linking, entity normalization, FSI, financial services, unstructured text, unstructured data</td><td>Build apps with industry-leading natural language understanding capabilities.</td></tr>
<tr title="Microsoft_Azure_ProjectOxford/TextTranslation"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ProjectOxford/TextTranslation.svg" alt="Translator" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Translator</td><td>Microsoft.CognitiveServices/BrowseTextTranslation</td><td>translate, translator, transation</td><td>Translate more than 100 languages and dialects.</td></tr>
<tr title="Microsoft_Azure_PSC/SustainabilityCalculations"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_PSC/SustainabilityCalculations.svg" alt="Project Sustainability Calculator (Preview)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Project Sustainability Calculator (Preview)</td><td>Microsoft.SustainabilityServices/calculations</td><td>Sustainability</td><td>Start assessing your organization’s environmental emissions footprint across scope 1, scope 2, and scope 3 by creating a Project Sustainability Calculator resource.</td></tr>
<tr title="Microsoft_Azure_Quantum/QuantumWorkspace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Quantum/QuantumWorkspace.svg" alt="Quantum Workspace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Quantum Workspace</td><td>Microsoft.Quantum/Workspaces</td><td>azure quantum qsharp Q#</td><td>Create a quantum workspace to access diverse quantum resources today. Try now with free credits.</td></tr>
<tr title="Microsoft_Azure_Quantum/AzureQuantum"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Quantum/AzureQuantum.svg" alt="Azure Quantum" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Quantum</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_RecommendationsService/Account"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_RecommendationsService/Account.svg" alt="Intelligent Recommendations Account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Intelligent Recommendations Account</td><td>Microsoft.RecommendationsService/accounts</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_RecommendationsService/Modeling"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_RecommendationsService/Modeling.svg" alt="Modeling" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Modeling</td><td>Microsoft.RecommendationsService/accounts/modeling</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_RecommendationsService/ServiceEndpoint"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_RecommendationsService/ServiceEndpoint.svg" alt="Service Endpoint" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service Endpoint</td><td>Microsoft.RecommendationsService/accounts/serviceEndpoints</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_RecoveryServices/BackupItem"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_RecoveryServices/BackupItem.svg" alt="Backup Item" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Backup Item</td><td>Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_RecoveryServices/RecoveryServicesResourceINTD2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_RecoveryServices/RecoveryServicesResourceINTD2.svg" alt="Recovery Services INTD2" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recovery Services INTD2</td><td>Microsoft.RecoveryServicesINTD2/vaults</td><td>Backup, Disaster recovery, Azure Site Recovery, DR, Virtual machine backup, Virtual machine disaster recovery, VM backup, VM disaster recovery, BCDR, Protection</td><td></td></tr>
<tr title="Microsoft_Azure_RecoveryServices/RecoveryServicesResourceINTD"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_RecoveryServices/RecoveryServicesResourceINTD.svg" alt="Recovery Services INTD" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recovery Services INTD</td><td>Microsoft.RecoveryServicesINTD/vaults</td><td>Backup, Disaster recovery, Azure Site Recovery, DR, Virtual machine backup, Virtual machine disaster recovery, VM backup, VM disaster recovery, BCDR, Protection</td><td></td></tr>
<tr title="Microsoft_Azure_RecoveryServices/RecoveryServicesResourceBVTD2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_RecoveryServices/RecoveryServicesResourceBVTD2.svg" alt="Recovery Services BVTD2" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recovery Services BVTD2</td><td>Microsoft.RecoveryServicesBVTD2/vaults</td><td>Backup, Disaster recovery, Azure Site Recovery, DR, Virtual machine backup, Virtual machine disaster recovery, VM backup, VM disaster recovery, BCDR, Protection</td><td></td></tr>
<tr title="Microsoft_Azure_RecoveryServices/RecoveryServicesResourceBVTD"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_RecoveryServices/RecoveryServicesResourceBVTD.svg" alt="Recovery Services BVTD" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recovery Services BVTD</td><td>Microsoft.RecoveryServicesBVTD/vaults</td><td>Backup, Disaster recovery, Azure Site Recovery, DR, Virtual machine backup, Virtual machine disaster recovery, VM backup, VM disaster recovery, BCDR, Protection</td><td></td></tr>
<tr title="Microsoft_Azure_RecoveryServices/RecoveryServicesResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_RecoveryServices/RecoveryServicesResource.svg" alt="Recovery Services vault" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recovery Services vault</td><td>Microsoft.RecoveryServices/vaults</td><td>Backup, Disaster recovery, Azure Site Recovery, DR, Virtual machine backup, Virtual machine disaster recovery, VM backup, VM disaster recovery, BCDR, Protection</td><td>A disaster recovery and data protection strategy keeps your business running when unexpected events occur. Get started by creating a Recovery Services vault.</td></tr>
<tr title="Microsoft_Azure_RecoveryServices/ReplicationJobAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_RecoveryServices/ReplicationJobAsset.svg" alt="Replication job" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Replication job</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Relay/WcfRelay"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Relay/WcfRelay.svg" alt="WCF Relay" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>WCF Relay</td><td>Microsoft.Relay/namespaces/WcfRelays</td><td></td><td>The WCF Relay, which is the other capability of the Azure Relay Service, uses HTTP(S) and TCP protocols to work with the full .NET Framework and establish a connection between on-premises services and the relay service through relay bindings that map to transport binding elements designed for WCF channel components to integrate with the Service Bus Service.</td></tr>
<tr title="Microsoft_Azure_Relay/Relay"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Relay/Relay.svg" alt="Relay" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Relay</td><td>Microsoft.Relay/namespaces</td><td>WcfRelay, WCF Relay, HybridConnection, Hybrid Connection, Hybrid</td><td>Azure Relay namespaces serve as scoping containers for all components, allowing for multiple relays within a single namespace and often serving as application containers.</td></tr>
<tr title="Microsoft_Azure_Relay/HybridConnection"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Relay/HybridConnection.svg" alt="Hybrid Connection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Hybrid Connection</td><td>Microsoft.Relay/namespaces/HybridConnections</td><td></td><td>Hybrid Connections, one of the two capabilities of the Relay service, uses WebSocket's or HTTP(S) for secure and reliable communication, facilitating data transfer between network applications through various communication streams without requiring changes to existing security infrastructure.</td></tr>
<tr title="Microsoft_Azure_Reservations/ReservationsBrowseAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/ReservationsBrowseAsset.svg" alt="Reservation" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Reservation</td><td></td><td>reserved,reserved instance,reservation,cost optimization,save,money,cost,Virtual machines,SQL Database,Azure Synapse Analytics (formerly SQL Data Warehouse),Azure Cosmos DB,Azure Blob Storage,Azure Dedicated Host,Azure Database for MySQL,Azure Database for MariaDB,Azure Database for PostgreSQL,Azure Managed Disks,Azure Databricks,Azure Cache for Redis,Azure Data Explorer,SUSE Linux,Red Hat Plans,Azure VMware Solution by CloudSimple,Azure Red Hat Openshift,App Services,Azure VMware Solution,Data Factory,Azure Files Reserved Capacity</td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/SavingsPlanBrowseAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/SavingsPlanBrowseAsset.svg" alt="Savings plan" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Savings plan</td><td></td><td>savings plan,savingsPlan,cost optimization,save,money,cost,compute,virtual machines</td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/ContingencyBillingAdminAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/ContingencyBillingAdminAsset.svg" alt="Incentive Schedule" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Incentive Schedule</td><td>Microsoft.Billing/billingAccounts/incentiveSchedules</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/ContingencyBrowseAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/ContingencyBrowseAsset.svg" alt="Incentive Schedule" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Incentive Schedule</td><td></td><td>incentive, schedule, incentiveschedule, incentives</td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/ContingencyServiceAdminAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/ContingencyServiceAdminAsset.svg" alt="Incentive Schedule" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Incentive Schedule</td><td>Microsoft.BillingBenefits/incentiveSchedules</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/ReservationAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/ReservationAsset.svg" alt="Reservation" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Reservation</td><td>Microsoft.Capacity/reservationorders/reservations</td><td>reserved,reserved instance,reservation,cost optimization,save,money,cost,Virtual machines,SQL Database,Azure Synapse Analytics (formerly SQL Data Warehouse),Azure Cosmos DB,Azure Blob Storage,Azure Dedicated Host,Azure Database for MySQL,Azure Database for MariaDB,Azure Database for PostgreSQL,Azure Managed Disks,Azure Databricks,Azure Cache for Redis,Azure Data Explorer,SUSE Linux,Red Hat Plans,Azure VMware Solution by CloudSimple,Azure Red Hat Openshift,App Services,Azure VMware Solution,Data Factory,Azure Files Reserved Capacity</td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/SavingsPlanItemAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/SavingsPlanItemAsset.svg" alt="Savings plan" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Savings plan</td><td>Microsoft.Billing/billingAccounts/savingsPlanOrders/savingsPlans</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/SavingsPlanItemServiceAdminAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/SavingsPlanItemServiceAdminAsset.svg" alt="Savings plan" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Savings plan</td><td>Microsoft.BillingBenefits/savingsPlanOrders/savingsPlans</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/MaccBrowseAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/MaccBrowseAsset.svg" alt="Microsoft Azure Consumption Commitment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Azure Consumption Commitment</td><td>Microsoft.BillingBenefits/maccs</td><td>macc, maccs</td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/MilestoneBillingAdminAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/MilestoneBillingAdminAsset.svg" alt="Milestone" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Milestone</td><td>Microsoft.Billing/billingAccounts/incentiveSchedules/milestones</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/MilestoneServiceAdminAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/MilestoneServiceAdminAsset.svg" alt="Milestone" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Milestone</td><td>Microsoft.BillingBenefits/incentiveSchedules/milestones</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/ReservationOrderAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/ReservationOrderAsset.svg" alt="Reservation order" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Reservation order</td><td>Microsoft.Capacity/reservationorders</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/SavingsPlanOrderAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/SavingsPlanOrderAsset.svg" alt="Savings plan order" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Savings plan order</td><td>Microsoft.Billing/billingAccounts/savingsPlanOrders</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Reservations/SavingsPlanOrderServiceAdminAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Reservations/SavingsPlanOrderServiceAdminAsset.svg" alt="Savings plan order" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Savings plan order</td><td>Microsoft.BillingBenefits/savingsPlanOrders</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ResourceMove/AzureResourceMoveHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ResourceMove/AzureResourceMoveHub.svg" alt="Azure Resource Mover" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Resource Mover</td><td></td><td>Azure;Resource Move;Resource Mover;Azure resource mover; Region move;</td><td></td></tr>
<tr title="Microsoft_Azure_Resources/WhatsNew"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/WhatsNew.svg" alt="What's new" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>What's new</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Resources/UserPrivacy"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/UserPrivacy.svg" alt="User privacy" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>User privacy</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Resources/ServiceGroupMembersRelationships"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/ServiceGroupMembersRelationships.svg" alt="Service group member relationship" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service group member relationship</td><td>microsoft.relationships/servicegroupmember</td><td>Service Groups, members, relationships</td><td></td></tr>
<tr title="Microsoft_Azure_Resources/DependencyRelationships"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/DependencyRelationships.svg" alt="Dependency Relationship" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Dependency Relationship</td><td>microsoft.relationships/dependencyOf</td><td>Dependencies, relationships</td><td></td></tr>
<tr title="Microsoft_Azure_Resources/ResourceManager"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/ResourceManager.svg" alt="Resource Manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource Manager</td><td></td><td></td><td>Navigate the resource hierarchy of Azure Portal and leverage management tools in one unified hub - explore your subscriptions, resource groups, resources, tags, and more.</td></tr>
<tr title="Microsoft_Azure_Resources/ResourceChanges"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/ResourceChanges.svg" alt="Resource change" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource change</td><td>Microsoft.Resources/resourceChanges</td><td>Resource change</td><td>Resource changes</td></tr>
<tr title="Microsoft_Azure_Resources/DeletedResources"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/DeletedResources.svg" alt="Recycle Bin" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Recycle Bin</td><td>Microsoft.Resources/deletedResources</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Resources/Quickstart"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/Quickstart.svg" alt="Quickstart Center" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Quickstart Center</td><td></td><td>getting started, launch, quickstart, free, free trial, get started, welcome, start, free tier, quick, new, checklist, tutorial, lesson</td><td></td></tr>
<tr title="Microsoft_Azure_Resources/OperationLog"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/OperationLog.svg" alt="Operation log (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Operation log (classic)</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Resources/ManagementGroups"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/ManagementGroups.svg" alt="Management group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Management group</td><td></td><td>Management, Manage, Managed, Management groups, Groups, govern, Governance, subscription</td><td>Use Management groups to facilitate consistent policies, access control, and compliance across your organization.</td></tr>
<tr title="Microsoft_Azure_Resources/GitHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/GitHub.svg" alt="GitHub" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>GitHub</td><td></td><td></td><td>Unlock innovation at scale with the AI-powered developer platform to build, scale, deliver and deploy secure software to the cloud with GitHub Enterprise and Azure.</td></tr>
<tr title="Microsoft_Azure_Resources/AzureDataBoundary"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/AzureDataBoundary.svg" alt="Azure Data Boundaries" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Data Boundaries</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Resources/Deployment"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/Deployment.svg" alt="Deployment" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Deployment</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Resources/StackManagementGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/StackManagementGroup.svg" alt="Deployment stack" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Deployment stack</td><td>Microsoft.Management/managementGroups/Microsoft.Resources/deploymentStacks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Resources/Stack"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/Stack.svg" alt="Deployment stack" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Deployment stack</td><td>Microsoft.Resources/deploymentStacks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Resources/Rollout"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/Rollout.svg" alt="Rollout" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Rollout</td><td>Microsoft.DeploymentManager/Rollouts</td><td>rollout</td><td></td></tr>
<tr title="Microsoft_Azure_Resources/APIPlayground"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/APIPlayground.svg" alt="API Playground" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>API Playground</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Resources/PreviewFeaturesArg"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/PreviewFeaturesArg.svg" alt="Preview features" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Preview features</td><td>microsoft.features/featureprovidernamespaces/featureconfigurations</td><td>preview, features, pre-release</td><td>You can now opt in and out of pre-release features with Preview Features. Register, unregister, and keep track of registration state.</td></tr>
<tr title="Microsoft_Azure_Resources/PreviewFeatures"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Resources/PreviewFeatures.svg" alt="Preview features" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Preview features</td><td></td><td>preview, features, pre-release</td><td>You can now opt in and out of pre-release features with Preview Features. Register, unregister, and keep track of registration state.</td></tr>
<tr title="Microsoft_Azure_SaasHub/SaaSHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SaasHub/SaaSHub.svg" alt="Microsoft SaaS (Preview)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft SaaS (Preview)</td><td>Microsoft.SaaSHub/cloudServices/hidden</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Azure_SapHanaInstances/AzureLargeInstance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SapHanaInstances/AzureLargeInstance.svg" alt="Azure Large Instance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Large Instance</td><td>Microsoft.AzureLargeInstance/azureLargeInstances</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_SapHanaInstances/BareMetalInstance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SapHanaInstances/BareMetalInstance.svg" alt="BareMetal Instance" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>BareMetal Instance</td><td>Microsoft.BareMetalInfrastructure/bareMetalInstances</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_SapHanaInstances/HanaInstance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SapHanaInstances/HanaInstance.svg" alt="SAP HANA on Azure" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SAP HANA on Azure</td><td>Microsoft.HanaOnAzure/hanaInstances</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_SAPManagement/SAP_App_Server_instance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SAPManagement/SAP_App_Server_instance.svg" alt="App server instance for SAP solutions" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>App server instance for SAP solutions</td><td>Microsoft.Workloads/sapVirtualInstances/applicationInstances</td><td>App server, Application server, SAP, Instance, Application server instance for SAP solutions, Application server instances for SAP solutions, App server instance for SAP solutions, App server instances for SAP solutions, Appl server instance for SAP solutions, Appl server instances for SAP solutions</td><td>App server instance is part of a Virtual Instance for SAP solutions. Try changing or clearing your filters. You can also Create a Virtual instance for SAP solutions that runs on Azure to take advantage of the best that Azure has to offer.</td></tr>
<tr title="Microsoft_Azure_SAPManagement/SAP_Central_Server_instance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SAPManagement/SAP_Central_Server_instance.svg" alt="Central service instance for SAP solutions" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Central service instance for SAP solutions</td><td>Microsoft.Workloads/sapVirtualInstances/centralInstances</td><td>Central, SAP, Instance, Central services instance for SAP solutions, Central services instances for SAP solutions, Central service instance for SAP solutions, Central service instances for SAP solutions</td><td>Central service instance is part of a Virtual Instance for SAP solutions. Try changing or clearing your filters. You can also Create a Virtual instance for SAP solutions that runs on Azure to take advantage of the best that Azure has to offer.</td></tr>
<tr title="Microsoft_Azure_SAPManagement/SAP_DB_Server_instance"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SAPManagement/SAP_DB_Server_instance.svg" alt="Database for SAP solutions" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Database for SAP solutions</td><td>Microsoft.Workloads/sapVirtualInstances/databaseInstances</td><td>Database, SAP, Instance, Database instance for SAP solutions, Database instances for SAP solutions, Database for SAP solutions, Databases for SAP solutions</td><td>Database is part of a Virtual Instance for SAP solutions. Try changing or clearing your filters. You can also Create a Virtual instance for SAP solutions that runs on Azure to take advantage of the best that Azure has to offer.</td></tr>
<tr title="Microsoft_Azure_SAPManagement/SAPOnAzure"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SAPManagement/SAPOnAzure.svg" alt="Azure Center for SAP solutions" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Center for SAP solutions</td><td></td><td>ACSS, Azure, SAP, ACS, SAP Center, Azure Center for SAP solutions</td><td>Azure Center for SAP solutions is an Azure native offering that makes SAP a top-level workload in Azure. It enables end-customers and service providers to seamlessly deploy or manage their SAP systems on Azure.</td></tr>
<tr title="Microsoft_Azure_SAPManagement/SapVirtualInstanceAsset"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SAPManagement/SapVirtualInstanceAsset.svg" alt="Virtual Instance for SAP solutions" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual Instance for SAP solutions</td><td>Microsoft.Workloads/sapVirtualInstances</td><td>SVI, VIS, SAP, Virtual, Virtual Instances for SAP solutions, Virtual Instance for SAP solutions</td><td>Create a Virtual Instances for SAP solutions that runs on Azure in order to take advantage of the best that Azure has to offer.</td></tr>
<tr title="Microsoft_Azure_Search/SearchService"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Search/SearchService.svg" alt="Search service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Search service</td><td>Microsoft.Search/searchServices</td><td>applied ai, applied, azure applied, search, azure search, azure AI search, semantic search, semantic ranker, ai search, cognitive search, knowledge mining, rag, vectors, vector search, vector database</td><td>Information retrieval at scale for generative AI (RAG) and classic search over user-owned content.</td></tr>
<tr title="Microsoft_Azure_Security/SecurityDashboard"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Security/SecurityDashboard.svg" alt="Microsoft Defender for Cloud" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Defender for Cloud</td><td></td><td>governance, control plane, Defender for Cloud, security, secure score, security state, security health</td><td></td></tr>
<tr title="Microsoft_Azure_Security/SecurityAlerts"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Security/SecurityAlerts.svg" alt="Security Alert" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Security Alert</td><td>microsoft.security/locations/alerts</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Security_Insights/Entity"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Security_Insights/Entity.svg" alt="Microsoft Sentinel" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Sentinel</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Security_Insights/Incident"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Security_Insights/Incident.svg" alt="Microsoft Sentinel incident" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Sentinel incident</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Security_Insights/SecurityInsightsDashboard"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Security_Insights/SecurityInsightsDashboard.svg" alt="Microsoft Sentinel" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft Sentinel</td><td>microsoft.securityinsightsarg/sentinel</td><td></td><td>See and stop threats before they cause harm, with SIEM reinvented for a modern world. Microsoft Sentinel is your birds-eye view across the enterprise.</td></tr>
<tr title="Microsoft_Azure_Security_IoT/AzureIoTSecurity"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Security_IoT/AzureIoTSecurity.svg" alt="Azure Iot Hub Security" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Iot Hub Security</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ServiceBus/ServiceBusTopic"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceBus/ServiceBusTopic.svg" alt="Service Bus Topic" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service Bus Topic</td><td>Microsoft.ServiceBus/namespaces/topics</td><td></td><td>Azure Service Bus topic are publish-subscribe messaging entities that enable decoupling of messaging between multiple sender and receiver applications, allowing for broadcast-style messaging.</td></tr>
<tr title="Microsoft_Azure_ServiceBus/ServiceBusSubscription"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceBus/ServiceBusSubscription.svg" alt="Service Bus Subscription" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service Bus Subscription</td><td>Microsoft.ServiceBus/namespaces/topics/subscriptions</td><td></td><td>Azure Service Bus topic subscriptions are named virtual destinations that receive messages from a topic based on a specified set of filtering rules, enabling selective and targeted message consumption by a receiver application.</td></tr>
<tr title="Microsoft_Azure_ServiceBus/ServiceBusQueue"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceBus/ServiceBusQueue.svg" alt="Service Bus Queue" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service Bus Queue</td><td>Microsoft.ServiceBus/namespaces/queues</td><td></td><td>Azure Service Bus queues are messaging entities that allow decoupling between sender and receiver applications, ensuring reliable and asynchronous message delivery, using a first in / first out approach.</td></tr>
<tr title="Microsoft_Azure_ServiceBus/ServiceBusDrConfig"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceBus/ServiceBusDrConfig.svg" alt="Service Bus Geo-DR Alias" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service Bus Geo-DR Alias</td><td>Microsoft.ServiceBus/namespaces/disasterrecoveryconfigs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_ServiceBus/ServiceBus"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceBus/ServiceBus.svg" alt="Service Bus Namespace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service Bus Namespace</td><td>Microsoft.ServiceBus/namespaces</td><td>Queue, Topic, Subscription, FIFO, Integration, Message, messaging, Enterprise messaging, JMS, Java Message Service, Message Queues, MQ, Queuing, Spring JMS, Spring Messaging</td><td>Azure Service Bus is a fully managed enterprise message broker with message queues and publish-subscribe topics, used to decouple applications and services from each other.</td></tr>
<tr title="Microsoft_Azure_ServiceFabric/ServiceFabricCluster"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceFabric/ServiceFabricCluster.svg" alt="Service Fabric cluster" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service Fabric cluster</td><td>Microsoft.ServiceFabric/clusters</td><td></td><td>Azure Service Fabric is a distributed systems platform that makes it easy to package, deploy, and manage scalable and reliable microservices and containers. These traditional Service Fabric clusters require defining additional supporting resources. To simplify deployment and management, consider using Service Fabric managed clusters instead of traditional Service Fabric clusters.</td></tr>
<tr title="Microsoft_Azure_ServiceFabric/ManagedServiceFabricCluster"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceFabric/ManagedServiceFabricCluster.svg" alt="Service Fabric managed cluster" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Service Fabric managed cluster</td><td>Microsoft.ServiceFabric/managedclusters</td><td></td><td>Azure Service Fabric is a distributed systems platform that makes it easy to package, deploy, and manage scalable and reliable microservices and containers. Service Fabric managed clusters are an evolution of the Service Fabric cluster resource model that streamlines your deployment and cluster management experience. The encapsulation model consists of a single, Service Fabric managed cluster resource. All of the underlying resources for the cluster are abstracted away and managed by Azure on your behalf.</td></tr>
<tr title="Microsoft_Azure_ServiceHub/RPaaS_ResourceProvider"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceHub/RPaaS_ResourceProvider.svg" alt="Resource Provider as a Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource Provider as a Service</td><td>Microsoft.ProviderHub/ProviderRegistrations</td><td></td><td>Create a fully-integrated Azure service with Resource Provider as a Service</td></tr>
<tr title="Microsoft_Azure_ServiceHub/RPaaS_ResourceType"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceHub/RPaaS_ResourceType.svg" alt="Resource Type" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource Type</td><td>Microsoft.ProviderHub/ProviderRegistrations/ResourceTypeRegistrations</td><td></td><td>Create resource type to define the business logic by specifying how you’d like your service to respond to API calls to your Swagger. You can select from common quickstart models or customize it from a blank model.</td></tr>
<tr title="Microsoft_Azure_ServiceHub/RPaaS_ResourceTypeNestedOne"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceHub/RPaaS_ResourceTypeNestedOne.svg" alt="Resource Type" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Resource Type</td><td>Microsoft.ProviderHub/ProviderRegistrations/ResourceTypeRegistrations/ResourceTypeRegistrations</td><td></td><td>Create resource type to define the business logic by specifying how you’d like your service to respond to API calls to your Swagger. You can select from common quickstart models or customize it from a blank model.</td></tr>
<tr title="Microsoft_Azure_ServiceHub/RPaaS_CustomRollout"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceHub/RPaaS_CustomRollout.svg" alt="Rollout" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Rollout</td><td>Microsoft.Providerhub/providerRegistrations/customRollouts</td><td></td><td>Azure resource provider enables you to deliver your service functionality as native Azure resources in the Azure Control Plane. Deliver them to your organization or release globally and monetize as a part of a new Azure service.</td></tr>
<tr title="Microsoft_Azure_ServiceHub/RPaaS_Rollout"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ServiceHub/RPaaS_Rollout.svg" alt="Rollout" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Rollout</td><td>Microsoft.Providerhub/providerRegistrations/defaultRollouts</td><td></td><td>Azure resource provider enables you to deliver your service functionality as native Azure resources in the Azure Control Plane. Deliver them to your organization or release globally and monetize as a part of a new Azure service.</td></tr>
<tr title="Microsoft_Azure_SignalR/WebPubSubReplica"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SignalR/WebPubSubReplica.svg" alt="Web PubSub Service Replica" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Web PubSub Service Replica</td><td>Microsoft.SignalRService/WebPubSub/replicas</td><td></td><td>Use Azure Web PubSub Replica to enable geo-replication for Azure Web PubSub.</td></tr>
<tr title="Microsoft_Azure_SignalR/WebPubSub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SignalR/WebPubSub.svg" alt="Web PubSub Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Web PubSub Service</td><td>Microsoft.SignalRService/WebPubSub</td><td>webpubsub,pubsub,mqtt,websocket</td><td>Use Azure Web PubSub to simplify the development, deployment and management of real time web application using WebSocket, including MQTT over WebSocket.</td></tr>
<tr title="Microsoft_Azure_SignalR/SignalRReplica"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SignalR/SignalRReplica.svg" alt="SignalR Replica" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SignalR Replica</td><td>Microsoft.SignalRService/SignalR/replicas</td><td></td><td>Use Azure SignalR Replica to enable geo-replication for Azure SignalR service.</td></tr>
<tr title="Microsoft_Azure_SignalR/SignalR"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SignalR/SignalR.svg" alt="SignalR" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SignalR</td><td>Microsoft.SignalRService/SignalR</td><td></td><td>Use Azure SignalR Service to simplify the development, deployment and management of real time web application using SignalR.</td></tr>
<tr title="Microsoft_Azure_SiteManager/SiteConfig"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SiteManager/SiteConfig.svg" alt="Site configuration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Site configuration</td><td>Microsoft.Edge/Configurations</td><td></td><td>Sites</td></tr>
<tr title="Microsoft_Azure_SiteManager/SiteManager"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_SiteManager/SiteManager.svg" alt="Site manager - Azure Arc" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Site manager - Azure Arc</td><td>Microsoft.Edge/sites</td><td>Sites,edge,hybrid,on-premises</td><td>Sites</td></tr>
<tr title="Microsoft_Azure_Sphere/AzureSphereArm"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Sphere/AzureSphereArm.svg" alt="Azure Sphere Catalog" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Sphere Catalog</td><td>microsoft.azuresphere/catalogs</td><td>Azure Sphere Catalog</td><td>Manage your Azure Sphere Catalog, products, device groups, and devices in the Azure portal.</td></tr>
<tr title="Microsoft_Azure_Sphere/AzureSphere"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Sphere/AzureSphere.svg" alt="Azure Sphere (Legacy)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Sphere (Legacy)</td><td></td><td>Azure Sphere (Legacy)</td><td>Manage your Legacy Azure Sphere Catalog, products, device groups, and devices in the Azure portal.</td></tr>
<tr title="Microsoft_Azure_Storage/StorageBrowser"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Storage/StorageBrowser.svg" alt="Storage browser" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Storage browser</td><td></td><td>Storage browser, Storage explorer, Containers, Blobs, Shares, Files, Queues</td><td></td></tr>
<tr title="Microsoft_Azure_Storage/StorageAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Storage/StorageAccount.svg" alt="Storage account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Storage account</td><td>Microsoft.Storage/StorageAccounts</td><td>Storage, account, objects, blobs, tables, queues, file, files, disks, images, containers, share, shares, browser, gpv2, general-purpose v2, adls2, ADLS Gen2, Azure Data Lake, datalake, Data Lake Gen 2, S3, EBS, Glacier, IaaS, Azure Files, Azure Premium Files, Shared file system, file share, SMB, NFS, Volume, NAS</td><td>Create a storage account to store up to 500TB of data in the cloud. Use a general-purpose storage account to store object data, use a NoSQL data store, define and use queues for message processing, and set up file shares in the cloud. Use the Blob storage account and the hot or cool access tiers to optimize your costs based on how frequently your object data is accessed.</td></tr>
<tr title="Microsoft_Azure_Storage/ClassicStorageAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Storage/ClassicStorageAccount.svg" alt="Storage account (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Storage account (classic)</td><td>Microsoft.ClassicStorage/StorageAccounts</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_StorageCache/StorageCache"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_StorageCache/StorageCache.svg" alt="HPC cache" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>HPC cache</td><td>Microsoft.StorageCache/caches</td><td>UX UI design patterns sample extension ibiza consistency</td><td>File caching for high-performance computing (HPC). Run flexible, file-based workloads in Azure.</td></tr>
<tr title="Microsoft_Azure_StorageCache/AmlFileSystems"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_StorageCache/AmlFileSystems.svg" alt="Azure Managed Lustre" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Managed Lustre</td><td>Microsoft.StorageCache/amlFilesystems</td><td>UX UI design patterns sample extension ibiza consistency</td><td>File caching for high-performance computing (HPC). Run flexible, file-based workloads in Azure.</td></tr>
<tr title="Microsoft_Azure_StorageMover/StorageMover"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_StorageMover/StorageMover.svg" alt="Storage mover" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Storage mover</td><td>Microsoft.StorageMover/storageMovers</td><td>Storage mover</td><td>Azure Storage Mover is a migration service for your on-premises file shares to Azure.</td></tr>
<tr title="Microsoft_Azure_StorageTasks/StorageTasks"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_StorageTasks/StorageTasks.svg" alt="Storage task - Azure Storage Actions" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Storage task - Azure Storage Actions</td><td>Microsoft.StorageActions/storageTasks</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_StorageTasks/AzureStorageActions"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_StorageTasks/AzureStorageActions.svg" alt="Azure Storage Action" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Storage Action</td><td></td><td>Azure Storage Actions, storage actions, actions, storage, storage tasks</td><td>Storage Actions offers a full spectrum of serverless data capabilities across use-cases and role types.</td></tr>
<tr title="Microsoft_Azure_StreamAnalytics/StreamAnalyticsCluster"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_StreamAnalytics/StreamAnalyticsCluster.svg" alt="Stream Analytics cluster" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Stream Analytics cluster</td><td>Microsoft.StreamAnalytics/clusters</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_StreamAnalytics/StreamAnalyticsJob"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_StreamAnalytics/StreamAnalyticsJob.svg" alt="Stream Analytics job" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Stream Analytics job</td><td>Microsoft.StreamAnalytics/StreamingJobs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Support/SupportRequest"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Support/SupportRequest.svg" alt="Support Request" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Support Request</td><td>microsoft.support/supporttickets</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Support/HelpAndSupport"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Support/HelpAndSupport.svg" alt="Help + support" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Help + support</td><td></td><td>Resource health</td><td></td></tr>
<tr title="Microsoft_Azure_Surface/SurfaceDashboard"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Surface/SurfaceDashboard.svg" alt="Surface Management Portal" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Surface Management Portal</td><td></td><td>UX UI design patterns sample extension ibiza consistency</td><td>Centralized portal for IT admins to self-serve, manage and monitor Surface devices at scale</td></tr>
<tr title="Microsoft_Azure_Sustainability/Sustainability"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Sustainability/Sustainability.svg" alt="Carbon optimization" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Carbon optimization</td><td></td><td>emissions sustainability carbon footprint green cloud IT</td><td></td></tr>
<tr title="Microsoft_Azure_Synapse/SynapsePrivateLinkHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Synapse/SynapsePrivateLinkHub.svg" alt="Synapse private link hub" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Synapse private link hub</td><td>Microsoft.Synapse/privateLinkHubs</td><td>Synapse,privatelinkhubs,Analytics,synapseanalytics,synapseworkspace,Studio,privateendpoints,private,endpoint,privatelink,link</td><td>Azure Synapse Analytics Private link hubs allow you to connect to Azure Synapse Studio using a private endpoint. Network traffic between clients in your Azure VNet and Synapse Studio traverses over the private link on the Microsoft backbone network, eliminating exposure from the public Internet.</td></tr>
<tr title="Microsoft_Azure_Synapse/ScopePool"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Synapse/ScopePool.svg" alt="SCOPE pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>SCOPE pool</td><td>Microsoft.Synapse/workspaces/scopePools</td><td>SCOPE pool</td><td>SCOPE pool for Synapse Analytics workspaces</td></tr>
<tr title="Microsoft_Azure_Synapse/SparkPool"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Synapse/SparkPool.svg" alt="Apache Spark pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Apache Spark pool</td><td>Microsoft.Synapse/workspaces/bigDataPools</td><td>Apache Spark pool</td><td>Apache Spark pool for Synapse Analytics workspaces</td></tr>
<tr title="Microsoft_Azure_Synapse/SynapseSqlPool"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Synapse/SynapseSqlPool.svg" alt="Dedicated SQL pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Dedicated SQL pool</td><td>Microsoft.Synapse/workspaces/sqlPools</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Synapse/SynapseWorkspace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Synapse/SynapseWorkspace.svg" alt="Synapse workspace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Synapse workspace</td><td>Microsoft.Synapse/workspaces</td><td>Synapse,workspace,dw,datawarehouse,Analytics,pool,SQL,Apache,Spark,data,sqldatawarehouse,synapseanalytics,synapseworkspace</td><td>Synapse Analytics is a fully-managed service to build modern data warehouses for enterprises. Synapse Analytics brings together SQL, Apache Spark, Orchestration, and Ingestion into a single workspace, dramatically reducing the time to build an analytics solution.</td></tr>
<tr title="Microsoft_Azure_TemplateSpecs/ArmBuiltInTemplateSpec"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_TemplateSpecs/ArmBuiltInTemplateSpec.svg" alt="Built-in template spec" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Built-in template spec</td><td>Microsoft.Resources/builtInTemplateSpecs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_TemplateSpecs/ArmTemplateSpec"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_TemplateSpecs/ArmTemplateSpec.svg" alt="Template spec" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Template spec</td><td>Microsoft.Resources/templateSpecs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_TemplateSpecs/ArmTemplateSpecMG"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_TemplateSpecs/ArmTemplateSpecMG.svg" alt="Template spec" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Template spec</td><td>Microsoft.Management/managementgroups/providers/templatespecs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_TemplateSpecs/ArmTemplateSpecsHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_TemplateSpecs/ArmTemplateSpecsHub.svg" alt="Template spec" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Template spec</td><td></td><td></td><td></td></tr>
<tr title="Microsoft_Azure_TemplateSpecs/DeploymentScriptHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_TemplateSpecs/DeploymentScriptHub.svg" alt="Deployment Script" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Deployment Script</td><td>Microsoft.Resources/deploymentScripts</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Toolbox/Gallery"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Toolbox/Gallery.svg" alt="Azure Toolbox" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Toolbox</td><td></td><td>toolbox</td><td></td></tr>
<tr title="Microsoft_Azure_Toolbox/Overview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Toolbox/Overview.svg" alt="Azure Toolbox" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Toolbox</td><td></td><td>toolbox</td><td></td></tr>
<tr title="Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_pipelines_outputselectors_2023_12_01_preview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_pipelines_outputselectors_2023_12_01_preview.svg" alt="Microsoft.UsageBilling accounts pipelines output selector" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.UsageBilling accounts pipelines output selector</td><td>microsoft.usagebilling/accounts/pipelines/outputselectors</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_pipelines_2023_12_01_preview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_pipelines_2023_12_01_preview.svg" alt="Microsoft.UsageBilling accounts pipeline" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.UsageBilling accounts pipeline</td><td>microsoft.usagebilling/accounts/pipelines</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_pav2outputs_2023_12_01_preview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_pav2outputs_2023_12_01_preview.svg" alt="Microsoft.UsageBilling accounts pav2output" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.UsageBilling accounts pav2output</td><td>microsoft.usagebilling/accounts/pav2outputs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_metricexports_2023_12_01_preview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_metricexports_2023_12_01_preview.svg" alt="Microsoft.UsageBilling accounts metric export" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.UsageBilling accounts metric export</td><td>microsoft.usagebilling/accounts/metricexports</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_inputs_2023_12_01_preview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_inputs_2023_12_01_preview.svg" alt="Microsoft.UsageBilling accounts input" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.UsageBilling accounts input</td><td>microsoft.usagebilling/accounts/inputs</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_dataexports_2023_12_01_preview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_dataexports_2023_12_01_preview.svg" alt="Microsoft.UsageBilling accounts data export" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.UsageBilling accounts data export</td><td>microsoft.usagebilling/accounts/dataexports</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_2023_12_01_preview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_UsageBilling/microsoft_usagebilling_accounts_2023_12_01_preview.svg" alt="Microsoft.UsageBilling account" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.UsageBilling account</td><td>microsoft.usagebilling/accounts</td><td>Oro Usage Account, Oro, UsageBilling</td><td></td></tr>
<tr title="Microsoft_Azure_VirtualEnclaves/Workload"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualEnclaves/Workload.svg" alt="Workload" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Workload</td><td>Microsoft.Mission/virtualEnclaves/workloads</td><td></td><td>Creating a workload establishes a platform-managed resource group protected by Azure Policy.</td></tr>
<tr title="Microsoft_Azure_VirtualEnclaves/Enclave"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualEnclaves/Enclave.svg" alt="Enclave" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Enclave</td><td>Microsoft.Mission/virtualenclaves</td><td></td><td>Create an enclave within a community. Enclaves are isolated virtual networks that host workloads and are secured through managed routes, connections, and Azure Policy.</td></tr>
<tr title="Microsoft_Azure_VirtualEnclaves/TransitHub"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualEnclaves/TransitHub.svg" alt="Transit hub" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Transit hub</td><td>Microsoft.Mission/communities/transitHubs</td><td></td><td>Create transit hubs to securely allow network traffic through the community firewall to and from external destinations.</td></tr>
<tr title="Microsoft_Azure_VirtualEnclaves/EnclaveEndpoint"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualEnclaves/EnclaveEndpoint.svg" alt="Enclave endpoint" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Enclave endpoint</td><td>Microsoft.Mission/virtualEnclaves/enclaveEndpoints</td><td></td><td>Community endpoints are collections of networking rules that enable external connectivity to trusted destinations including public websites, well-known services, and external private networks</td></tr>
<tr title="Microsoft_Azure_VirtualEnclaves/EnclaveConnection"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualEnclaves/EnclaveConnection.svg" alt="Enclave connection" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Enclave connection</td><td>Microsoft.Mission/EnclaveConnections</td><td></td><td>Enclave connections associate two virtual enclaves within a community using exposed endpoints that define security rules and firewall policies for connecting.</td></tr>
<tr title="Microsoft_Azure_VirtualEnclaves/CommunityEndpoint"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualEnclaves/CommunityEndpoint.svg" alt="Community endpoint" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Community endpoint</td><td>Microsoft.Mission/communities/communityEndpoints</td><td></td><td>Community endpoints are collections of networking rules that enable external connectivity to trusted destinations including public websites, well-known services, and external private networks</td></tr>
<tr title="Microsoft_Azure_VirtualEnclaves/Community"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualEnclaves/Community.svg" alt="Community" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Community</td><td>Microsoft.Mission/communities</td><td></td><td>Create a community, which is an isolated hub network that securely and logically groups multiple enclaves for governance, management, and security.</td></tr>
<tr title="Microsoft_Azure_VirtualEnclaves/Catalog"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualEnclaves/Catalog.svg" alt="Catalog" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Catalog</td><td>Microsoft.Mission/catalogs</td><td>UX UI design patterns sample extension ibiza consistency</td><td>A catalog is a repository of packages that automate the deployment of applications and Azure infrastructure.</td></tr>
<tr title="Microsoft_Azure_VirtualEnclaves/AzureVirtualEnclave"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualEnclaves/AzureVirtualEnclave.svg" alt="Azure Virtual Enclaves" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Virtual Enclaves</td><td></td><td></td><td>Accelerate and streamline the deployment and management of secure, isolated, and compliant cloud environments for the most sensitive mission workloads.</td></tr>
<tr title="Microsoft_Azure_VirtualEnclaves/Approvals"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualEnclaves/Approvals.svg" alt="Approval" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Approval</td><td>Microsoft.Mission/approvals</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_VirtualMachineScaleSets/VirtualMachineScaleSets"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualMachineScaleSets/VirtualMachineScaleSets.svg" alt="Virtual machine scale set" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual machine scale set</td><td>Microsoft.Compute/virtualMachineScaleSets</td><td>VMSS</td><td>Create a virtual machine scale set to deploy and manage a load balanced set of identical Windows or Linux virtual machines. Use autoscale to automatically scale virtual machine resources in and out.</td></tr>
<tr title="Microsoft_Azure_VirtualVisitsBuilder/vvbuilder"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VirtualVisitsBuilder/vvbuilder.svg" alt="Virtual Appointments Builder" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Virtual Appointments Builder</td><td></td><td>acs,communication,virtual,visits,appointments,builder</td><td>Virtual Appointments Builder is a no-code wizard that helps you create and deploy a virtual appointments sample</td></tr>
<tr title="Microsoft_Azure_VnfManager/VnfManagerVnfs"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/VnfManagerVnfs.svg" alt="Azure Network Function Manager – Network Function" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Network Function Manager – Network Function</td><td>Microsoft.HybridNetwork/networkFunctions</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/VnfManagerVendors"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/VnfManagerVendors.svg" alt="Azure Network Function Manager – vendor" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Network Function Manager – vendor</td><td>Microsoft.HybridNetwork/vendors</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/VnfManagerDevices"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/VnfManagerDevices.svg" alt="Azure Network Function Manager – Device" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Network Function Manager – Device</td><td>Microsoft.HybridNetwork/devices</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmSns"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmSns.svg" alt="Site Network Service" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Site Network Service</td><td>Microsoft.HybridNetwork/siteNetworkServices</td><td>Azure Operator Service Manager, AOSM, Operator, Operator Service Manager, SNS</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmSite"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmSite.svg" alt="Site" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Site</td><td>Microsoft.HybridNetwork/sites</td><td>Azure Operator Service Manager, AOSM, Operator, Operator Service Manager</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmPublisher"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmPublisher.svg" alt="Publisher" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Publisher</td><td>Microsoft.HybridNetwork/publishers</td><td>Azure Operator Service Manager, AOSM, Operator, Operator Service Manager</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmPublisherArtifactStore"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmPublisherArtifactStore.svg" alt="Publisher Artifact Store" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Publisher Artifact Store</td><td>Microsoft.HybridNetwork/publishers/artifactStores</td><td>Azure Operator Service Manager, AOSM, Operator, Operator Service Manager</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmPublisherArtifactManifest"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmPublisherArtifactManifest.svg" alt="Publisher Artifact Manifest" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Publisher Artifact Manifest</td><td>Microsoft.HybridNetwork/publishers/artifactStores/artifactManifests</td><td>Publisher</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmNsdVersion"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmNsdVersion.svg" alt="Network Service Design Version" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Service Design Version</td><td>Microsoft.HybridNetwork/publishers/networkServiceDesignGroups/networkServiceDesignVersions</td><td>Publisher, NSDV</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmNsdGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmNsdGroup.svg" alt="Network Service Design" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Service Design</td><td>Microsoft.HybridNetwork/publishers/networkServiceDesignGroups</td><td>Azure Operator Service Manager, AOSM, Operator, Publisher, Operator Service Manager, NSD</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmNfdVersion"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmNfdVersion.svg" alt="Network Function Definition Version" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Function Definition Version</td><td>Microsoft.HybridNetwork/publishers/networkFunctionDefinitionGroups/networkFunctionDefinitionVersions</td><td>Publisher, NFDV</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmNfdGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmNfdGroup.svg" alt="Network Function Definition" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Network Function Definition</td><td>Microsoft.HybridNetwork/publishers/networkFunctionDefinitionGroups</td><td>Azure Operator Service Manager, AOSM, Operator, Publisher, Operator Service Manager, NFD</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AzureOperatorServiceManager"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AzureOperatorServiceManager.svg" alt="Azure Operator Service Manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Operator Service Manager</td><td></td><td>AOSM</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmConfigSchema"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmConfigSchema.svg" alt="Configuration Group Schema" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Configuration Group Schema</td><td>Microsoft.HybridNetwork/publishers/configurationGroupSchemas</td><td>Azure Operator Service Manager, AOSM, Operator, Operator Service Manager, Schema</td><td></td></tr>
<tr title="Microsoft_Azure_VnfManager/AosmCgv"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_VnfManager/AosmCgv.svg" alt="Configuration Group Value" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Configuration Group Value</td><td>Microsoft.HybridNetwork/configurationGroupValues</td><td>Azure Operator Service Manager, AOSM, Operator, Operator Service Manager, Configuration</td><td></td></tr>
<tr title="Microsoft_Azure_WaveMigration/WaveMigrationResource"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WaveMigration/WaveMigrationResource.svg" alt="Wave Migration" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Wave Migration</td><td>Providers.Test/statefulIbizaEngines</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_Winfields/Winfields"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_Winfields/Winfields.svg" alt="Winfield | Preview" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Winfield | Preview</td><td>private.edgeinternal/winfields</td><td>Winfields</td><td>Winfields</td></tr>
<tr title="Microsoft_Azure_WorkloadInsight/mario"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WorkloadInsight/mario.svg" alt="MARIO" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>MARIO</td><td></td><td>MARIO, Workload Insights, mario</td><td></td></tr>
<tr title="Microsoft_Azure_WorkloadInsight/microsoft_workloads_insights_2022_10_15_preview"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WorkloadInsight/microsoft_workloads_insights_2022_10_15_preview.svg" alt="Microsoft.Workloads insight" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Microsoft.Workloads insight</td><td>microsoft.workloads/insights</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_WorkloadMonitor/SapMonitorV1"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WorkloadMonitor/SapMonitorV1.svg" alt="Azure Monitor for SAP Solutions (classic)" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Monitor for SAP Solutions (classic)</td><td>Microsoft.HanaOnAzure/sapMonitors</td><td></td><td></td></tr>
<tr title="Microsoft_Azure_WorkloadMonitor/SapMonitorV2"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WorkloadMonitor/SapMonitorV2.svg" alt="Azure Monitor for SAP solutions" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Monitor for SAP solutions</td><td>Microsoft.Workloads/monitors</td><td>SAP AMS SapMonitor</td><td></td></tr>
<tr title="Microsoft_Azure_WVD/WvdManager"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WVD/WvdManager.svg" alt="Azure Virtual Desktop" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Azure Virtual Desktop</td><td></td><td>WVD, Windows Virtual Desktop, WVD Hub, AVD, Azure Virtual Desktop, AVD Hub</td><td></td></tr>
<tr title="Microsoft_Azure_WVD/Workspace"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WVD/Workspace.svg" alt="Workspace" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Workspace</td><td>Microsoft.DesktopVirtualization/Workspaces</td><td>WVD, Windows Virtual Desktop, AVD, Azure Virtual Desktop, Workspace</td><td></td></tr>
<tr title="Microsoft_Azure_WVD/ScalingPlan"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WVD/ScalingPlan.svg" alt="Scaling plan" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Scaling plan</td><td>Microsoft.DesktopVirtualization/ScalingPlans</td><td>WVD, Windows Virtual Desktop, AVD, Azure Virtual Desktop, Scaling plan</td><td>Before creating a scaling plan you must first ensure that Azure Virtual Desktop has the required permissions to read information about and manage the power state of the VMs in your subscription using an RBAC role. Click the 'Learn More' link below to learn more.</td></tr>
<tr title="Microsoft_Azure_WVD/Hostpool"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WVD/Hostpool.svg" alt="Host pool" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Host pool</td><td>Microsoft.DesktopVirtualization/HostPools</td><td>WVD, Windows Virtual Desktop, AVD, Azure Virtual Desktop, Host pool</td><td></td></tr>
<tr title="Microsoft_Azure_WVD/ApplicationGroup"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WVD/ApplicationGroup.svg" alt="Application group" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Application group</td><td>Microsoft.DesktopVirtualization/ApplicationGroups</td><td>WVD, Windows Virtual Desktop, AVD, Azure Virtual Desktop, Application group, Application group</td><td></td></tr>
<tr title="Microsoft_Azure_WVD/AppAttach"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_WVD/AppAttach.svg" alt="App attach package" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>App attach package</td><td>Microsoft.DesktopVirtualization/appAttachPackages</td><td>WVD, Windows Virtual Desktop, AVD, Azure Virtual Desktop, App attach, App attach package</td><td></td></tr>
<tr title="Microsoft_Azure_ZeroTrustSegmentation/SegmentationManagers"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Azure_ZeroTrustSegmentation/SegmentationManagers.svg" alt="Segmentation Manager" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Segmentation Manager</td><td>Microsoft.ZeroTrustSegmentation/segmentationManagers</td><td>UX UI design patterns sample extension ibiza consistency</td><td>Consistent experiences across Azure enable users to leverage a few well-known and researched design patterns throughout Azure.</td></tr>
<tr title="Microsoft_Bing_Api/BingAPIAccount"><td><img loading="lazy" decoding="async" src="svg/Microsoft_Bing_Api/BingAPIAccount.svg" alt="Bing Resource" title="Click to download" onclick="download(this.src, this.alt)" /></td><td>Bing Resource</td><td>Microsoft.Bing/accounts</td><td>web search, image search, video search, visual search, custom search, entity search, news search, auto suggest, autosuggest, search, spell, spellcheck, autosuggest, speech, custom speech, customspeech, bing custom search, bing search, bing spellcheck, bing spell check, bing autosuggest, bing auto suggest, bing entity search</td><td>Embed the ability of search into your services using Bing's search APIs.</td></tr>