diff --git a/docs/getting-started/installation.html b/docs/getting-started/installation.html index 584b5c3a..c35cfd61 100644 --- a/docs/getting-started/installation.html +++ b/docs/getting-started/installation.html @@ -65,7 +65,7 @@

Installation

diagrams requires Python 3.7 or higher, check your Python version first.

diagrams uses Graphviz to render the diagram, so you need to install Graphviz to use it.

-

macOS users using Homebrew can install Graphviz via brew install graphviz . Similarly, Windows users with Chocolatey installed can run choco install graphviz.

+

macOS users using Homebrew can install Graphviz via brew install graphviz . Similarly, Windows users with Chocolatey installed can run choco install graphviz or use Winget via winget install Graphviz.Graphviz -i.

After installing Graphviz (or if you already have it), install diagrams:

# using pip (pip3)
@@ -76,6 +76,9 @@
 
 # using poetry
 $ poetry add diagrams
+
+# using uv
+$ uv tool install diagrams
 

Quick Start

# diagram.py
@@ -93,6 +96,10 @@
 

This generates the diagram below:

web service diagram

It will be saved as web_service.png in your working directory.

+

CLI

+

With the diagrams CLI you can process one or more diagram files at once.

+
$ diagrams diagram1.py diagram2.py
+

Next

See more Examples or see the Guides page for more details.

-
Last updated on 9/25/2024
\ No newline at end of file +
Last updated on 5/10/2025
Examples
\ No newline at end of file diff --git a/docs/getting-started/installation/index.html b/docs/getting-started/installation/index.html index 584b5c3a..c35cfd61 100644 --- a/docs/getting-started/installation/index.html +++ b/docs/getting-started/installation/index.html @@ -65,7 +65,7 @@

Installation

diagrams requires Python 3.7 or higher, check your Python version first.

diagrams uses Graphviz to render the diagram, so you need to install Graphviz to use it.

-

macOS users using Homebrew can install Graphviz via brew install graphviz . Similarly, Windows users with Chocolatey installed can run choco install graphviz.

+

macOS users using Homebrew can install Graphviz via brew install graphviz . Similarly, Windows users with Chocolatey installed can run choco install graphviz or use Winget via winget install Graphviz.Graphviz -i.

After installing Graphviz (or if you already have it), install diagrams:

# using pip (pip3)
@@ -76,6 +76,9 @@
 
 # using poetry
 $ poetry add diagrams
+
+# using uv
+$ uv tool install diagrams
 

Quick Start

# diagram.py
@@ -93,6 +96,10 @@
 

This generates the diagram below:

web service diagram

It will be saved as web_service.png in your working directory.

+

CLI

+

With the diagrams CLI you can process one or more diagram files at once.

+
$ diagrams diagram1.py diagram2.py
+

Next

See more Examples or see the Guides page for more details.

-
Last updated on 9/25/2024
\ No newline at end of file +
Last updated on 5/10/2025
\ No newline at end of file diff --git a/docs/guides/edge.html b/docs/guides/edge.html index 66fe7214..00c40924 100644 --- a/docs/guides/edge.html +++ b/docs/guides/edge.html @@ -119,5 +119,116 @@ >> Edge(color="darkorange") \ >> aggregator
-

advanced web service with on-premises diagram colored

-
Last updated on 10/1/2024
ClustersOnPrem
\ No newline at end of file +

advanced web service with on-premise diagram colored

+

Less Edges

+

As you can see on the previous graph the edges can quickly become noisy. Below are two examples to solve this problem.

+

One approach is to get creative with the Node class to create blank placeholders, together with named nodes within Clusters, and then only pointing to single named elements within those Clusters.

+

Compare the output below to the example output above .

+
from diagrams import Cluster, Diagram, Node
+from diagrams.onprem.analytics import Spark
+from diagrams.onprem.compute import Server
+from diagrams.onprem.database import PostgreSQL
+from diagrams.onprem.inmemory import Redis
+from diagrams.onprem.aggregator import Fluentd
+from diagrams.onprem.monitoring import Grafana, Prometheus
+from diagrams.onprem.network import Nginx
+from diagrams.onprem.queue import Kafka
+
+with Diagram("\nAdvanced Web Service with On-Premise Less edges", show=False) as diag:
+    ingress = Nginx("ingress")
+
+    with Cluster("Service Cluster"):
+        serv1 = Server("grpc1")
+        serv2 = Server("grpc2")
+        serv3 = Server("grpc3")
+
+    with Cluster(""):
+        blankHA = Node("", shape="plaintext", width="0", height="0")
+
+        metrics = Prometheus("metric")
+        metrics << Grafana("monitoring")
+
+        aggregator = Fluentd("logging")
+        blankHA >> aggregator >> Kafka("stream") >> Spark("analytics")
+
+        with Cluster("Database HA"):
+            db = PostgreSQL("users")
+            db - PostgreSQL("replica") << metrics
+            blankHA >> db
+
+        with Cluster("Sessions HA"):
+            sess = Redis("session")
+            sess - Redis("replica") << metrics
+            blankHA >> sess
+
+    ingress >> serv2 >> blankHA
+
+diag
+
+

advanced web service with on-premise less edges

+

Merged Edges

+

Yet another option is to set the graph_attr dictionary key "concentrate" to "true".

+

Note the following restrictions:

+
    +
  1. the Edge must end at the same headport
  2. +
  3. This only works when the "splines" graph_attr key is set to the value "spline". It has no effect when the value was set to "ortho", which is the default for the diagrams library.
  4. +
  5. this will only work with the "dot" layout engine, which is the default for the diagrams library.
  6. +
+

For more information see:

+

https://graphviz.gitlab.io/doc/info/attrs.html#d:concentrate

+

https://www.graphviz.org/pdf/dotguide.pdf Section 3.3 Concentrators

+
from diagrams import Cluster, Diagram, Edge, Node
+from diagrams.onprem.analytics import Spark
+from diagrams.onprem.compute import Server
+from diagrams.onprem.database import PostgreSQL
+from diagrams.onprem.inmemory import Redis
+from diagrams.onprem.aggregator import Fluentd
+from diagrams.onprem.monitoring import Grafana, Prometheus
+from diagrams.onprem.network import Nginx
+from diagrams.onprem.queue import Kafka
+
+graph_attr = {
+    "concentrate": "true",
+    "splines": "spline",
+}
+
+edge_attr = {
+    "minlen":"3",
+}
+
+with Diagram("\n\nAdvanced Web Service with On-Premise Merged edges", show=False,
+            graph_attr=graph_attr,
+            edge_attr=edge_attr) as diag:
+
+    ingress = Nginx("ingress")
+
+    metrics = Prometheus("metric")
+    metrics << Edge(minlen="0") << Grafana("monitoring")
+
+    with Cluster("Service Cluster"):
+        grpsrv = [
+            Server("grpc1"),
+            Server("grpc2"),
+            Server("grpc3")]
+
+    blank = Node("", shape="plaintext", height="0.0", width="0.0")
+
+    with Cluster("Sessions HA"):
+        sess = Redis("session")
+        sess - Redis("replica") << metrics
+
+    with Cluster("Database HA"):
+        db = PostgreSQL("users")
+        db - PostgreSQL("replica") << metrics
+
+    aggregator = Fluentd("logging")
+    aggregator >> Kafka("stream") >> Spark("analytics")
+
+    ingress >> [grpsrv[0], grpsrv[1], grpsrv[2],]
+    [grpsrv[0], grpsrv[1], grpsrv[2],] - Edge(headport="w", minlen="1") - blank
+    blank >> Edge(headport="w", minlen="2") >> [sess, db, aggregator]
+
+diag
+
+

advanced web service with on-premise merged edges

+
Last updated on 5/11/2025
ClustersOnPrem
\ No newline at end of file diff --git a/docs/guides/edge/index.html b/docs/guides/edge/index.html index 66fe7214..00c40924 100644 --- a/docs/guides/edge/index.html +++ b/docs/guides/edge/index.html @@ -119,5 +119,116 @@ >> Edge(color="darkorange") \ >> aggregator
-

advanced web service with on-premises diagram colored

-
Last updated on 10/1/2024
ClustersOnPrem
\ No newline at end of file +

advanced web service with on-premise diagram colored

+

Less Edges

+

As you can see on the previous graph the edges can quickly become noisy. Below are two examples to solve this problem.

+

One approach is to get creative with the Node class to create blank placeholders, together with named nodes within Clusters, and then only pointing to single named elements within those Clusters.

+

Compare the output below to the example output above .

+
from diagrams import Cluster, Diagram, Node
+from diagrams.onprem.analytics import Spark
+from diagrams.onprem.compute import Server
+from diagrams.onprem.database import PostgreSQL
+from diagrams.onprem.inmemory import Redis
+from diagrams.onprem.aggregator import Fluentd
+from diagrams.onprem.monitoring import Grafana, Prometheus
+from diagrams.onprem.network import Nginx
+from diagrams.onprem.queue import Kafka
+
+with Diagram("\nAdvanced Web Service with On-Premise Less edges", show=False) as diag:
+    ingress = Nginx("ingress")
+
+    with Cluster("Service Cluster"):
+        serv1 = Server("grpc1")
+        serv2 = Server("grpc2")
+        serv3 = Server("grpc3")
+
+    with Cluster(""):
+        blankHA = Node("", shape="plaintext", width="0", height="0")
+
+        metrics = Prometheus("metric")
+        metrics << Grafana("monitoring")
+
+        aggregator = Fluentd("logging")
+        blankHA >> aggregator >> Kafka("stream") >> Spark("analytics")
+
+        with Cluster("Database HA"):
+            db = PostgreSQL("users")
+            db - PostgreSQL("replica") << metrics
+            blankHA >> db
+
+        with Cluster("Sessions HA"):
+            sess = Redis("session")
+            sess - Redis("replica") << metrics
+            blankHA >> sess
+
+    ingress >> serv2 >> blankHA
+
+diag
+
+

advanced web service with on-premise less edges

+

Merged Edges

+

Yet another option is to set the graph_attr dictionary key "concentrate" to "true".

+

Note the following restrictions:

+
    +
  1. the Edge must end at the same headport
  2. +
  3. This only works when the "splines" graph_attr key is set to the value "spline". It has no effect when the value was set to "ortho", which is the default for the diagrams library.
  4. +
  5. this will only work with the "dot" layout engine, which is the default for the diagrams library.
  6. +
+

For more information see:

+

https://graphviz.gitlab.io/doc/info/attrs.html#d:concentrate

+

https://www.graphviz.org/pdf/dotguide.pdf Section 3.3 Concentrators

+
from diagrams import Cluster, Diagram, Edge, Node
+from diagrams.onprem.analytics import Spark
+from diagrams.onprem.compute import Server
+from diagrams.onprem.database import PostgreSQL
+from diagrams.onprem.inmemory import Redis
+from diagrams.onprem.aggregator import Fluentd
+from diagrams.onprem.monitoring import Grafana, Prometheus
+from diagrams.onprem.network import Nginx
+from diagrams.onprem.queue import Kafka
+
+graph_attr = {
+    "concentrate": "true",
+    "splines": "spline",
+}
+
+edge_attr = {
+    "minlen":"3",
+}
+
+with Diagram("\n\nAdvanced Web Service with On-Premise Merged edges", show=False,
+            graph_attr=graph_attr,
+            edge_attr=edge_attr) as diag:
+
+    ingress = Nginx("ingress")
+
+    metrics = Prometheus("metric")
+    metrics << Edge(minlen="0") << Grafana("monitoring")
+
+    with Cluster("Service Cluster"):
+        grpsrv = [
+            Server("grpc1"),
+            Server("grpc2"),
+            Server("grpc3")]
+
+    blank = Node("", shape="plaintext", height="0.0", width="0.0")
+
+    with Cluster("Sessions HA"):
+        sess = Redis("session")
+        sess - Redis("replica") << metrics
+
+    with Cluster("Database HA"):
+        db = PostgreSQL("users")
+        db - PostgreSQL("replica") << metrics
+
+    aggregator = Fluentd("logging")
+    aggregator >> Kafka("stream") >> Spark("analytics")
+
+    ingress >> [grpsrv[0], grpsrv[1], grpsrv[2],]
+    [grpsrv[0], grpsrv[1], grpsrv[2],] - Edge(headport="w", minlen="1") - blank
+    blank >> Edge(headport="w", minlen="2") >> [sess, db, aggregator]
+
+diag
+
+

advanced web service with on-premise merged edges

+
Last updated on 5/11/2025
ClustersOnPrem
\ No newline at end of file diff --git a/docs/nodes/aws.html b/docs/nodes/aws.html index 4bf5bbbf..43932878 100644 --- a/docs/nodes/aws.html +++ b/docs/nodes/aws.html @@ -188,8 +188,12 @@ diagrams.aws.compute.ElasticBeanstalk, EB (alias)

ElasticContainerServiceContainer diagrams.aws.compute.ElasticContainerServiceContainer

+

ElasticContainerServiceServiceConnect +diagrams.aws.compute.ElasticContainerServiceServiceConnect

ElasticContainerServiceService diagrams.aws.compute.ElasticContainerServiceService

+

ElasticContainerServiceTask +diagrams.aws.compute.ElasticContainerServiceTask

ElasticContainerService diagrams.aws.compute.ElasticContainerService, ECS (alias)

ElasticKubernetesService @@ -315,6 +319,8 @@ diagrams.aws.devtools.Cloud9Resource

Cloud9 diagrams.aws.devtools.Cloud9

+

Cloudshell +diagrams.aws.devtools.Cloudshell

Codeartifact diagrams.aws.devtools.Codeartifact

Codebuild @@ -435,8 +441,18 @@ diagrams.aws.integration.EventbridgeCustomEventBusResource

EventbridgeDefaultEventBusResource diagrams.aws.integration.EventbridgeDefaultEventBusResource

+

EventbridgeEvent +diagrams.aws.integration.EventbridgeEvent

+

EventbridgePipes +diagrams.aws.integration.EventbridgePipes

+

EventbridgeRule +diagrams.aws.integration.EventbridgeRule

EventbridgeSaasPartnerEventBusResource diagrams.aws.integration.EventbridgeSaasPartnerEventBusResource

+

EventbridgeScheduler +diagrams.aws.integration.EventbridgeScheduler

+

EventbridgeSchema +diagrams.aws.integration.EventbridgeSchema

Eventbridge diagrams.aws.integration.Eventbridge

ExpressWorkflows @@ -697,6 +713,8 @@ diagrams.aws.management.TrustedAdvisorChecklist

TrustedAdvisor diagrams.aws.management.TrustedAdvisor

+

UserNotifications +diagrams.aws.management.UserNotifications

WellArchitectedTool diagrams.aws.management.WellArchitectedTool

aws.media

@@ -786,6 +804,8 @@ diagrams.aws.ml.Personalize

Polly diagrams.aws.ml.Polly

+

Q +diagrams.aws.ml.Q

RekognitionImage diagrams.aws.ml.RekognitionImage

RekognitionVideo @@ -808,6 +828,8 @@ diagrams.aws.ml.Textract

Transcribe diagrams.aws.ml.Transcribe

+

Transform +diagrams.aws.ml.Transform

Translate diagrams.aws.ml.Translate

aws.mobile

@@ -996,6 +1018,8 @@ diagrams.aws.security.SecurityHub

SecurityIdentityAndCompliance diagrams.aws.security.SecurityIdentityAndCompliance

+

SecurityLake +diagrams.aws.security.SecurityLake

ShieldAdvanced diagrams.aws.security.ShieldAdvanced

Shield @@ -1071,4 +1095,4 @@ diagrams.aws.storage.StorageGateway

Storage diagrams.aws.storage.Storage

-
Last updated on 2/23/2025
OnPremAzure
\ No newline at end of file +
Last updated on 8/23/2025
OnPremAzure
\ No newline at end of file diff --git a/docs/nodes/aws/index.html b/docs/nodes/aws/index.html index 4bf5bbbf..43932878 100644 --- a/docs/nodes/aws/index.html +++ b/docs/nodes/aws/index.html @@ -188,8 +188,12 @@ diagrams.aws.compute.ElasticBeanstalk, EB (alias)

ElasticContainerServiceContainer diagrams.aws.compute.ElasticContainerServiceContainer

+

ElasticContainerServiceServiceConnect +diagrams.aws.compute.ElasticContainerServiceServiceConnect

ElasticContainerServiceService diagrams.aws.compute.ElasticContainerServiceService

+

ElasticContainerServiceTask +diagrams.aws.compute.ElasticContainerServiceTask

ElasticContainerService diagrams.aws.compute.ElasticContainerService, ECS (alias)

ElasticKubernetesService @@ -315,6 +319,8 @@ diagrams.aws.devtools.Cloud9Resource

Cloud9 diagrams.aws.devtools.Cloud9

+

Cloudshell +diagrams.aws.devtools.Cloudshell

Codeartifact diagrams.aws.devtools.Codeartifact

Codebuild @@ -435,8 +441,18 @@ diagrams.aws.integration.EventbridgeCustomEventBusResource

EventbridgeDefaultEventBusResource diagrams.aws.integration.EventbridgeDefaultEventBusResource

+

EventbridgeEvent +diagrams.aws.integration.EventbridgeEvent

+

EventbridgePipes +diagrams.aws.integration.EventbridgePipes

+

EventbridgeRule +diagrams.aws.integration.EventbridgeRule

EventbridgeSaasPartnerEventBusResource diagrams.aws.integration.EventbridgeSaasPartnerEventBusResource

+

EventbridgeScheduler +diagrams.aws.integration.EventbridgeScheduler

+

EventbridgeSchema +diagrams.aws.integration.EventbridgeSchema

Eventbridge diagrams.aws.integration.Eventbridge

ExpressWorkflows @@ -697,6 +713,8 @@ diagrams.aws.management.TrustedAdvisorChecklist

TrustedAdvisor diagrams.aws.management.TrustedAdvisor

+

UserNotifications +diagrams.aws.management.UserNotifications

WellArchitectedTool diagrams.aws.management.WellArchitectedTool

aws.media

@@ -786,6 +804,8 @@ diagrams.aws.ml.Personalize

Polly diagrams.aws.ml.Polly

+

Q +diagrams.aws.ml.Q

RekognitionImage diagrams.aws.ml.RekognitionImage

RekognitionVideo @@ -808,6 +828,8 @@ diagrams.aws.ml.Textract

Transcribe diagrams.aws.ml.Transcribe

+

Transform +diagrams.aws.ml.Transform

Translate diagrams.aws.ml.Translate

aws.mobile

@@ -996,6 +1018,8 @@ diagrams.aws.security.SecurityHub

SecurityIdentityAndCompliance diagrams.aws.security.SecurityIdentityAndCompliance

+

SecurityLake +diagrams.aws.security.SecurityLake

ShieldAdvanced diagrams.aws.security.ShieldAdvanced

Shield @@ -1071,4 +1095,4 @@ diagrams.aws.storage.StorageGateway

Storage diagrams.aws.storage.Storage

-
Last updated on 2/23/2025
OnPremAzure
\ No newline at end of file +
Last updated on 8/23/2025
OnPremAzure
\ No newline at end of file diff --git a/docs/nodes/azure.html b/docs/nodes/azure.html index 457f10ec..b39141e5 100644 --- a/docs/nodes/azure.html +++ b/docs/nodes/azure.html @@ -1,4 +1,4 @@ -Azure · Diagrams

Azure

Node classes list of the azure provider.

+

Azure

Node classes list of azure provider.

+

azure.aimachinelearning

+

AIStudio +diagrams.azure.aimachinelearning.AIStudio

+

AnomalyDetector +diagrams.azure.aimachinelearning.AnomalyDetector

+

AzureAppliedAIServices +diagrams.azure.aimachinelearning.AzureAppliedAIServices

+

AzureExperimentationStudio +diagrams.azure.aimachinelearning.AzureExperimentationStudio

+

AzureObjectUnderstanding +diagrams.azure.aimachinelearning.AzureObjectUnderstanding

+

AzureOpenai +diagrams.azure.aimachinelearning.AzureOpenai

+

BatchAI +diagrams.azure.aimachinelearning.BatchAI

+

Bonsai +diagrams.azure.aimachinelearning.Bonsai

+

BotServices +diagrams.azure.aimachinelearning.BotServices

+

CognitiveSearch +diagrams.azure.aimachinelearning.CognitiveSearch

+

CognitiveServicesDecisions +diagrams.azure.aimachinelearning.CognitiveServicesDecisions

+

CognitiveServices +diagrams.azure.aimachinelearning.CognitiveServices

+

ComputerVision +diagrams.azure.aimachinelearning.ComputerVision

+

ContentModerators +diagrams.azure.aimachinelearning.ContentModerators

+

CustomVision +diagrams.azure.aimachinelearning.CustomVision

+

FaceApis +diagrams.azure.aimachinelearning.FaceApis

+

FormRecognizers +diagrams.azure.aimachinelearning.FormRecognizers

+

GenomicsAccounts +diagrams.azure.aimachinelearning.GenomicsAccounts

+

Genomics +diagrams.azure.aimachinelearning.Genomics

+

ImmersiveReaders +diagrams.azure.aimachinelearning.ImmersiveReaders

+

LanguageUnderstanding +diagrams.azure.aimachinelearning.LanguageUnderstanding

+

Language +diagrams.azure.aimachinelearning.Language

+

MachineLearningStudioClassicWebServices +diagrams.azure.aimachinelearning.MachineLearningStudioClassicWebServices

+

MachineLearningStudioWebServicePlans +diagrams.azure.aimachinelearning.MachineLearningStudioWebServicePlans

+

MachineLearningStudioWorkspaces +diagrams.azure.aimachinelearning.MachineLearningStudioWorkspaces

+

MachineLearning +diagrams.azure.aimachinelearning.MachineLearning

+

MetricsAdvisor +diagrams.azure.aimachinelearning.MetricsAdvisor

+

Personalizers +diagrams.azure.aimachinelearning.Personalizers

+

QnaMakers +diagrams.azure.aimachinelearning.QnaMakers

+

ServerlessSearch +diagrams.azure.aimachinelearning.ServerlessSearch

+

SpeechServices +diagrams.azure.aimachinelearning.SpeechServices

+

TranslatorText +diagrams.azure.aimachinelearning.TranslatorText

azure.analytics

AnalysisServices diagrams.azure.analytics.AnalysisServices

+

AzureDataExplorerClusters +diagrams.azure.analytics.AzureDataExplorerClusters

+

AzureDatabricks +diagrams.azure.analytics.AzureDatabricks

+

AzureSynapseAnalytics +diagrams.azure.analytics.AzureSynapseAnalytics

+

AzureWorkbooks +diagrams.azure.analytics.AzureWorkbooks

DataExplorerClusters diagrams.azure.analytics.DataExplorerClusters

DataFactories @@ -76,25 +149,91 @@ diagrams.azure.analytics.DataLakeStoreGen1

Databricks diagrams.azure.analytics.Databricks

+

EndpointAnalytics +diagrams.azure.analytics.EndpointAnalytics

EventHubClusters diagrams.azure.analytics.EventHubClusters

EventHubs diagrams.azure.analytics.EventHubs

-

Hdinsightclusters -diagrams.azure.analytics.Hdinsightclusters

+

HDInsightClusters +diagrams.azure.analytics.HDInsightClusters

LogAnalyticsWorkspaces diagrams.azure.analytics.LogAnalyticsWorkspaces

+

PowerBiEmbedded +diagrams.azure.analytics.PowerBiEmbedded

+

PowerPlatform +diagrams.azure.analytics.PowerPlatform

+

PrivateLinkServices +diagrams.azure.analytics.PrivateLinkServices

StreamAnalyticsJobs diagrams.azure.analytics.StreamAnalyticsJobs

SynapseAnalytics diagrams.azure.analytics.SynapseAnalytics

+

azure.appservices

+

AppServiceCertificates +diagrams.azure.appservices.AppServiceCertificates

+

AppServiceDomains +diagrams.azure.appservices.AppServiceDomains

+

AppServiceEnvironments +diagrams.azure.appservices.AppServiceEnvironments

+

AppServicePlans +diagrams.azure.appservices.AppServicePlans

+

AppServices +diagrams.azure.appservices.AppServices

+

CDNProfiles +diagrams.azure.appservices.CDNProfiles

+

CognitiveSearch +diagrams.azure.appservices.CognitiveSearch

+

NotificationHubs +diagrams.azure.appservices.NotificationHubs

+

azure.azureecosystem

+

Applens +diagrams.azure.azureecosystem.Applens

+

AzureHybridCenter +diagrams.azure.azureecosystem.AzureHybridCenter

+

CollaborativeService +diagrams.azure.azureecosystem.CollaborativeService

+

azure.azurestack

+

Capacity +diagrams.azure.azurestack.Capacity

+

InfrastructureBackup +diagrams.azure.azurestack.InfrastructureBackup

+

MultiTenancy +diagrams.azure.azurestack.MultiTenancy

+

Offers +diagrams.azure.azurestack.Offers

+

Plans +diagrams.azure.azurestack.Plans

+

Updates +diagrams.azure.azurestack.Updates

+

UserSubscriptions +diagrams.azure.azurestack.UserSubscriptions

+

azure.blockchain

+

AbsMember +diagrams.azure.blockchain.AbsMember

+

AzureBlockchainService +diagrams.azure.blockchain.AzureBlockchainService

+

AzureTokenService +diagrams.azure.blockchain.AzureTokenService

+

BlockchainApplications +diagrams.azure.blockchain.BlockchainApplications

+

Consortium +diagrams.azure.blockchain.Consortium

+

OutboundConnection +diagrams.azure.blockchain.OutboundConnection

azure.compute

AppServices diagrams.azure.compute.AppServices

+

ApplicationGroup +diagrams.azure.compute.ApplicationGroup

AutomanagedVM diagrams.azure.compute.AutomanagedVM

AvailabilitySets diagrams.azure.compute.AvailabilitySets

+

AzureComputeGalleries +diagrams.azure.compute.AzureComputeGalleries

+

AzureSpringApps +diagrams.azure.compute.AzureSpringApps

BatchAccounts diagrams.azure.compute.BatchAccounts

CitrixVirtualDesktopsEssentials @@ -111,24 +250,52 @@ diagrams.azure.compute.ContainerInstances

ContainerRegistries diagrams.azure.compute.ContainerRegistries, ACR (alias)

+

ContainerServicesDeprecated +diagrams.azure.compute.ContainerServicesDeprecated

DiskEncryptionSets diagrams.azure.compute.DiskEncryptionSets

DiskSnapshots diagrams.azure.compute.DiskSnapshots

+

DisksClassic +diagrams.azure.compute.DisksClassic

+

DisksSnapshots +diagrams.azure.compute.DisksSnapshots

Disks diagrams.azure.compute.Disks

FunctionApps diagrams.azure.compute.FunctionApps

+

HostGroups +diagrams.azure.compute.HostGroups

+

HostPools +diagrams.azure.compute.HostPools

+

Hosts +diagrams.azure.compute.Hosts

ImageDefinitions diagrams.azure.compute.ImageDefinitions

+

ImageTemplates +diagrams.azure.compute.ImageTemplates

ImageVersions diagrams.azure.compute.ImageVersions

+

Images +diagrams.azure.compute.Images

KubernetesServices diagrams.azure.compute.KubernetesServices, AKS (alias)

+

MaintenanceConfiguration +diagrams.azure.compute.MaintenanceConfiguration

+

ManagedServiceFabric +diagrams.azure.compute.ManagedServiceFabric

MeshApplications diagrams.azure.compute.MeshApplications

+

MetricsAdvisor +diagrams.azure.compute.MetricsAdvisor

+

OsImagesClassic +diagrams.azure.compute.OsImagesClassic

OsImages diagrams.azure.compute.OsImages

+

RestorePointsCollections +diagrams.azure.compute.RestorePointsCollections

+

RestorePoints +diagrams.azure.compute.RestorePoints

SAPHANAOnAzure diagrams.azure.compute.SAPHANAOnAzure

ServiceFabricClusters @@ -137,20 +304,45 @@ diagrams.azure.compute.SharedImageGalleries

SpringCloud diagrams.azure.compute.SpringCloud

+

VirtualMachine +diagrams.azure.compute.VirtualMachine

+

VirtualMachinesClassic +diagrams.azure.compute.VirtualMachinesClassic

VMClassic diagrams.azure.compute.VMClassic

+

VMImagesClassic +diagrams.azure.compute.VMImagesClassic

VMImages diagrams.azure.compute.VMImages

VMLinux diagrams.azure.compute.VMLinux

VMScaleSet diagrams.azure.compute.VMScaleSet, VMSS (alias)

+

VMScaleSets +diagrams.azure.compute.VMScaleSets

VMWindows diagrams.azure.compute.VMWindows

VM diagrams.azure.compute.VM

+

Workspaces2 +diagrams.azure.compute.Workspaces2

Workspaces diagrams.azure.compute.Workspaces

+

azure.containers

+

AppServices +diagrams.azure.containers.AppServices

+

AzureRedHatOpenshift +diagrams.azure.containers.AzureRedHatOpenshift

+

BatchAccounts +diagrams.azure.containers.BatchAccounts

+

ContainerInstances +diagrams.azure.containers.ContainerInstances

+

ContainerRegistries +diagrams.azure.containers.ContainerRegistries

+

KubernetesServices +diagrams.azure.containers.KubernetesServices

+

ServiceFabricClusters +diagrams.azure.containers.ServiceFabricClusters

azure.database

BlobStorage diagrams.azure.database.BlobStorage

@@ -200,19 +392,92 @@ diagrams.azure.database.VirtualClusters

VirtualDatacenter diagrams.azure.database.VirtualDatacenter

+

azure.databases

+

AzureCosmosDb +diagrams.azure.databases.AzureCosmosDb

+

AzureDataExplorerClusters +diagrams.azure.databases.AzureDataExplorerClusters

+

AzureDatabaseMariadbServer +diagrams.azure.databases.AzureDatabaseMariadbServer

+

AzureDatabaseMigrationServices +diagrams.azure.databases.AzureDatabaseMigrationServices

+

AzureDatabaseMysqlServer +diagrams.azure.databases.AzureDatabaseMysqlServer

+

AzureDatabasePostgresqlServerGroup +diagrams.azure.databases.AzureDatabasePostgresqlServerGroup

+

AzureDatabasePostgresqlServer +diagrams.azure.databases.AzureDatabasePostgresqlServer

+

AzurePurviewAccounts +diagrams.azure.databases.AzurePurviewAccounts

+

AzureSQLEdge +diagrams.azure.databases.AzureSQLEdge

+

AzureSQLServerStretchDatabases +diagrams.azure.databases.AzureSQLServerStretchDatabases

+

AzureSQLVM +diagrams.azure.databases.AzureSQLVM

+

AzureSQL +diagrams.azure.databases.AzureSQL

+

AzureSynapseAnalytics +diagrams.azure.databases.AzureSynapseAnalytics

+

CacheRedis +diagrams.azure.databases.CacheRedis

+

DataFactories +diagrams.azure.databases.DataFactories

+

ElasticJobAgents +diagrams.azure.databases.ElasticJobAgents

+

InstancePools +diagrams.azure.databases.InstancePools

+

ManagedDatabase +diagrams.azure.databases.ManagedDatabase

+

OracleDatabase +diagrams.azure.databases.OracleDatabase

+

SQLDataWarehouses +diagrams.azure.databases.SQLDataWarehouses

+

SQLDatabase +diagrams.azure.databases.SQLDatabase

+

SQLElasticPools +diagrams.azure.databases.SQLElasticPools

+

SQLManagedInstance +diagrams.azure.databases.SQLManagedInstance

+

SQLServerRegistries +diagrams.azure.databases.SQLServerRegistries

+

SQLServer +diagrams.azure.databases.SQLServer

+

SsisLiftAndShiftIr +diagrams.azure.databases.SsisLiftAndShiftIr

+

VirtualClusters +diagrams.azure.databases.VirtualClusters

azure.devops

+

APIConnections +diagrams.azure.devops.APIConnections

+

APIManagementServices +diagrams.azure.devops.APIManagementServices

ApplicationInsights diagrams.azure.devops.ApplicationInsights

Artifacts diagrams.azure.devops.Artifacts

+

AzureDevops +diagrams.azure.devops.AzureDevops

Boards diagrams.azure.devops.Boards

+

ChangeAnalysis +diagrams.azure.devops.ChangeAnalysis

+

Cloudtest +diagrams.azure.devops.Cloudtest

+

CodeOptimization +diagrams.azure.devops.CodeOptimization

+

DevopsStarter +diagrams.azure.devops.DevopsStarter

Devops diagrams.azure.devops.Devops

DevtestLabs diagrams.azure.devops.DevtestLabs

+

LabAccounts +diagrams.azure.devops.LabAccounts

LabServices diagrams.azure.devops.LabServices

+

LoadTesting +diagrams.azure.devops.LoadTesting

Pipelines diagrams.azure.devops.Pipelines

Repos @@ -220,46 +485,208 @@

TestPlans diagrams.azure.devops.TestPlans

azure.general

+

AllResources +diagrams.azure.general.AllResources

Allresources diagrams.azure.general.Allresources

Azurehome diagrams.azure.general.Azurehome

+

Backlog +diagrams.azure.general.Backlog

+

BizTalk +diagrams.azure.general.BizTalk

+

BlobBlock +diagrams.azure.general.BlobBlock

+

BlobPage +diagrams.azure.general.BlobPage

+

Branch +diagrams.azure.general.Branch

+

Browser +diagrams.azure.general.Browser

+

Bug +diagrams.azure.general.Bug

+

Builds +diagrams.azure.general.Builds

+

Cache +diagrams.azure.general.Cache

+

Code +diagrams.azure.general.Code

+

Commit +diagrams.azure.general.Commit

+

ControlsHorizontal +diagrams.azure.general.ControlsHorizontal

+

Controls +diagrams.azure.general.Controls

+

CostAlerts +diagrams.azure.general.CostAlerts

+

CostAnalysis +diagrams.azure.general.CostAnalysis

+

CostBudgets +diagrams.azure.general.CostBudgets

+

CostManagementAndBilling +diagrams.azure.general.CostManagementAndBilling

+

CostManagement +diagrams.azure.general.CostManagement

+

Counter +diagrams.azure.general.Counter

+

Cubes +diagrams.azure.general.Cubes

+

Dashboard +diagrams.azure.general.Dashboard

+

DevConsole +diagrams.azure.general.DevConsole

Developertools diagrams.azure.general.Developertools

+

Download +diagrams.azure.general.Download

+

Error +diagrams.azure.general.Error

+

Extensions +diagrams.azure.general.Extensions

+

FeaturePreviews +diagrams.azure.general.FeaturePreviews

+

File +diagrams.azure.general.File

+

Files +diagrams.azure.general.Files

+

FolderBlank +diagrams.azure.general.FolderBlank

+

FolderWebsite +diagrams.azure.general.FolderWebsite

+

FreeServices +diagrams.azure.general.FreeServices

+

Ftp +diagrams.azure.general.Ftp

+

Gear +diagrams.azure.general.Gear

+

GlobeError +diagrams.azure.general.GlobeError

+

GlobeSuccess +diagrams.azure.general.GlobeSuccess

+

GlobeWarning +diagrams.azure.general.GlobeWarning

+

Guide +diagrams.azure.general.Guide

+

Heart +diagrams.azure.general.Heart

+

HelpAndSupport +diagrams.azure.general.HelpAndSupport

Helpsupport diagrams.azure.general.Helpsupport

+

Image +diagrams.azure.general.Image

Information diagrams.azure.general.Information

+

InputOutput +diagrams.azure.general.InputOutput

+

JourneyHub +diagrams.azure.general.JourneyHub

+

LaunchPortal +diagrams.azure.general.LaunchPortal

+

Learn +diagrams.azure.general.Learn

+

LoadTest +diagrams.azure.general.LoadTest

+

Location +diagrams.azure.general.Location

+

LogStreaming +diagrams.azure.general.LogStreaming

+

ManagementGroups +diagrams.azure.general.ManagementGroups

+

ManagementPortal +diagrams.azure.general.ManagementPortal

Managementgroups diagrams.azure.general.Managementgroups

+

MarketplaceManagement +diagrams.azure.general.MarketplaceManagement

Marketplace diagrams.azure.general.Marketplace

+

MediaFile +diagrams.azure.general.MediaFile

+

Media +diagrams.azure.general.Media

+

MobileEngagement +diagrams.azure.general.MobileEngagement

+

Mobile +diagrams.azure.general.Mobile

+

Module +diagrams.azure.general.Module

+

PowerUp +diagrams.azure.general.PowerUp

+

Power +diagrams.azure.general.Power

+

Powershell +diagrams.azure.general.Powershell

+

PreviewFeatures +diagrams.azure.general.PreviewFeatures

+

ProcessExplorer +diagrams.azure.general.ProcessExplorer

+

ProductionReadyDatabase +diagrams.azure.general.ProductionReadyDatabase

+

QuickstartCenter +diagrams.azure.general.QuickstartCenter

Quickstartcenter diagrams.azure.general.Quickstartcenter

Recent diagrams.azure.general.Recent

+

RegionManagement +diagrams.azure.general.RegionManagement

Reservations diagrams.azure.general.Reservations

+

ResourceExplorer +diagrams.azure.general.ResourceExplorer

+

ResourceGroupList +diagrams.azure.general.ResourceGroupList

+

ResourceGroups +diagrams.azure.general.ResourceGroups

+

ResourceLinked +diagrams.azure.general.ResourceLinked

Resource diagrams.azure.general.Resource

Resourcegroups diagrams.azure.general.Resourcegroups

+

Scheduler +diagrams.azure.general.Scheduler

+

SearchGrid +diagrams.azure.general.SearchGrid

+

Search +diagrams.azure.general.Search

+

ServerFarm +diagrams.azure.general.ServerFarm

+

ServiceHealth +diagrams.azure.general.ServiceHealth

Servicehealth diagrams.azure.general.Servicehealth

Shareddashboard diagrams.azure.general.Shareddashboard

+

Ssd +diagrams.azure.general.Ssd

+

StorageAzureFiles +diagrams.azure.general.StorageAzureFiles

+

StorageContainer +diagrams.azure.general.StorageContainer

+

StorageQueue +diagrams.azure.general.StorageQueue

Subscriptions diagrams.azure.general.Subscriptions

Support diagrams.azure.general.Support

Supportrequests diagrams.azure.general.Supportrequests

+

Table +diagrams.azure.general.Table

Tag diagrams.azure.general.Tag

Tags diagrams.azure.general.Tags

Templates diagrams.azure.general.Templates

+

TfsVcRepository +diagrams.azure.general.TfsVcRepository

+

Toolbox +diagrams.azure.general.Toolbox

+

Troubleshoot +diagrams.azure.general.Troubleshoot

Twousericon diagrams.azure.general.Twousericon

Userhealthicon @@ -270,9 +697,36 @@ diagrams.azure.general.Userprivacy

Userresource diagrams.azure.general.Userresource

+

Versions +diagrams.azure.general.Versions

+

WebSlots +diagrams.azure.general.WebSlots

+

WebTest +diagrams.azure.general.WebTest

+

WebsitePower +diagrams.azure.general.WebsitePower

+

WebsiteStaging +diagrams.azure.general.WebsiteStaging

Whatsnew diagrams.azure.general.Whatsnew

+

Workbooks +diagrams.azure.general.Workbooks

+

Workflow +diagrams.azure.general.Workflow

+

azure.hybridmulticloud

+

AzureOperator5GCore +diagrams.azure.hybridmulticloud.AzureOperator5GCore

+

AzureOperatorInsights +diagrams.azure.hybridmulticloud.AzureOperatorInsights

+

AzureOperatorNexus +diagrams.azure.hybridmulticloud.AzureOperatorNexus

+

AzureOperatorServiceManager +diagrams.azure.hybridmulticloud.AzureOperatorServiceManager

+

AzureProgrammableConnectivity +diagrams.azure.hybridmulticloud.AzureProgrammableConnectivity

azure.identity

+

AadLicenses +diagrams.azure.identity.AadLicenses

AccessReview diagrams.azure.identity.AccessReview

ActiveDirectoryConnectHealth @@ -287,31 +741,99 @@ diagrams.azure.identity.ADIdentityProtection

ADPrivilegedIdentityManagement diagrams.azure.identity.ADPrivilegedIdentityManagement

+

AdministrativeUnits +diagrams.azure.identity.AdministrativeUnits

+

APIProxy +diagrams.azure.identity.APIProxy

AppRegistrations diagrams.azure.identity.AppRegistrations

+

AzureActiveDirectory +diagrams.azure.identity.AzureActiveDirectory

+

AzureADB2C +diagrams.azure.identity.AzureADB2C

+

AzureADDomainServices +diagrams.azure.identity.AzureADDomainServices

+

AzureADIdentityProtection +diagrams.azure.identity.AzureADIdentityProtection

+

AzureADPrivilegeIdentityManagement +diagrams.azure.identity.AzureADPrivilegeIdentityManagement

+

AzureADPrivlegedIdentityManagement +diagrams.azure.identity.AzureADPrivlegedIdentityManagement

+

AzureADRolesAndAdministrators +diagrams.azure.identity.AzureADRolesAndAdministrators

+

AzureInformationProtection +diagrams.azure.identity.AzureInformationProtection

ConditionalAccess diagrams.azure.identity.ConditionalAccess

+

CustomAzureADRoles +diagrams.azure.identity.CustomAzureADRoles

EnterpriseApplications diagrams.azure.identity.EnterpriseApplications

+

EntraConnect +diagrams.azure.identity.EntraConnect

+

EntraDomainServices +diagrams.azure.identity.EntraDomainServices

+

EntraIDProtection +diagrams.azure.identity.EntraIDProtection

+

EntraManagedIdentities +diagrams.azure.identity.EntraManagedIdentities

+

EntraPrivlegedIdentityManagement +diagrams.azure.identity.EntraPrivlegedIdentityManagement

+

EntraVerifiedID +diagrams.azure.identity.EntraVerifiedID

+

ExternalIdentities +diagrams.azure.identity.ExternalIdentities

+

GlobalSecureAccess +diagrams.azure.identity.GlobalSecureAccess

Groups diagrams.azure.identity.Groups

IdentityGovernance diagrams.azure.identity.IdentityGovernance

InformationProtection diagrams.azure.identity.InformationProtection

+

InternetAccess +diagrams.azure.identity.InternetAccess

ManagedIdentities diagrams.azure.identity.ManagedIdentities

+

PrivateAccess +diagrams.azure.identity.PrivateAccess

+

Security +diagrams.azure.identity.Security

+

TenantProperties +diagrams.azure.identity.TenantProperties

+

UserSettings +diagrams.azure.identity.UserSettings

Users diagrams.azure.identity.Users

+

VerifiableCredentials +diagrams.azure.identity.VerifiableCredentials

azure.integration

+

APIConnections +diagrams.azure.integration.APIConnections

APIForFhir diagrams.azure.integration.APIForFhir

+

APIManagementServices +diagrams.azure.integration.APIManagementServices

APIManagement diagrams.azure.integration.APIManagement

AppConfiguration diagrams.azure.integration.AppConfiguration

+

AzureAPIForFhir +diagrams.azure.integration.AzureAPIForFhir

+

AzureDataCatalog +diagrams.azure.integration.AzureDataCatalog

+

AzureDataboxGateway +diagrams.azure.integration.AzureDataboxGateway

+

AzureServiceBus +diagrams.azure.integration.AzureServiceBus

+

AzureSQLServerStretchDatabases +diagrams.azure.integration.AzureSQLServerStretchDatabases

+

AzureStackEdge +diagrams.azure.integration.AzureStackEdge

DataCatalog diagrams.azure.integration.DataCatalog

+

DataFactories +diagrams.azure.integration.DataFactories

EventGridDomains diagrams.azure.integration.EventGridDomains

EventGridSubscriptions @@ -320,14 +842,24 @@ diagrams.azure.integration.EventGridTopics

IntegrationAccounts diagrams.azure.integration.IntegrationAccounts

+

IntegrationEnvironments +diagrams.azure.integration.IntegrationEnvironments

IntegrationServiceEnvironments diagrams.azure.integration.IntegrationServiceEnvironments

LogicAppsCustomConnector diagrams.azure.integration.LogicAppsCustomConnector

LogicApps diagrams.azure.integration.LogicApps

+

PartnerNamespace +diagrams.azure.integration.PartnerNamespace

+

PartnerRegistration +diagrams.azure.integration.PartnerRegistration

PartnerTopic diagrams.azure.integration.PartnerTopic

+

PowerPlatform +diagrams.azure.integration.PowerPlatform

+

Relays +diagrams.azure.integration.Relays

SendgridAccounts diagrams.azure.integration.SendgridAccounts

ServiceBusRelays @@ -338,32 +870,202 @@ diagrams.azure.integration.ServiceCatalogManagedApplicationDefinitions

SoftwareAsAService diagrams.azure.integration.SoftwareAsAService

+

SQLDataWarehouses +diagrams.azure.integration.SQLDataWarehouses

StorsimpleDeviceManagers diagrams.azure.integration.StorsimpleDeviceManagers

SystemTopic diagrams.azure.integration.SystemTopic

+

azure.intune

+

AzureADRolesAndAdministrators +diagrams.azure.intune.AzureADRolesAndAdministrators

+

ClientApps +diagrams.azure.intune.ClientApps

+

DeviceCompliance +diagrams.azure.intune.DeviceCompliance

+

DeviceConfiguration +diagrams.azure.intune.DeviceConfiguration

+

DeviceEnrollment +diagrams.azure.intune.DeviceEnrollment

+

DeviceSecurityApple +diagrams.azure.intune.DeviceSecurityApple

+

DeviceSecurityGoogle +diagrams.azure.intune.DeviceSecurityGoogle

+

DeviceSecurityWindows +diagrams.azure.intune.DeviceSecurityWindows

+

Devices +diagrams.azure.intune.Devices

+

Ebooks +diagrams.azure.intune.Ebooks

+

ExchangeAccess +diagrams.azure.intune.ExchangeAccess

+

IntuneAppProtection +diagrams.azure.intune.IntuneAppProtection

+

IntuneForEducation +diagrams.azure.intune.IntuneForEducation

+

Intune +diagrams.azure.intune.Intune

+

Mindaro +diagrams.azure.intune.Mindaro

+

SecurityBaselines +diagrams.azure.intune.SecurityBaselines

+

SoftwareUpdates +diagrams.azure.intune.SoftwareUpdates

+

TenantStatus +diagrams.azure.intune.TenantStatus

azure.iot

+

AzureCosmosDb +diagrams.azure.iot.AzureCosmosDb

+

AzureDataboxGateway +diagrams.azure.iot.AzureDataboxGateway

+

AzureIotOperations +diagrams.azure.iot.AzureIotOperations

+

AzureMapsAccounts +diagrams.azure.iot.AzureMapsAccounts

+

AzureStack +diagrams.azure.iot.AzureStack

DeviceProvisioningServices diagrams.azure.iot.DeviceProvisioningServices

DigitalTwins diagrams.azure.iot.DigitalTwins

+

EventGridSubscriptions +diagrams.azure.iot.EventGridSubscriptions

+

EventHubClusters +diagrams.azure.iot.EventHubClusters

+

EventHubs +diagrams.azure.iot.EventHubs

+

FunctionApps +diagrams.azure.iot.FunctionApps

+

IndustrialIot +diagrams.azure.iot.IndustrialIot

IotCentralApplications diagrams.azure.iot.IotCentralApplications

+

IotEdge +diagrams.azure.iot.IotEdge

IotHubSecurity diagrams.azure.iot.IotHubSecurity

IotHub diagrams.azure.iot.IotHub

+

LogicApps +diagrams.azure.iot.LogicApps

+

MachineLearningStudioClassicWebServices +diagrams.azure.iot.MachineLearningStudioClassicWebServices

+

MachineLearningStudioWebServicePlans +diagrams.azure.iot.MachineLearningStudioWebServicePlans

+

MachineLearningStudioWorkspaces +diagrams.azure.iot.MachineLearningStudioWorkspaces

Maps diagrams.azure.iot.Maps

+

NotificationHubNamespaces +diagrams.azure.iot.NotificationHubNamespaces

+

NotificationHubs +diagrams.azure.iot.NotificationHubs

Sphere diagrams.azure.iot.Sphere

+

StackHciPremium +diagrams.azure.iot.StackHciPremium

+

StreamAnalyticsJobs +diagrams.azure.iot.StreamAnalyticsJobs

+

TimeSeriesDataSets +diagrams.azure.iot.TimeSeriesDataSets

+

TimeSeriesInsightsAccessPolicies +diagrams.azure.iot.TimeSeriesInsightsAccessPolicies

TimeSeriesInsightsEnvironments diagrams.azure.iot.TimeSeriesInsightsEnvironments

+

TimeSeriesInsightsEventSources +diagrams.azure.iot.TimeSeriesInsightsEventSources

TimeSeriesInsightsEventsSources diagrams.azure.iot.TimeSeriesInsightsEventsSources

Windows10IotCoreServices diagrams.azure.iot.Windows10IotCoreServices

+

Windows10CoreServices +diagrams.azure.iot.Windows10CoreServices

+

azure.managementgovernance

+

ActivityLog +diagrams.azure.managementgovernance.ActivityLog

+

Advisor +diagrams.azure.managementgovernance.Advisor

+

Alerts +diagrams.azure.managementgovernance.Alerts

+

ApplicationInsights +diagrams.azure.managementgovernance.ApplicationInsights

+

ArcMachines +diagrams.azure.managementgovernance.ArcMachines

+

AutomationAccounts +diagrams.azure.managementgovernance.AutomationAccounts

+

AzureArc +diagrams.azure.managementgovernance.AzureArc

+

AzureLighthouse +diagrams.azure.managementgovernance.AzureLighthouse

+

Blueprints +diagrams.azure.managementgovernance.Blueprints

+

Compliance +diagrams.azure.managementgovernance.Compliance

+

CostManagementAndBilling +diagrams.azure.managementgovernance.CostManagementAndBilling

+

CustomerLockboxForMicrosoftAzure +diagrams.azure.managementgovernance.CustomerLockboxForMicrosoftAzure

+

DiagnosticsSettings +diagrams.azure.managementgovernance.DiagnosticsSettings

+

Education +diagrams.azure.managementgovernance.Education

+

IntuneTrends +diagrams.azure.managementgovernance.IntuneTrends

+

LogAnalyticsWorkspaces +diagrams.azure.managementgovernance.LogAnalyticsWorkspaces

+

Machinesazurearc +diagrams.azure.managementgovernance.Machinesazurearc

+

ManagedApplicationsCenter +diagrams.azure.managementgovernance.ManagedApplicationsCenter

+

ManagedDesktop +diagrams.azure.managementgovernance.ManagedDesktop

+

Metrics +diagrams.azure.managementgovernance.Metrics

+

Monitor +diagrams.azure.managementgovernance.Monitor

+

MyCustomers +diagrams.azure.managementgovernance.MyCustomers

+

OperationLogClassic +diagrams.azure.managementgovernance.OperationLogClassic

+

Policy +diagrams.azure.managementgovernance.Policy

+

RecoveryServicesVaults +diagrams.azure.managementgovernance.RecoveryServicesVaults

+

ResourceGraphExplorer +diagrams.azure.managementgovernance.ResourceGraphExplorer

+

ResourcesProvider +diagrams.azure.managementgovernance.ResourcesProvider

+

SchedulerJobCollections +diagrams.azure.managementgovernance.SchedulerJobCollections

+

ServiceCatalogMad +diagrams.azure.managementgovernance.ServiceCatalogMad

+

ServiceProviders +diagrams.azure.managementgovernance.ServiceProviders

+

Solutions +diagrams.azure.managementgovernance.Solutions

+

UniversalPrint +diagrams.azure.managementgovernance.UniversalPrint

+

UserPrivacy +diagrams.azure.managementgovernance.UserPrivacy

+

azure.menu

+

Keys +diagrams.azure.menu.Keys

+

azure.migrate

+

AzureDataboxGateway +diagrams.azure.migrate.AzureDataboxGateway

+

AzureMigrate +diagrams.azure.migrate.AzureMigrate

+

AzureStackEdge +diagrams.azure.migrate.AzureStackEdge

+

CostManagementAndBilling +diagrams.azure.migrate.CostManagementAndBilling

+

DataBox +diagrams.azure.migrate.DataBox

+

RecoveryServicesVaults +diagrams.azure.migrate.RecoveryServicesVaults

azure.migration

+

AzureDatabaseMigrationServices +diagrams.azure.migration.AzureDatabaseMigrationServices

DataBoxEdge diagrams.azure.migration.DataBoxEdge

DataBox @@ -374,11 +1076,16 @@ diagrams.azure.migration.MigrationProjects

RecoveryServicesVaults diagrams.azure.migration.RecoveryServicesVaults

+

azure.mixedreality

+

RemoteRendering +diagrams.azure.mixedreality.RemoteRendering

+

SpatialAnchorAccounts +diagrams.azure.mixedreality.SpatialAnchorAccounts

azure.ml

AzureOpenAI diagrams.azure.ml.AzureOpenAI

-

AzureSpeedToText -diagrams.azure.ml.AzureSpeedToText

+

AzureSpeechService +diagrams.azure.ml.AzureSpeechService

BatchAI diagrams.azure.ml.BatchAI

BotServices @@ -398,19 +1105,37 @@

azure.mobile

AppServiceMobile diagrams.azure.mobile.AppServiceMobile

+

AppServices +diagrams.azure.mobile.AppServices

MobileEngagement diagrams.azure.mobile.MobileEngagement

NotificationHubs diagrams.azure.mobile.NotificationHubs

+

PowerPlatform +diagrams.azure.mobile.PowerPlatform

azure.monitor

+

ActivityLog +diagrams.azure.monitor.ActivityLog

+

ApplicationInsights +diagrams.azure.monitor.ApplicationInsights

+

AutoScale +diagrams.azure.monitor.AutoScale

+

AzureMonitorsForSAPSolutions +diagrams.azure.monitor.AzureMonitorsForSAPSolutions

+

AzureWorkbooks +diagrams.azure.monitor.AzureWorkbooks

ChangeAnalysis diagrams.azure.monitor.ChangeAnalysis

-

Logs -diagrams.azure.monitor.Logs

+

DiagnosticsSettings +diagrams.azure.monitor.DiagnosticsSettings

+

LogAnalyticsWorkspaces +diagrams.azure.monitor.LogAnalyticsWorkspaces

Metrics diagrams.azure.monitor.Metrics

Monitor diagrams.azure.monitor.Monitor

+

NetworkWatcher +diagrams.azure.monitor.NetworkWatcher

azure.network

ApplicationGateway diagrams.azure.network.ApplicationGateway

@@ -468,24 +1193,439 @@ diagrams.azure.network.VirtualNetworks

VirtualWans diagrams.azure.network.VirtualWans

+

azure.networking

+

ApplicationGateways +diagrams.azure.networking.ApplicationGateways

+

AtmMultistack +diagrams.azure.networking.AtmMultistack

+

AzureCommunicationsGateway +diagrams.azure.networking.AzureCommunicationsGateway

+

AzureFirewallManager +diagrams.azure.networking.AzureFirewallManager

+

AzureFirewallPolicy +diagrams.azure.networking.AzureFirewallPolicy

+

Bastions +diagrams.azure.networking.Bastions

+

CDNProfiles +diagrams.azure.networking.CDNProfiles

+

ConnectedCache +diagrams.azure.networking.ConnectedCache

+

Connections +diagrams.azure.networking.Connections

+

DDOSProtectionPlans +diagrams.azure.networking.DDOSProtectionPlans

+

DNSMultistack +diagrams.azure.networking.DNSMultistack

+

DNSPrivateResolver +diagrams.azure.networking.DNSPrivateResolver

+

DNSSecurityPolicy +diagrams.azure.networking.DNSSecurityPolicy

+

DNSZones +diagrams.azure.networking.DNSZones

+

ExpressrouteCircuits +diagrams.azure.networking.ExpressrouteCircuits

+

Firewalls +diagrams.azure.networking.Firewalls

+

FrontDoorAndCDNProfiles +diagrams.azure.networking.FrontDoorAndCDNProfiles

+

IpAddressManager +diagrams.azure.networking.IpAddressManager

+

IpGroups +diagrams.azure.networking.IpGroups

+

LoadBalancerHub +diagrams.azure.networking.LoadBalancerHub

+

LoadBalancers +diagrams.azure.networking.LoadBalancers

+

LocalNetworkGateways +diagrams.azure.networking.LocalNetworkGateways

+

Nat +diagrams.azure.networking.Nat

+

NetworkInterfaces +diagrams.azure.networking.NetworkInterfaces

+

NetworkSecurityGroups +diagrams.azure.networking.NetworkSecurityGroups

+

NetworkWatcher +diagrams.azure.networking.NetworkWatcher

+

OnPremisesDataGateways +diagrams.azure.networking.OnPremisesDataGateways

+

PrivateLinkService +diagrams.azure.networking.PrivateLinkService

+

PrivateLinkServices +diagrams.azure.networking.PrivateLinkServices

+

PrivateLink +diagrams.azure.networking.PrivateLink

+

ProximityPlacementGroups +diagrams.azure.networking.ProximityPlacementGroups

+

PublicIpAddressesClassic +diagrams.azure.networking.PublicIpAddressesClassic

+

PublicIpAddresses +diagrams.azure.networking.PublicIpAddresses

+

PublicIpPrefixes +diagrams.azure.networking.PublicIpPrefixes

+

ReservedIpAddressesClassic +diagrams.azure.networking.ReservedIpAddressesClassic

+

ResourceManagementPrivateLink +diagrams.azure.networking.ResourceManagementPrivateLink

+

RouteFilters +diagrams.azure.networking.RouteFilters

+

RouteTables +diagrams.azure.networking.RouteTables

+

ServiceEndpointPolicies +diagrams.azure.networking.ServiceEndpointPolicies

+

SpotVM +diagrams.azure.networking.SpotVM

+

SpotVmss +diagrams.azure.networking.SpotVmss

+

Subnet +diagrams.azure.networking.Subnet

+

TrafficController +diagrams.azure.networking.TrafficController

+

TrafficManagerProfiles +diagrams.azure.networking.TrafficManagerProfiles

+

VirtualNetworkGateways +diagrams.azure.networking.VirtualNetworkGateways

+

VirtualNetworksClassic +diagrams.azure.networking.VirtualNetworksClassic

+

VirtualNetworks +diagrams.azure.networking.VirtualNetworks

+

VirtualRouter +diagrams.azure.networking.VirtualRouter

+

VirtualWanHub +diagrams.azure.networking.VirtualWanHub

+

VirtualWans +diagrams.azure.networking.VirtualWans

+

WebApplicationFirewallPolicieswaf +diagrams.azure.networking.WebApplicationFirewallPolicieswaf

+

azure.newicons

+

AzureSustainability +diagrams.azure.newicons.AzureSustainability

+

ConnectedVehiclePlatform +diagrams.azure.newicons.ConnectedVehiclePlatform

+

EntraConnectHealth +diagrams.azure.newicons.EntraConnectHealth

+

EntraConnectSync +diagrams.azure.newicons.EntraConnectSync

+

IcmTroubleshooting +diagrams.azure.newicons.IcmTroubleshooting

+

Osconfig +diagrams.azure.newicons.Osconfig

+

StorageActions +diagrams.azure.newicons.StorageActions

+

azure.other

+

AadLicenses +diagrams.azure.other.AadLicenses

+

AksIstio +diagrams.azure.other.AksIstio

+

AppComplianceAutomation +diagrams.azure.other.AppComplianceAutomation

+

AppRegistrations +diagrams.azure.other.AppRegistrations

+

Aquila +diagrams.azure.other.Aquila

+

ArcDataServices +diagrams.azure.other.ArcDataServices

+

ArcKubernetes +diagrams.azure.other.ArcKubernetes

+

ArcPostgresql +diagrams.azure.other.ArcPostgresql

+

ArcSQLManagedInstance +diagrams.azure.other.ArcSQLManagedInstance

+

ArcSQLServer +diagrams.azure.other.ArcSQLServer

+

AvsVM +diagrams.azure.other.AvsVM

+

AzureA +diagrams.azure.other.AzureA

+

AzureBackupCenter +diagrams.azure.other.AzureBackupCenter

+

AzureCenterForSAP +diagrams.azure.other.AzureCenterForSAP

+

AzureChaosStudio +diagrams.azure.other.AzureChaosStudio

+

AzureCloudShell +diagrams.azure.other.AzureCloudShell

+

AzureCommunicationServices +diagrams.azure.other.AzureCommunicationServices

+

AzureComputeGalleries +diagrams.azure.other.AzureComputeGalleries

+

AzureDeploymentEnvironments +diagrams.azure.other.AzureDeploymentEnvironments

+

AzureDevTunnels +diagrams.azure.other.AzureDevTunnels

+

AzureEdgeHardwareCenter +diagrams.azure.other.AzureEdgeHardwareCenter

+

AzureHpcWorkbenches +diagrams.azure.other.AzureHpcWorkbenches

+

AzureLoadTesting +diagrams.azure.other.AzureLoadTesting

+

AzureManagedGrafana +diagrams.azure.other.AzureManagedGrafana

+

AzureMonitorDashboard +diagrams.azure.other.AzureMonitorDashboard

+

AzureNetworkFunctionManagerFunctions +diagrams.azure.other.AzureNetworkFunctionManagerFunctions

+

AzureNetworkFunctionManager +diagrams.azure.other.AzureNetworkFunctionManager

+

AzureOrbital +diagrams.azure.other.AzureOrbital

+

AzureQuotas +diagrams.azure.other.AzureQuotas

+

AzureSphere +diagrams.azure.other.AzureSphere

+

AzureStorageMover +diagrams.azure.other.AzureStorageMover

+

AzureSupportCenterBlue +diagrams.azure.other.AzureSupportCenterBlue

+

AzureVideoIndexer +diagrams.azure.other.AzureVideoIndexer

+

AzureVirtualDesktop +diagrams.azure.other.AzureVirtualDesktop

+

AzureVmwareSolution +diagrams.azure.other.AzureVmwareSolution

+

Azureattestation +diagrams.azure.other.Azureattestation

+

Azurite +diagrams.azure.other.Azurite

+

BackupVault +diagrams.azure.other.BackupVault

+

BareMetalInfrastructure +diagrams.azure.other.BareMetalInfrastructure

+

CapacityReservationGroups +diagrams.azure.other.CapacityReservationGroups

+

CentralServiceInstanceForSAP +diagrams.azure.other.CentralServiceInstanceForSAP

+

Ceres +diagrams.azure.other.Ceres

+

CloudServicesExtendedSupport +diagrams.azure.other.CloudServicesExtendedSupport

+

CommunityImages +diagrams.azure.other.CommunityImages

+

ComplianceCenter +diagrams.azure.other.ComplianceCenter

+

ConfidentialLedgers +diagrams.azure.other.ConfidentialLedgers

+

ContainerAppsEnvironments +diagrams.azure.other.ContainerAppsEnvironments

+

CostExport +diagrams.azure.other.CostExport

+

CustomIpPrefix +diagrams.azure.other.CustomIpPrefix

+

DashboardHub +diagrams.azure.other.DashboardHub

+

DataCollectionRules +diagrams.azure.other.DataCollectionRules

+

DatabaseInstanceForSAP +diagrams.azure.other.DatabaseInstanceForSAP

+

DedicatedHsm +diagrams.azure.other.DedicatedHsm

+

DefenderCmLocalManager +diagrams.azure.other.DefenderCmLocalManager

+

DefenderDcsController +diagrams.azure.other.DefenderDcsController

+

DefenderDistributerControlSystem +diagrams.azure.other.DefenderDistributerControlSystem

+

DefenderEngineeringStation +diagrams.azure.other.DefenderEngineeringStation

+

DefenderExternalManagement +diagrams.azure.other.DefenderExternalManagement

+

DefenderFreezerMonitor +diagrams.azure.other.DefenderFreezerMonitor

+

DefenderHistorian +diagrams.azure.other.DefenderHistorian

+

DefenderHmi +diagrams.azure.other.DefenderHmi

+

DefenderIndustrialPackagingSystem +diagrams.azure.other.DefenderIndustrialPackagingSystem

+

DefenderIndustrialPrinter +diagrams.azure.other.DefenderIndustrialPrinter

+

DefenderIndustrialRobot +diagrams.azure.other.DefenderIndustrialRobot

+

DefenderIndustrialScaleSystem +diagrams.azure.other.DefenderIndustrialScaleSystem

+

DefenderMarquee +diagrams.azure.other.DefenderMarquee

+

DefenderMeter +diagrams.azure.other.DefenderMeter

+

DefenderPlc +diagrams.azure.other.DefenderPlc

+

DefenderPneumaticDevice +diagrams.azure.other.DefenderPneumaticDevice

+

DefenderProgramableBoard +diagrams.azure.other.DefenderProgramableBoard

+

DefenderRelay +diagrams.azure.other.DefenderRelay

+

DefenderRobotController +diagrams.azure.other.DefenderRobotController

+

DefenderRtu +diagrams.azure.other.DefenderRtu

+

DefenderSensor +diagrams.azure.other.DefenderSensor

+

DefenderSlot +diagrams.azure.other.DefenderSlot

+

DefenderWebGuidingSystem +diagrams.azure.other.DefenderWebGuidingSystem

+

DeviceUpdateIotHub +diagrams.azure.other.DeviceUpdateIotHub

+

DiskPool +diagrams.azure.other.DiskPool

+

EdgeManagement +diagrams.azure.other.EdgeManagement

+

ElasticSan +diagrams.azure.other.ElasticSan

+

ExchangeOnPremisesAccess +diagrams.azure.other.ExchangeOnPremisesAccess

+

ExpressRouteTrafficCollector +diagrams.azure.other.ExpressRouteTrafficCollector

+

ExpressrouteDirect +diagrams.azure.other.ExpressrouteDirect

+

FhirService +diagrams.azure.other.FhirService

+

Fiji +diagrams.azure.other.Fiji

+

HdiAksCluster +diagrams.azure.other.HdiAksCluster

+

InstancePools +diagrams.azure.other.InstancePools

+

InternetAnalyzerProfiles +diagrams.azure.other.InternetAnalyzerProfiles

+

KubernetesFleetManager +diagrams.azure.other.KubernetesFleetManager

+

LocalNetworkGateways +diagrams.azure.other.LocalNetworkGateways

+

LogAnalyticsQueryPack +diagrams.azure.other.LogAnalyticsQueryPack

+

ManagedInstanceApacheCassandra +diagrams.azure.other.ManagedInstanceApacheCassandra

+

MedtechService +diagrams.azure.other.MedtechService

+

MicrosoftDevBox +diagrams.azure.other.MicrosoftDevBox

+

MissionLandingZone +diagrams.azure.other.MissionLandingZone

+

MobileNetworks +diagrams.azure.other.MobileNetworks

+

ModularDataCenter +diagrams.azure.other.ModularDataCenter

+

NetworkManagers +diagrams.azure.other.NetworkManagers

+

NetworkSecurityPerimeters +diagrams.azure.other.NetworkSecurityPerimeters

+

OpenSupplyChainPlatform +diagrams.azure.other.OpenSupplyChainPlatform

+

PeeringService +diagrams.azure.other.PeeringService

+

Peerings +diagrams.azure.other.Peerings

+

PrivateEndpoints +diagrams.azure.other.PrivateEndpoints

+

ReservedCapacity +diagrams.azure.other.ReservedCapacity

+

ResourceGuard +diagrams.azure.other.ResourceGuard

+

ResourceMover +diagrams.azure.other.ResourceMover

+

Rtos +diagrams.azure.other.Rtos

+

SavingsPlans +diagrams.azure.other.SavingsPlans

+

ScvmmManagementServers +diagrams.azure.other.ScvmmManagementServers

+

SonicDash +diagrams.azure.other.SonicDash

+

SshKeys +diagrams.azure.other.SshKeys

+

StorageFunctions +diagrams.azure.other.StorageFunctions

+

TargetsManagement +diagrams.azure.other.TargetsManagement

+

TemplateSpecs +diagrams.azure.other.TemplateSpecs

+

TestBase +diagrams.azure.other.TestBase

+

UpdateManagementCenter +diagrams.azure.other.UpdateManagementCenter

+

VideoAnalyzers +diagrams.azure.other.VideoAnalyzers

+

VirtualEnclaves +diagrams.azure.other.VirtualEnclaves

+

VirtualInstanceForSAP +diagrams.azure.other.VirtualInstanceForSAP

+

VirtualVisitsBuilder +diagrams.azure.other.VirtualVisitsBuilder

+

VMAppDefinitions +diagrams.azure.other.VMAppDefinitions

+

VMAppVersions +diagrams.azure.other.VMAppVersions

+

VMImageVersion +diagrams.azure.other.VMImageVersion

+

Wac +diagrams.azure.other.Wac

+

WebAppDatabase +diagrams.azure.other.WebAppDatabase

+

WebJobs +diagrams.azure.other.WebJobs

+

WindowsNotificationServices +diagrams.azure.other.WindowsNotificationServices

+

WorkerContainerApp +diagrams.azure.other.WorkerContainerApp

azure.security

ApplicationSecurityGroups diagrams.azure.security.ApplicationSecurityGroups

+

AzureADAuthenticationMethods +diagrams.azure.security.AzureADAuthenticationMethods

+

AzureADIdentityProtection +diagrams.azure.security.AzureADIdentityProtection

+

AzureADPrivlegedIdentityManagement +diagrams.azure.security.AzureADPrivlegedIdentityManagement

+

AzureADRiskySignins +diagrams.azure.security.AzureADRiskySignins

+

AzureADRiskyUsers +diagrams.azure.security.AzureADRiskyUsers

+

AzureInformationProtection +diagrams.azure.security.AzureInformationProtection

+

AzureSentinel +diagrams.azure.security.AzureSentinel

ConditionalAccess diagrams.azure.security.ConditionalAccess

Defender diagrams.azure.security.Defender

+

Detonation +diagrams.azure.security.Detonation

ExtendedSecurityUpdates diagrams.azure.security.ExtendedSecurityUpdates

+

Extendedsecurityupdates +diagrams.azure.security.Extendedsecurityupdates

+

IdentitySecureScore +diagrams.azure.security.IdentitySecureScore

KeyVaults diagrams.azure.security.KeyVaults

+

MicrosoftDefenderEasm +diagrams.azure.security.MicrosoftDefenderEasm

+

MicrosoftDefenderForCloud +diagrams.azure.security.MicrosoftDefenderForCloud

+

MicrosoftDefenderForIot +diagrams.azure.security.MicrosoftDefenderForIot

+

MultifactorAuthentication +diagrams.azure.security.MultifactorAuthentication

SecurityCenter diagrams.azure.security.SecurityCenter

Sentinel diagrams.azure.security.Sentinel

+

UserSettings +diagrams.azure.security.UserSettings

azure.storage

ArchiveStorage diagrams.azure.storage.ArchiveStorage

+

AzureDataboxGateway +diagrams.azure.storage.AzureDataboxGateway

+

AzureFileshares +diagrams.azure.storage.AzureFileshares

+

AzureHcpCache +diagrams.azure.storage.AzureHcpCache

+

AzureNetappFiles +diagrams.azure.storage.AzureNetappFiles

+

AzureStackEdge +diagrams.azure.storage.AzureStackEdge

Azurefxtedgefiler diagrams.azure.storage.Azurefxtedgefiler

BlobStorage @@ -494,14 +1634,24 @@ diagrams.azure.storage.DataBoxEdgeDataBoxGateway

DataBox diagrams.azure.storage.DataBox

+

DataLakeStorageGen1 +diagrams.azure.storage.DataLakeStorageGen1

DataLakeStorage diagrams.azure.storage.DataLakeStorage

+

DataShareInvitations +diagrams.azure.storage.DataShareInvitations

+

DataShares +diagrams.azure.storage.DataShares

GeneralStorage diagrams.azure.storage.GeneralStorage

+

ImportExportJobs +diagrams.azure.storage.ImportExportJobs

NetappFiles diagrams.azure.storage.NetappFiles

QueuesStorage diagrams.azure.storage.QueuesStorage

+

RecoveryServicesVaults +diagrams.azure.storage.RecoveryServicesVaults

StorageAccountsClassic diagrams.azure.storage.StorageAccountsClassic

StorageAccounts @@ -517,8 +1667,12 @@

TableStorage diagrams.azure.storage.TableStorage

azure.web

+

APICenter +diagrams.azure.web.APICenter

APIConnections diagrams.azure.web.APIConnections

+

APIManagementServices +diagrams.azure.web.APIManagementServices

AppServiceCertificates diagrams.azure.web.AppServiceCertificates

AppServiceDomains @@ -529,12 +1683,28 @@ diagrams.azure.web.AppServicePlans

AppServices diagrams.azure.web.AppServices

+

AppSpace +diagrams.azure.web.AppSpace

+

AzureMediaService +diagrams.azure.web.AzureMediaService

+

AzureSpringApps +diagrams.azure.web.AzureSpringApps

+

CognitiveSearch +diagrams.azure.web.CognitiveSearch

+

CognitiveServices +diagrams.azure.web.CognitiveServices

+

FrontDoorAndCDNProfiles +diagrams.azure.web.FrontDoorAndCDNProfiles

MediaServices diagrams.azure.web.MediaServices

NotificationHubNamespaces diagrams.azure.web.NotificationHubNamespaces

+

PowerPlatform +diagrams.azure.web.PowerPlatform

Search diagrams.azure.web.Search

Signalr diagrams.azure.web.Signalr

-
Last updated on 11/19/2024
\ No newline at end of file +

StaticApps +diagrams.azure.web.StaticApps

+
Last updated on 10/25/2025
AWSGCP
\ No newline at end of file diff --git a/docs/nodes/azure/index.html b/docs/nodes/azure/index.html index 457f10ec..b39141e5 100644 --- a/docs/nodes/azure/index.html +++ b/docs/nodes/azure/index.html @@ -1,4 +1,4 @@ -Azure · Diagrams

Azure

Node classes list of the azure provider.

+

Azure

Node classes list of azure provider.

+

azure.aimachinelearning

+

AIStudio +diagrams.azure.aimachinelearning.AIStudio

+

AnomalyDetector +diagrams.azure.aimachinelearning.AnomalyDetector

+

AzureAppliedAIServices +diagrams.azure.aimachinelearning.AzureAppliedAIServices

+

AzureExperimentationStudio +diagrams.azure.aimachinelearning.AzureExperimentationStudio

+

AzureObjectUnderstanding +diagrams.azure.aimachinelearning.AzureObjectUnderstanding

+

AzureOpenai +diagrams.azure.aimachinelearning.AzureOpenai

+

BatchAI +diagrams.azure.aimachinelearning.BatchAI

+

Bonsai +diagrams.azure.aimachinelearning.Bonsai

+

BotServices +diagrams.azure.aimachinelearning.BotServices

+

CognitiveSearch +diagrams.azure.aimachinelearning.CognitiveSearch

+

CognitiveServicesDecisions +diagrams.azure.aimachinelearning.CognitiveServicesDecisions

+

CognitiveServices +diagrams.azure.aimachinelearning.CognitiveServices

+

ComputerVision +diagrams.azure.aimachinelearning.ComputerVision

+

ContentModerators +diagrams.azure.aimachinelearning.ContentModerators

+

CustomVision +diagrams.azure.aimachinelearning.CustomVision

+

FaceApis +diagrams.azure.aimachinelearning.FaceApis

+

FormRecognizers +diagrams.azure.aimachinelearning.FormRecognizers

+

GenomicsAccounts +diagrams.azure.aimachinelearning.GenomicsAccounts

+

Genomics +diagrams.azure.aimachinelearning.Genomics

+

ImmersiveReaders +diagrams.azure.aimachinelearning.ImmersiveReaders

+

LanguageUnderstanding +diagrams.azure.aimachinelearning.LanguageUnderstanding

+

Language +diagrams.azure.aimachinelearning.Language

+

MachineLearningStudioClassicWebServices +diagrams.azure.aimachinelearning.MachineLearningStudioClassicWebServices

+

MachineLearningStudioWebServicePlans +diagrams.azure.aimachinelearning.MachineLearningStudioWebServicePlans

+

MachineLearningStudioWorkspaces +diagrams.azure.aimachinelearning.MachineLearningStudioWorkspaces

+

MachineLearning +diagrams.azure.aimachinelearning.MachineLearning

+

MetricsAdvisor +diagrams.azure.aimachinelearning.MetricsAdvisor

+

Personalizers +diagrams.azure.aimachinelearning.Personalizers

+

QnaMakers +diagrams.azure.aimachinelearning.QnaMakers

+

ServerlessSearch +diagrams.azure.aimachinelearning.ServerlessSearch

+

SpeechServices +diagrams.azure.aimachinelearning.SpeechServices

+

TranslatorText +diagrams.azure.aimachinelearning.TranslatorText

azure.analytics

AnalysisServices diagrams.azure.analytics.AnalysisServices

+

AzureDataExplorerClusters +diagrams.azure.analytics.AzureDataExplorerClusters

+

AzureDatabricks +diagrams.azure.analytics.AzureDatabricks

+

AzureSynapseAnalytics +diagrams.azure.analytics.AzureSynapseAnalytics

+

AzureWorkbooks +diagrams.azure.analytics.AzureWorkbooks

DataExplorerClusters diagrams.azure.analytics.DataExplorerClusters

DataFactories @@ -76,25 +149,91 @@ diagrams.azure.analytics.DataLakeStoreGen1

Databricks diagrams.azure.analytics.Databricks

+

EndpointAnalytics +diagrams.azure.analytics.EndpointAnalytics

EventHubClusters diagrams.azure.analytics.EventHubClusters

EventHubs diagrams.azure.analytics.EventHubs

-

Hdinsightclusters -diagrams.azure.analytics.Hdinsightclusters

+

HDInsightClusters +diagrams.azure.analytics.HDInsightClusters

LogAnalyticsWorkspaces diagrams.azure.analytics.LogAnalyticsWorkspaces

+

PowerBiEmbedded +diagrams.azure.analytics.PowerBiEmbedded

+

PowerPlatform +diagrams.azure.analytics.PowerPlatform

+

PrivateLinkServices +diagrams.azure.analytics.PrivateLinkServices

StreamAnalyticsJobs diagrams.azure.analytics.StreamAnalyticsJobs

SynapseAnalytics diagrams.azure.analytics.SynapseAnalytics

+

azure.appservices

+

AppServiceCertificates +diagrams.azure.appservices.AppServiceCertificates

+

AppServiceDomains +diagrams.azure.appservices.AppServiceDomains

+

AppServiceEnvironments +diagrams.azure.appservices.AppServiceEnvironments

+

AppServicePlans +diagrams.azure.appservices.AppServicePlans

+

AppServices +diagrams.azure.appservices.AppServices

+

CDNProfiles +diagrams.azure.appservices.CDNProfiles

+

CognitiveSearch +diagrams.azure.appservices.CognitiveSearch

+

NotificationHubs +diagrams.azure.appservices.NotificationHubs

+

azure.azureecosystem

+

Applens +diagrams.azure.azureecosystem.Applens

+

AzureHybridCenter +diagrams.azure.azureecosystem.AzureHybridCenter

+

CollaborativeService +diagrams.azure.azureecosystem.CollaborativeService

+

azure.azurestack

+

Capacity +diagrams.azure.azurestack.Capacity

+

InfrastructureBackup +diagrams.azure.azurestack.InfrastructureBackup

+

MultiTenancy +diagrams.azure.azurestack.MultiTenancy

+

Offers +diagrams.azure.azurestack.Offers

+

Plans +diagrams.azure.azurestack.Plans

+

Updates +diagrams.azure.azurestack.Updates

+

UserSubscriptions +diagrams.azure.azurestack.UserSubscriptions

+

azure.blockchain

+

AbsMember +diagrams.azure.blockchain.AbsMember

+

AzureBlockchainService +diagrams.azure.blockchain.AzureBlockchainService

+

AzureTokenService +diagrams.azure.blockchain.AzureTokenService

+

BlockchainApplications +diagrams.azure.blockchain.BlockchainApplications

+

Consortium +diagrams.azure.blockchain.Consortium

+

OutboundConnection +diagrams.azure.blockchain.OutboundConnection

azure.compute

AppServices diagrams.azure.compute.AppServices

+

ApplicationGroup +diagrams.azure.compute.ApplicationGroup

AutomanagedVM diagrams.azure.compute.AutomanagedVM

AvailabilitySets diagrams.azure.compute.AvailabilitySets

+

AzureComputeGalleries +diagrams.azure.compute.AzureComputeGalleries

+

AzureSpringApps +diagrams.azure.compute.AzureSpringApps

BatchAccounts diagrams.azure.compute.BatchAccounts

CitrixVirtualDesktopsEssentials @@ -111,24 +250,52 @@ diagrams.azure.compute.ContainerInstances

ContainerRegistries diagrams.azure.compute.ContainerRegistries, ACR (alias)

+

ContainerServicesDeprecated +diagrams.azure.compute.ContainerServicesDeprecated

DiskEncryptionSets diagrams.azure.compute.DiskEncryptionSets

DiskSnapshots diagrams.azure.compute.DiskSnapshots

+

DisksClassic +diagrams.azure.compute.DisksClassic

+

DisksSnapshots +diagrams.azure.compute.DisksSnapshots

Disks diagrams.azure.compute.Disks

FunctionApps diagrams.azure.compute.FunctionApps

+

HostGroups +diagrams.azure.compute.HostGroups

+

HostPools +diagrams.azure.compute.HostPools

+

Hosts +diagrams.azure.compute.Hosts

ImageDefinitions diagrams.azure.compute.ImageDefinitions

+

ImageTemplates +diagrams.azure.compute.ImageTemplates

ImageVersions diagrams.azure.compute.ImageVersions

+

Images +diagrams.azure.compute.Images

KubernetesServices diagrams.azure.compute.KubernetesServices, AKS (alias)

+

MaintenanceConfiguration +diagrams.azure.compute.MaintenanceConfiguration

+

ManagedServiceFabric +diagrams.azure.compute.ManagedServiceFabric

MeshApplications diagrams.azure.compute.MeshApplications

+

MetricsAdvisor +diagrams.azure.compute.MetricsAdvisor

+

OsImagesClassic +diagrams.azure.compute.OsImagesClassic

OsImages diagrams.azure.compute.OsImages

+

RestorePointsCollections +diagrams.azure.compute.RestorePointsCollections

+

RestorePoints +diagrams.azure.compute.RestorePoints

SAPHANAOnAzure diagrams.azure.compute.SAPHANAOnAzure

ServiceFabricClusters @@ -137,20 +304,45 @@ diagrams.azure.compute.SharedImageGalleries

SpringCloud diagrams.azure.compute.SpringCloud

+

VirtualMachine +diagrams.azure.compute.VirtualMachine

+

VirtualMachinesClassic +diagrams.azure.compute.VirtualMachinesClassic

VMClassic diagrams.azure.compute.VMClassic

+

VMImagesClassic +diagrams.azure.compute.VMImagesClassic

VMImages diagrams.azure.compute.VMImages

VMLinux diagrams.azure.compute.VMLinux

VMScaleSet diagrams.azure.compute.VMScaleSet, VMSS (alias)

+

VMScaleSets +diagrams.azure.compute.VMScaleSets

VMWindows diagrams.azure.compute.VMWindows

VM diagrams.azure.compute.VM

+

Workspaces2 +diagrams.azure.compute.Workspaces2

Workspaces diagrams.azure.compute.Workspaces

+

azure.containers

+

AppServices +diagrams.azure.containers.AppServices

+

AzureRedHatOpenshift +diagrams.azure.containers.AzureRedHatOpenshift

+

BatchAccounts +diagrams.azure.containers.BatchAccounts

+

ContainerInstances +diagrams.azure.containers.ContainerInstances

+

ContainerRegistries +diagrams.azure.containers.ContainerRegistries

+

KubernetesServices +diagrams.azure.containers.KubernetesServices

+

ServiceFabricClusters +diagrams.azure.containers.ServiceFabricClusters

azure.database

BlobStorage diagrams.azure.database.BlobStorage

@@ -200,19 +392,92 @@ diagrams.azure.database.VirtualClusters

VirtualDatacenter diagrams.azure.database.VirtualDatacenter

+

azure.databases

+

AzureCosmosDb +diagrams.azure.databases.AzureCosmosDb

+

AzureDataExplorerClusters +diagrams.azure.databases.AzureDataExplorerClusters

+

AzureDatabaseMariadbServer +diagrams.azure.databases.AzureDatabaseMariadbServer

+

AzureDatabaseMigrationServices +diagrams.azure.databases.AzureDatabaseMigrationServices

+

AzureDatabaseMysqlServer +diagrams.azure.databases.AzureDatabaseMysqlServer

+

AzureDatabasePostgresqlServerGroup +diagrams.azure.databases.AzureDatabasePostgresqlServerGroup

+

AzureDatabasePostgresqlServer +diagrams.azure.databases.AzureDatabasePostgresqlServer

+

AzurePurviewAccounts +diagrams.azure.databases.AzurePurviewAccounts

+

AzureSQLEdge +diagrams.azure.databases.AzureSQLEdge

+

AzureSQLServerStretchDatabases +diagrams.azure.databases.AzureSQLServerStretchDatabases

+

AzureSQLVM +diagrams.azure.databases.AzureSQLVM

+

AzureSQL +diagrams.azure.databases.AzureSQL

+

AzureSynapseAnalytics +diagrams.azure.databases.AzureSynapseAnalytics

+

CacheRedis +diagrams.azure.databases.CacheRedis

+

DataFactories +diagrams.azure.databases.DataFactories

+

ElasticJobAgents +diagrams.azure.databases.ElasticJobAgents

+

InstancePools +diagrams.azure.databases.InstancePools

+

ManagedDatabase +diagrams.azure.databases.ManagedDatabase

+

OracleDatabase +diagrams.azure.databases.OracleDatabase

+

SQLDataWarehouses +diagrams.azure.databases.SQLDataWarehouses

+

SQLDatabase +diagrams.azure.databases.SQLDatabase

+

SQLElasticPools +diagrams.azure.databases.SQLElasticPools

+

SQLManagedInstance +diagrams.azure.databases.SQLManagedInstance

+

SQLServerRegistries +diagrams.azure.databases.SQLServerRegistries

+

SQLServer +diagrams.azure.databases.SQLServer

+

SsisLiftAndShiftIr +diagrams.azure.databases.SsisLiftAndShiftIr

+

VirtualClusters +diagrams.azure.databases.VirtualClusters

azure.devops

+

APIConnections +diagrams.azure.devops.APIConnections

+

APIManagementServices +diagrams.azure.devops.APIManagementServices

ApplicationInsights diagrams.azure.devops.ApplicationInsights

Artifacts diagrams.azure.devops.Artifacts

+

AzureDevops +diagrams.azure.devops.AzureDevops

Boards diagrams.azure.devops.Boards

+

ChangeAnalysis +diagrams.azure.devops.ChangeAnalysis

+

Cloudtest +diagrams.azure.devops.Cloudtest

+

CodeOptimization +diagrams.azure.devops.CodeOptimization

+

DevopsStarter +diagrams.azure.devops.DevopsStarter

Devops diagrams.azure.devops.Devops

DevtestLabs diagrams.azure.devops.DevtestLabs

+

LabAccounts +diagrams.azure.devops.LabAccounts

LabServices diagrams.azure.devops.LabServices

+

LoadTesting +diagrams.azure.devops.LoadTesting

Pipelines diagrams.azure.devops.Pipelines

Repos @@ -220,46 +485,208 @@

TestPlans diagrams.azure.devops.TestPlans

azure.general

+

AllResources +diagrams.azure.general.AllResources

Allresources diagrams.azure.general.Allresources

Azurehome diagrams.azure.general.Azurehome

+

Backlog +diagrams.azure.general.Backlog

+

BizTalk +diagrams.azure.general.BizTalk

+

BlobBlock +diagrams.azure.general.BlobBlock

+

BlobPage +diagrams.azure.general.BlobPage

+

Branch +diagrams.azure.general.Branch

+

Browser +diagrams.azure.general.Browser

+

Bug +diagrams.azure.general.Bug

+

Builds +diagrams.azure.general.Builds

+

Cache +diagrams.azure.general.Cache

+

Code +diagrams.azure.general.Code

+

Commit +diagrams.azure.general.Commit

+

ControlsHorizontal +diagrams.azure.general.ControlsHorizontal

+

Controls +diagrams.azure.general.Controls

+

CostAlerts +diagrams.azure.general.CostAlerts

+

CostAnalysis +diagrams.azure.general.CostAnalysis

+

CostBudgets +diagrams.azure.general.CostBudgets

+

CostManagementAndBilling +diagrams.azure.general.CostManagementAndBilling

+

CostManagement +diagrams.azure.general.CostManagement

+

Counter +diagrams.azure.general.Counter

+

Cubes +diagrams.azure.general.Cubes

+

Dashboard +diagrams.azure.general.Dashboard

+

DevConsole +diagrams.azure.general.DevConsole

Developertools diagrams.azure.general.Developertools

+

Download +diagrams.azure.general.Download

+

Error +diagrams.azure.general.Error

+

Extensions +diagrams.azure.general.Extensions

+

FeaturePreviews +diagrams.azure.general.FeaturePreviews

+

File +diagrams.azure.general.File

+

Files +diagrams.azure.general.Files

+

FolderBlank +diagrams.azure.general.FolderBlank

+

FolderWebsite +diagrams.azure.general.FolderWebsite

+

FreeServices +diagrams.azure.general.FreeServices

+

Ftp +diagrams.azure.general.Ftp

+

Gear +diagrams.azure.general.Gear

+

GlobeError +diagrams.azure.general.GlobeError

+

GlobeSuccess +diagrams.azure.general.GlobeSuccess

+

GlobeWarning +diagrams.azure.general.GlobeWarning

+

Guide +diagrams.azure.general.Guide

+

Heart +diagrams.azure.general.Heart

+

HelpAndSupport +diagrams.azure.general.HelpAndSupport

Helpsupport diagrams.azure.general.Helpsupport

+

Image +diagrams.azure.general.Image

Information diagrams.azure.general.Information

+

InputOutput +diagrams.azure.general.InputOutput

+

JourneyHub +diagrams.azure.general.JourneyHub

+

LaunchPortal +diagrams.azure.general.LaunchPortal

+

Learn +diagrams.azure.general.Learn

+

LoadTest +diagrams.azure.general.LoadTest

+

Location +diagrams.azure.general.Location

+

LogStreaming +diagrams.azure.general.LogStreaming

+

ManagementGroups +diagrams.azure.general.ManagementGroups

+

ManagementPortal +diagrams.azure.general.ManagementPortal

Managementgroups diagrams.azure.general.Managementgroups

+

MarketplaceManagement +diagrams.azure.general.MarketplaceManagement

Marketplace diagrams.azure.general.Marketplace

+

MediaFile +diagrams.azure.general.MediaFile

+

Media +diagrams.azure.general.Media

+

MobileEngagement +diagrams.azure.general.MobileEngagement

+

Mobile +diagrams.azure.general.Mobile

+

Module +diagrams.azure.general.Module

+

PowerUp +diagrams.azure.general.PowerUp

+

Power +diagrams.azure.general.Power

+

Powershell +diagrams.azure.general.Powershell

+

PreviewFeatures +diagrams.azure.general.PreviewFeatures

+

ProcessExplorer +diagrams.azure.general.ProcessExplorer

+

ProductionReadyDatabase +diagrams.azure.general.ProductionReadyDatabase

+

QuickstartCenter +diagrams.azure.general.QuickstartCenter

Quickstartcenter diagrams.azure.general.Quickstartcenter

Recent diagrams.azure.general.Recent

+

RegionManagement +diagrams.azure.general.RegionManagement

Reservations diagrams.azure.general.Reservations

+

ResourceExplorer +diagrams.azure.general.ResourceExplorer

+

ResourceGroupList +diagrams.azure.general.ResourceGroupList

+

ResourceGroups +diagrams.azure.general.ResourceGroups

+

ResourceLinked +diagrams.azure.general.ResourceLinked

Resource diagrams.azure.general.Resource

Resourcegroups diagrams.azure.general.Resourcegroups

+

Scheduler +diagrams.azure.general.Scheduler

+

SearchGrid +diagrams.azure.general.SearchGrid

+

Search +diagrams.azure.general.Search

+

ServerFarm +diagrams.azure.general.ServerFarm

+

ServiceHealth +diagrams.azure.general.ServiceHealth

Servicehealth diagrams.azure.general.Servicehealth

Shareddashboard diagrams.azure.general.Shareddashboard

+

Ssd +diagrams.azure.general.Ssd

+

StorageAzureFiles +diagrams.azure.general.StorageAzureFiles

+

StorageContainer +diagrams.azure.general.StorageContainer

+

StorageQueue +diagrams.azure.general.StorageQueue

Subscriptions diagrams.azure.general.Subscriptions

Support diagrams.azure.general.Support

Supportrequests diagrams.azure.general.Supportrequests

+

Table +diagrams.azure.general.Table

Tag diagrams.azure.general.Tag

Tags diagrams.azure.general.Tags

Templates diagrams.azure.general.Templates

+

TfsVcRepository +diagrams.azure.general.TfsVcRepository

+

Toolbox +diagrams.azure.general.Toolbox

+

Troubleshoot +diagrams.azure.general.Troubleshoot

Twousericon diagrams.azure.general.Twousericon

Userhealthicon @@ -270,9 +697,36 @@ diagrams.azure.general.Userprivacy

Userresource diagrams.azure.general.Userresource

+

Versions +diagrams.azure.general.Versions

+

WebSlots +diagrams.azure.general.WebSlots

+

WebTest +diagrams.azure.general.WebTest

+

WebsitePower +diagrams.azure.general.WebsitePower

+

WebsiteStaging +diagrams.azure.general.WebsiteStaging

Whatsnew diagrams.azure.general.Whatsnew

+

Workbooks +diagrams.azure.general.Workbooks

+

Workflow +diagrams.azure.general.Workflow

+

azure.hybridmulticloud

+

AzureOperator5GCore +diagrams.azure.hybridmulticloud.AzureOperator5GCore

+

AzureOperatorInsights +diagrams.azure.hybridmulticloud.AzureOperatorInsights

+

AzureOperatorNexus +diagrams.azure.hybridmulticloud.AzureOperatorNexus

+

AzureOperatorServiceManager +diagrams.azure.hybridmulticloud.AzureOperatorServiceManager

+

AzureProgrammableConnectivity +diagrams.azure.hybridmulticloud.AzureProgrammableConnectivity

azure.identity

+

AadLicenses +diagrams.azure.identity.AadLicenses

AccessReview diagrams.azure.identity.AccessReview

ActiveDirectoryConnectHealth @@ -287,31 +741,99 @@ diagrams.azure.identity.ADIdentityProtection

ADPrivilegedIdentityManagement diagrams.azure.identity.ADPrivilegedIdentityManagement

+

AdministrativeUnits +diagrams.azure.identity.AdministrativeUnits

+

APIProxy +diagrams.azure.identity.APIProxy

AppRegistrations diagrams.azure.identity.AppRegistrations

+

AzureActiveDirectory +diagrams.azure.identity.AzureActiveDirectory

+

AzureADB2C +diagrams.azure.identity.AzureADB2C

+

AzureADDomainServices +diagrams.azure.identity.AzureADDomainServices

+

AzureADIdentityProtection +diagrams.azure.identity.AzureADIdentityProtection

+

AzureADPrivilegeIdentityManagement +diagrams.azure.identity.AzureADPrivilegeIdentityManagement

+

AzureADPrivlegedIdentityManagement +diagrams.azure.identity.AzureADPrivlegedIdentityManagement

+

AzureADRolesAndAdministrators +diagrams.azure.identity.AzureADRolesAndAdministrators

+

AzureInformationProtection +diagrams.azure.identity.AzureInformationProtection

ConditionalAccess diagrams.azure.identity.ConditionalAccess

+

CustomAzureADRoles +diagrams.azure.identity.CustomAzureADRoles

EnterpriseApplications diagrams.azure.identity.EnterpriseApplications

+

EntraConnect +diagrams.azure.identity.EntraConnect

+

EntraDomainServices +diagrams.azure.identity.EntraDomainServices

+

EntraIDProtection +diagrams.azure.identity.EntraIDProtection

+

EntraManagedIdentities +diagrams.azure.identity.EntraManagedIdentities

+

EntraPrivlegedIdentityManagement +diagrams.azure.identity.EntraPrivlegedIdentityManagement

+

EntraVerifiedID +diagrams.azure.identity.EntraVerifiedID

+

ExternalIdentities +diagrams.azure.identity.ExternalIdentities

+

GlobalSecureAccess +diagrams.azure.identity.GlobalSecureAccess

Groups diagrams.azure.identity.Groups

IdentityGovernance diagrams.azure.identity.IdentityGovernance

InformationProtection diagrams.azure.identity.InformationProtection

+

InternetAccess +diagrams.azure.identity.InternetAccess

ManagedIdentities diagrams.azure.identity.ManagedIdentities

+

PrivateAccess +diagrams.azure.identity.PrivateAccess

+

Security +diagrams.azure.identity.Security

+

TenantProperties +diagrams.azure.identity.TenantProperties

+

UserSettings +diagrams.azure.identity.UserSettings

Users diagrams.azure.identity.Users

+

VerifiableCredentials +diagrams.azure.identity.VerifiableCredentials

azure.integration

+

APIConnections +diagrams.azure.integration.APIConnections

APIForFhir diagrams.azure.integration.APIForFhir

+

APIManagementServices +diagrams.azure.integration.APIManagementServices

APIManagement diagrams.azure.integration.APIManagement

AppConfiguration diagrams.azure.integration.AppConfiguration

+

AzureAPIForFhir +diagrams.azure.integration.AzureAPIForFhir

+

AzureDataCatalog +diagrams.azure.integration.AzureDataCatalog

+

AzureDataboxGateway +diagrams.azure.integration.AzureDataboxGateway

+

AzureServiceBus +diagrams.azure.integration.AzureServiceBus

+

AzureSQLServerStretchDatabases +diagrams.azure.integration.AzureSQLServerStretchDatabases

+

AzureStackEdge +diagrams.azure.integration.AzureStackEdge

DataCatalog diagrams.azure.integration.DataCatalog

+

DataFactories +diagrams.azure.integration.DataFactories

EventGridDomains diagrams.azure.integration.EventGridDomains

EventGridSubscriptions @@ -320,14 +842,24 @@ diagrams.azure.integration.EventGridTopics

IntegrationAccounts diagrams.azure.integration.IntegrationAccounts

+

IntegrationEnvironments +diagrams.azure.integration.IntegrationEnvironments

IntegrationServiceEnvironments diagrams.azure.integration.IntegrationServiceEnvironments

LogicAppsCustomConnector diagrams.azure.integration.LogicAppsCustomConnector

LogicApps diagrams.azure.integration.LogicApps

+

PartnerNamespace +diagrams.azure.integration.PartnerNamespace

+

PartnerRegistration +diagrams.azure.integration.PartnerRegistration

PartnerTopic diagrams.azure.integration.PartnerTopic

+

PowerPlatform +diagrams.azure.integration.PowerPlatform

+

Relays +diagrams.azure.integration.Relays

SendgridAccounts diagrams.azure.integration.SendgridAccounts

ServiceBusRelays @@ -338,32 +870,202 @@ diagrams.azure.integration.ServiceCatalogManagedApplicationDefinitions

SoftwareAsAService diagrams.azure.integration.SoftwareAsAService

+

SQLDataWarehouses +diagrams.azure.integration.SQLDataWarehouses

StorsimpleDeviceManagers diagrams.azure.integration.StorsimpleDeviceManagers

SystemTopic diagrams.azure.integration.SystemTopic

+

azure.intune

+

AzureADRolesAndAdministrators +diagrams.azure.intune.AzureADRolesAndAdministrators

+

ClientApps +diagrams.azure.intune.ClientApps

+

DeviceCompliance +diagrams.azure.intune.DeviceCompliance

+

DeviceConfiguration +diagrams.azure.intune.DeviceConfiguration

+

DeviceEnrollment +diagrams.azure.intune.DeviceEnrollment

+

DeviceSecurityApple +diagrams.azure.intune.DeviceSecurityApple

+

DeviceSecurityGoogle +diagrams.azure.intune.DeviceSecurityGoogle

+

DeviceSecurityWindows +diagrams.azure.intune.DeviceSecurityWindows

+

Devices +diagrams.azure.intune.Devices

+

Ebooks +diagrams.azure.intune.Ebooks

+

ExchangeAccess +diagrams.azure.intune.ExchangeAccess

+

IntuneAppProtection +diagrams.azure.intune.IntuneAppProtection

+

IntuneForEducation +diagrams.azure.intune.IntuneForEducation

+

Intune +diagrams.azure.intune.Intune

+

Mindaro +diagrams.azure.intune.Mindaro

+

SecurityBaselines +diagrams.azure.intune.SecurityBaselines

+

SoftwareUpdates +diagrams.azure.intune.SoftwareUpdates

+

TenantStatus +diagrams.azure.intune.TenantStatus

azure.iot

+

AzureCosmosDb +diagrams.azure.iot.AzureCosmosDb

+

AzureDataboxGateway +diagrams.azure.iot.AzureDataboxGateway

+

AzureIotOperations +diagrams.azure.iot.AzureIotOperations

+

AzureMapsAccounts +diagrams.azure.iot.AzureMapsAccounts

+

AzureStack +diagrams.azure.iot.AzureStack

DeviceProvisioningServices diagrams.azure.iot.DeviceProvisioningServices

DigitalTwins diagrams.azure.iot.DigitalTwins

+

EventGridSubscriptions +diagrams.azure.iot.EventGridSubscriptions

+

EventHubClusters +diagrams.azure.iot.EventHubClusters

+

EventHubs +diagrams.azure.iot.EventHubs

+

FunctionApps +diagrams.azure.iot.FunctionApps

+

IndustrialIot +diagrams.azure.iot.IndustrialIot

IotCentralApplications diagrams.azure.iot.IotCentralApplications

+

IotEdge +diagrams.azure.iot.IotEdge

IotHubSecurity diagrams.azure.iot.IotHubSecurity

IotHub diagrams.azure.iot.IotHub

+

LogicApps +diagrams.azure.iot.LogicApps

+

MachineLearningStudioClassicWebServices +diagrams.azure.iot.MachineLearningStudioClassicWebServices

+

MachineLearningStudioWebServicePlans +diagrams.azure.iot.MachineLearningStudioWebServicePlans

+

MachineLearningStudioWorkspaces +diagrams.azure.iot.MachineLearningStudioWorkspaces

Maps diagrams.azure.iot.Maps

+

NotificationHubNamespaces +diagrams.azure.iot.NotificationHubNamespaces

+

NotificationHubs +diagrams.azure.iot.NotificationHubs

Sphere diagrams.azure.iot.Sphere

+

StackHciPremium +diagrams.azure.iot.StackHciPremium

+

StreamAnalyticsJobs +diagrams.azure.iot.StreamAnalyticsJobs

+

TimeSeriesDataSets +diagrams.azure.iot.TimeSeriesDataSets

+

TimeSeriesInsightsAccessPolicies +diagrams.azure.iot.TimeSeriesInsightsAccessPolicies

TimeSeriesInsightsEnvironments diagrams.azure.iot.TimeSeriesInsightsEnvironments

+

TimeSeriesInsightsEventSources +diagrams.azure.iot.TimeSeriesInsightsEventSources

TimeSeriesInsightsEventsSources diagrams.azure.iot.TimeSeriesInsightsEventsSources

Windows10IotCoreServices diagrams.azure.iot.Windows10IotCoreServices

+

Windows10CoreServices +diagrams.azure.iot.Windows10CoreServices

+

azure.managementgovernance

+

ActivityLog +diagrams.azure.managementgovernance.ActivityLog

+

Advisor +diagrams.azure.managementgovernance.Advisor

+

Alerts +diagrams.azure.managementgovernance.Alerts

+

ApplicationInsights +diagrams.azure.managementgovernance.ApplicationInsights

+

ArcMachines +diagrams.azure.managementgovernance.ArcMachines

+

AutomationAccounts +diagrams.azure.managementgovernance.AutomationAccounts

+

AzureArc +diagrams.azure.managementgovernance.AzureArc

+

AzureLighthouse +diagrams.azure.managementgovernance.AzureLighthouse

+

Blueprints +diagrams.azure.managementgovernance.Blueprints

+

Compliance +diagrams.azure.managementgovernance.Compliance

+

CostManagementAndBilling +diagrams.azure.managementgovernance.CostManagementAndBilling

+

CustomerLockboxForMicrosoftAzure +diagrams.azure.managementgovernance.CustomerLockboxForMicrosoftAzure

+

DiagnosticsSettings +diagrams.azure.managementgovernance.DiagnosticsSettings

+

Education +diagrams.azure.managementgovernance.Education

+

IntuneTrends +diagrams.azure.managementgovernance.IntuneTrends

+

LogAnalyticsWorkspaces +diagrams.azure.managementgovernance.LogAnalyticsWorkspaces

+

Machinesazurearc +diagrams.azure.managementgovernance.Machinesazurearc

+

ManagedApplicationsCenter +diagrams.azure.managementgovernance.ManagedApplicationsCenter

+

ManagedDesktop +diagrams.azure.managementgovernance.ManagedDesktop

+

Metrics +diagrams.azure.managementgovernance.Metrics

+

Monitor +diagrams.azure.managementgovernance.Monitor

+

MyCustomers +diagrams.azure.managementgovernance.MyCustomers

+

OperationLogClassic +diagrams.azure.managementgovernance.OperationLogClassic

+

Policy +diagrams.azure.managementgovernance.Policy

+

RecoveryServicesVaults +diagrams.azure.managementgovernance.RecoveryServicesVaults

+

ResourceGraphExplorer +diagrams.azure.managementgovernance.ResourceGraphExplorer

+

ResourcesProvider +diagrams.azure.managementgovernance.ResourcesProvider

+

SchedulerJobCollections +diagrams.azure.managementgovernance.SchedulerJobCollections

+

ServiceCatalogMad +diagrams.azure.managementgovernance.ServiceCatalogMad

+

ServiceProviders +diagrams.azure.managementgovernance.ServiceProviders

+

Solutions +diagrams.azure.managementgovernance.Solutions

+

UniversalPrint +diagrams.azure.managementgovernance.UniversalPrint

+

UserPrivacy +diagrams.azure.managementgovernance.UserPrivacy

+

azure.menu

+

Keys +diagrams.azure.menu.Keys

+

azure.migrate

+

AzureDataboxGateway +diagrams.azure.migrate.AzureDataboxGateway

+

AzureMigrate +diagrams.azure.migrate.AzureMigrate

+

AzureStackEdge +diagrams.azure.migrate.AzureStackEdge

+

CostManagementAndBilling +diagrams.azure.migrate.CostManagementAndBilling

+

DataBox +diagrams.azure.migrate.DataBox

+

RecoveryServicesVaults +diagrams.azure.migrate.RecoveryServicesVaults

azure.migration

+

AzureDatabaseMigrationServices +diagrams.azure.migration.AzureDatabaseMigrationServices

DataBoxEdge diagrams.azure.migration.DataBoxEdge

DataBox @@ -374,11 +1076,16 @@ diagrams.azure.migration.MigrationProjects

RecoveryServicesVaults diagrams.azure.migration.RecoveryServicesVaults

+

azure.mixedreality

+

RemoteRendering +diagrams.azure.mixedreality.RemoteRendering

+

SpatialAnchorAccounts +diagrams.azure.mixedreality.SpatialAnchorAccounts

azure.ml

AzureOpenAI diagrams.azure.ml.AzureOpenAI

-

AzureSpeedToText -diagrams.azure.ml.AzureSpeedToText

+

AzureSpeechService +diagrams.azure.ml.AzureSpeechService

BatchAI diagrams.azure.ml.BatchAI

BotServices @@ -398,19 +1105,37 @@

azure.mobile

AppServiceMobile diagrams.azure.mobile.AppServiceMobile

+

AppServices +diagrams.azure.mobile.AppServices

MobileEngagement diagrams.azure.mobile.MobileEngagement

NotificationHubs diagrams.azure.mobile.NotificationHubs

+

PowerPlatform +diagrams.azure.mobile.PowerPlatform

azure.monitor

+

ActivityLog +diagrams.azure.monitor.ActivityLog

+

ApplicationInsights +diagrams.azure.monitor.ApplicationInsights

+

AutoScale +diagrams.azure.monitor.AutoScale

+

AzureMonitorsForSAPSolutions +diagrams.azure.monitor.AzureMonitorsForSAPSolutions

+

AzureWorkbooks +diagrams.azure.monitor.AzureWorkbooks

ChangeAnalysis diagrams.azure.monitor.ChangeAnalysis

-

Logs -diagrams.azure.monitor.Logs

+

DiagnosticsSettings +diagrams.azure.monitor.DiagnosticsSettings

+

LogAnalyticsWorkspaces +diagrams.azure.monitor.LogAnalyticsWorkspaces

Metrics diagrams.azure.monitor.Metrics

Monitor diagrams.azure.monitor.Monitor

+

NetworkWatcher +diagrams.azure.monitor.NetworkWatcher

azure.network

ApplicationGateway diagrams.azure.network.ApplicationGateway

@@ -468,24 +1193,439 @@ diagrams.azure.network.VirtualNetworks

VirtualWans diagrams.azure.network.VirtualWans

+

azure.networking

+

ApplicationGateways +diagrams.azure.networking.ApplicationGateways

+

AtmMultistack +diagrams.azure.networking.AtmMultistack

+

AzureCommunicationsGateway +diagrams.azure.networking.AzureCommunicationsGateway

+

AzureFirewallManager +diagrams.azure.networking.AzureFirewallManager

+

AzureFirewallPolicy +diagrams.azure.networking.AzureFirewallPolicy

+

Bastions +diagrams.azure.networking.Bastions

+

CDNProfiles +diagrams.azure.networking.CDNProfiles

+

ConnectedCache +diagrams.azure.networking.ConnectedCache

+

Connections +diagrams.azure.networking.Connections

+

DDOSProtectionPlans +diagrams.azure.networking.DDOSProtectionPlans

+

DNSMultistack +diagrams.azure.networking.DNSMultistack

+

DNSPrivateResolver +diagrams.azure.networking.DNSPrivateResolver

+

DNSSecurityPolicy +diagrams.azure.networking.DNSSecurityPolicy

+

DNSZones +diagrams.azure.networking.DNSZones

+

ExpressrouteCircuits +diagrams.azure.networking.ExpressrouteCircuits

+

Firewalls +diagrams.azure.networking.Firewalls

+

FrontDoorAndCDNProfiles +diagrams.azure.networking.FrontDoorAndCDNProfiles

+

IpAddressManager +diagrams.azure.networking.IpAddressManager

+

IpGroups +diagrams.azure.networking.IpGroups

+

LoadBalancerHub +diagrams.azure.networking.LoadBalancerHub

+

LoadBalancers +diagrams.azure.networking.LoadBalancers

+

LocalNetworkGateways +diagrams.azure.networking.LocalNetworkGateways

+

Nat +diagrams.azure.networking.Nat

+

NetworkInterfaces +diagrams.azure.networking.NetworkInterfaces

+

NetworkSecurityGroups +diagrams.azure.networking.NetworkSecurityGroups

+

NetworkWatcher +diagrams.azure.networking.NetworkWatcher

+

OnPremisesDataGateways +diagrams.azure.networking.OnPremisesDataGateways

+

PrivateLinkService +diagrams.azure.networking.PrivateLinkService

+

PrivateLinkServices +diagrams.azure.networking.PrivateLinkServices

+

PrivateLink +diagrams.azure.networking.PrivateLink

+

ProximityPlacementGroups +diagrams.azure.networking.ProximityPlacementGroups

+

PublicIpAddressesClassic +diagrams.azure.networking.PublicIpAddressesClassic

+

PublicIpAddresses +diagrams.azure.networking.PublicIpAddresses

+

PublicIpPrefixes +diagrams.azure.networking.PublicIpPrefixes

+

ReservedIpAddressesClassic +diagrams.azure.networking.ReservedIpAddressesClassic

+

ResourceManagementPrivateLink +diagrams.azure.networking.ResourceManagementPrivateLink

+

RouteFilters +diagrams.azure.networking.RouteFilters

+

RouteTables +diagrams.azure.networking.RouteTables

+

ServiceEndpointPolicies +diagrams.azure.networking.ServiceEndpointPolicies

+

SpotVM +diagrams.azure.networking.SpotVM

+

SpotVmss +diagrams.azure.networking.SpotVmss

+

Subnet +diagrams.azure.networking.Subnet

+

TrafficController +diagrams.azure.networking.TrafficController

+

TrafficManagerProfiles +diagrams.azure.networking.TrafficManagerProfiles

+

VirtualNetworkGateways +diagrams.azure.networking.VirtualNetworkGateways

+

VirtualNetworksClassic +diagrams.azure.networking.VirtualNetworksClassic

+

VirtualNetworks +diagrams.azure.networking.VirtualNetworks

+

VirtualRouter +diagrams.azure.networking.VirtualRouter

+

VirtualWanHub +diagrams.azure.networking.VirtualWanHub

+

VirtualWans +diagrams.azure.networking.VirtualWans

+

WebApplicationFirewallPolicieswaf +diagrams.azure.networking.WebApplicationFirewallPolicieswaf

+

azure.newicons

+

AzureSustainability +diagrams.azure.newicons.AzureSustainability

+

ConnectedVehiclePlatform +diagrams.azure.newicons.ConnectedVehiclePlatform

+

EntraConnectHealth +diagrams.azure.newicons.EntraConnectHealth

+

EntraConnectSync +diagrams.azure.newicons.EntraConnectSync

+

IcmTroubleshooting +diagrams.azure.newicons.IcmTroubleshooting

+

Osconfig +diagrams.azure.newicons.Osconfig

+

StorageActions +diagrams.azure.newicons.StorageActions

+

azure.other

+

AadLicenses +diagrams.azure.other.AadLicenses

+

AksIstio +diagrams.azure.other.AksIstio

+

AppComplianceAutomation +diagrams.azure.other.AppComplianceAutomation

+

AppRegistrations +diagrams.azure.other.AppRegistrations

+

Aquila +diagrams.azure.other.Aquila

+

ArcDataServices +diagrams.azure.other.ArcDataServices

+

ArcKubernetes +diagrams.azure.other.ArcKubernetes

+

ArcPostgresql +diagrams.azure.other.ArcPostgresql

+

ArcSQLManagedInstance +diagrams.azure.other.ArcSQLManagedInstance

+

ArcSQLServer +diagrams.azure.other.ArcSQLServer

+

AvsVM +diagrams.azure.other.AvsVM

+

AzureA +diagrams.azure.other.AzureA

+

AzureBackupCenter +diagrams.azure.other.AzureBackupCenter

+

AzureCenterForSAP +diagrams.azure.other.AzureCenterForSAP

+

AzureChaosStudio +diagrams.azure.other.AzureChaosStudio

+

AzureCloudShell +diagrams.azure.other.AzureCloudShell

+

AzureCommunicationServices +diagrams.azure.other.AzureCommunicationServices

+

AzureComputeGalleries +diagrams.azure.other.AzureComputeGalleries

+

AzureDeploymentEnvironments +diagrams.azure.other.AzureDeploymentEnvironments

+

AzureDevTunnels +diagrams.azure.other.AzureDevTunnels

+

AzureEdgeHardwareCenter +diagrams.azure.other.AzureEdgeHardwareCenter

+

AzureHpcWorkbenches +diagrams.azure.other.AzureHpcWorkbenches

+

AzureLoadTesting +diagrams.azure.other.AzureLoadTesting

+

AzureManagedGrafana +diagrams.azure.other.AzureManagedGrafana

+

AzureMonitorDashboard +diagrams.azure.other.AzureMonitorDashboard

+

AzureNetworkFunctionManagerFunctions +diagrams.azure.other.AzureNetworkFunctionManagerFunctions

+

AzureNetworkFunctionManager +diagrams.azure.other.AzureNetworkFunctionManager

+

AzureOrbital +diagrams.azure.other.AzureOrbital

+

AzureQuotas +diagrams.azure.other.AzureQuotas

+

AzureSphere +diagrams.azure.other.AzureSphere

+

AzureStorageMover +diagrams.azure.other.AzureStorageMover

+

AzureSupportCenterBlue +diagrams.azure.other.AzureSupportCenterBlue

+

AzureVideoIndexer +diagrams.azure.other.AzureVideoIndexer

+

AzureVirtualDesktop +diagrams.azure.other.AzureVirtualDesktop

+

AzureVmwareSolution +diagrams.azure.other.AzureVmwareSolution

+

Azureattestation +diagrams.azure.other.Azureattestation

+

Azurite +diagrams.azure.other.Azurite

+

BackupVault +diagrams.azure.other.BackupVault

+

BareMetalInfrastructure +diagrams.azure.other.BareMetalInfrastructure

+

CapacityReservationGroups +diagrams.azure.other.CapacityReservationGroups

+

CentralServiceInstanceForSAP +diagrams.azure.other.CentralServiceInstanceForSAP

+

Ceres +diagrams.azure.other.Ceres

+

CloudServicesExtendedSupport +diagrams.azure.other.CloudServicesExtendedSupport

+

CommunityImages +diagrams.azure.other.CommunityImages

+

ComplianceCenter +diagrams.azure.other.ComplianceCenter

+

ConfidentialLedgers +diagrams.azure.other.ConfidentialLedgers

+

ContainerAppsEnvironments +diagrams.azure.other.ContainerAppsEnvironments

+

CostExport +diagrams.azure.other.CostExport

+

CustomIpPrefix +diagrams.azure.other.CustomIpPrefix

+

DashboardHub +diagrams.azure.other.DashboardHub

+

DataCollectionRules +diagrams.azure.other.DataCollectionRules

+

DatabaseInstanceForSAP +diagrams.azure.other.DatabaseInstanceForSAP

+

DedicatedHsm +diagrams.azure.other.DedicatedHsm

+

DefenderCmLocalManager +diagrams.azure.other.DefenderCmLocalManager

+

DefenderDcsController +diagrams.azure.other.DefenderDcsController

+

DefenderDistributerControlSystem +diagrams.azure.other.DefenderDistributerControlSystem

+

DefenderEngineeringStation +diagrams.azure.other.DefenderEngineeringStation

+

DefenderExternalManagement +diagrams.azure.other.DefenderExternalManagement

+

DefenderFreezerMonitor +diagrams.azure.other.DefenderFreezerMonitor

+

DefenderHistorian +diagrams.azure.other.DefenderHistorian

+

DefenderHmi +diagrams.azure.other.DefenderHmi

+

DefenderIndustrialPackagingSystem +diagrams.azure.other.DefenderIndustrialPackagingSystem

+

DefenderIndustrialPrinter +diagrams.azure.other.DefenderIndustrialPrinter

+

DefenderIndustrialRobot +diagrams.azure.other.DefenderIndustrialRobot

+

DefenderIndustrialScaleSystem +diagrams.azure.other.DefenderIndustrialScaleSystem

+

DefenderMarquee +diagrams.azure.other.DefenderMarquee

+

DefenderMeter +diagrams.azure.other.DefenderMeter

+

DefenderPlc +diagrams.azure.other.DefenderPlc

+

DefenderPneumaticDevice +diagrams.azure.other.DefenderPneumaticDevice

+

DefenderProgramableBoard +diagrams.azure.other.DefenderProgramableBoard

+

DefenderRelay +diagrams.azure.other.DefenderRelay

+

DefenderRobotController +diagrams.azure.other.DefenderRobotController

+

DefenderRtu +diagrams.azure.other.DefenderRtu

+

DefenderSensor +diagrams.azure.other.DefenderSensor

+

DefenderSlot +diagrams.azure.other.DefenderSlot

+

DefenderWebGuidingSystem +diagrams.azure.other.DefenderWebGuidingSystem

+

DeviceUpdateIotHub +diagrams.azure.other.DeviceUpdateIotHub

+

DiskPool +diagrams.azure.other.DiskPool

+

EdgeManagement +diagrams.azure.other.EdgeManagement

+

ElasticSan +diagrams.azure.other.ElasticSan

+

ExchangeOnPremisesAccess +diagrams.azure.other.ExchangeOnPremisesAccess

+

ExpressRouteTrafficCollector +diagrams.azure.other.ExpressRouteTrafficCollector

+

ExpressrouteDirect +diagrams.azure.other.ExpressrouteDirect

+

FhirService +diagrams.azure.other.FhirService

+

Fiji +diagrams.azure.other.Fiji

+

HdiAksCluster +diagrams.azure.other.HdiAksCluster

+

InstancePools +diagrams.azure.other.InstancePools

+

InternetAnalyzerProfiles +diagrams.azure.other.InternetAnalyzerProfiles

+

KubernetesFleetManager +diagrams.azure.other.KubernetesFleetManager

+

LocalNetworkGateways +diagrams.azure.other.LocalNetworkGateways

+

LogAnalyticsQueryPack +diagrams.azure.other.LogAnalyticsQueryPack

+

ManagedInstanceApacheCassandra +diagrams.azure.other.ManagedInstanceApacheCassandra

+

MedtechService +diagrams.azure.other.MedtechService

+

MicrosoftDevBox +diagrams.azure.other.MicrosoftDevBox

+

MissionLandingZone +diagrams.azure.other.MissionLandingZone

+

MobileNetworks +diagrams.azure.other.MobileNetworks

+

ModularDataCenter +diagrams.azure.other.ModularDataCenter

+

NetworkManagers +diagrams.azure.other.NetworkManagers

+

NetworkSecurityPerimeters +diagrams.azure.other.NetworkSecurityPerimeters

+

OpenSupplyChainPlatform +diagrams.azure.other.OpenSupplyChainPlatform

+

PeeringService +diagrams.azure.other.PeeringService

+

Peerings +diagrams.azure.other.Peerings

+

PrivateEndpoints +diagrams.azure.other.PrivateEndpoints

+

ReservedCapacity +diagrams.azure.other.ReservedCapacity

+

ResourceGuard +diagrams.azure.other.ResourceGuard

+

ResourceMover +diagrams.azure.other.ResourceMover

+

Rtos +diagrams.azure.other.Rtos

+

SavingsPlans +diagrams.azure.other.SavingsPlans

+

ScvmmManagementServers +diagrams.azure.other.ScvmmManagementServers

+

SonicDash +diagrams.azure.other.SonicDash

+

SshKeys +diagrams.azure.other.SshKeys

+

StorageFunctions +diagrams.azure.other.StorageFunctions

+

TargetsManagement +diagrams.azure.other.TargetsManagement

+

TemplateSpecs +diagrams.azure.other.TemplateSpecs

+

TestBase +diagrams.azure.other.TestBase

+

UpdateManagementCenter +diagrams.azure.other.UpdateManagementCenter

+

VideoAnalyzers +diagrams.azure.other.VideoAnalyzers

+

VirtualEnclaves +diagrams.azure.other.VirtualEnclaves

+

VirtualInstanceForSAP +diagrams.azure.other.VirtualInstanceForSAP

+

VirtualVisitsBuilder +diagrams.azure.other.VirtualVisitsBuilder

+

VMAppDefinitions +diagrams.azure.other.VMAppDefinitions

+

VMAppVersions +diagrams.azure.other.VMAppVersions

+

VMImageVersion +diagrams.azure.other.VMImageVersion

+

Wac +diagrams.azure.other.Wac

+

WebAppDatabase +diagrams.azure.other.WebAppDatabase

+

WebJobs +diagrams.azure.other.WebJobs

+

WindowsNotificationServices +diagrams.azure.other.WindowsNotificationServices

+

WorkerContainerApp +diagrams.azure.other.WorkerContainerApp

azure.security

ApplicationSecurityGroups diagrams.azure.security.ApplicationSecurityGroups

+

AzureADAuthenticationMethods +diagrams.azure.security.AzureADAuthenticationMethods

+

AzureADIdentityProtection +diagrams.azure.security.AzureADIdentityProtection

+

AzureADPrivlegedIdentityManagement +diagrams.azure.security.AzureADPrivlegedIdentityManagement

+

AzureADRiskySignins +diagrams.azure.security.AzureADRiskySignins

+

AzureADRiskyUsers +diagrams.azure.security.AzureADRiskyUsers

+

AzureInformationProtection +diagrams.azure.security.AzureInformationProtection

+

AzureSentinel +diagrams.azure.security.AzureSentinel

ConditionalAccess diagrams.azure.security.ConditionalAccess

Defender diagrams.azure.security.Defender

+

Detonation +diagrams.azure.security.Detonation

ExtendedSecurityUpdates diagrams.azure.security.ExtendedSecurityUpdates

+

Extendedsecurityupdates +diagrams.azure.security.Extendedsecurityupdates

+

IdentitySecureScore +diagrams.azure.security.IdentitySecureScore

KeyVaults diagrams.azure.security.KeyVaults

+

MicrosoftDefenderEasm +diagrams.azure.security.MicrosoftDefenderEasm

+

MicrosoftDefenderForCloud +diagrams.azure.security.MicrosoftDefenderForCloud

+

MicrosoftDefenderForIot +diagrams.azure.security.MicrosoftDefenderForIot

+

MultifactorAuthentication +diagrams.azure.security.MultifactorAuthentication

SecurityCenter diagrams.azure.security.SecurityCenter

Sentinel diagrams.azure.security.Sentinel

+

UserSettings +diagrams.azure.security.UserSettings

azure.storage

ArchiveStorage diagrams.azure.storage.ArchiveStorage

+

AzureDataboxGateway +diagrams.azure.storage.AzureDataboxGateway

+

AzureFileshares +diagrams.azure.storage.AzureFileshares

+

AzureHcpCache +diagrams.azure.storage.AzureHcpCache

+

AzureNetappFiles +diagrams.azure.storage.AzureNetappFiles

+

AzureStackEdge +diagrams.azure.storage.AzureStackEdge

Azurefxtedgefiler diagrams.azure.storage.Azurefxtedgefiler

BlobStorage @@ -494,14 +1634,24 @@ diagrams.azure.storage.DataBoxEdgeDataBoxGateway

DataBox diagrams.azure.storage.DataBox

+

DataLakeStorageGen1 +diagrams.azure.storage.DataLakeStorageGen1

DataLakeStorage diagrams.azure.storage.DataLakeStorage

+

DataShareInvitations +diagrams.azure.storage.DataShareInvitations

+

DataShares +diagrams.azure.storage.DataShares

GeneralStorage diagrams.azure.storage.GeneralStorage

+

ImportExportJobs +diagrams.azure.storage.ImportExportJobs

NetappFiles diagrams.azure.storage.NetappFiles

QueuesStorage diagrams.azure.storage.QueuesStorage

+

RecoveryServicesVaults +diagrams.azure.storage.RecoveryServicesVaults

StorageAccountsClassic diagrams.azure.storage.StorageAccountsClassic

StorageAccounts @@ -517,8 +1667,12 @@

TableStorage diagrams.azure.storage.TableStorage

azure.web

+

APICenter +diagrams.azure.web.APICenter

APIConnections diagrams.azure.web.APIConnections

+

APIManagementServices +diagrams.azure.web.APIManagementServices

AppServiceCertificates diagrams.azure.web.AppServiceCertificates

AppServiceDomains @@ -529,12 +1683,28 @@ diagrams.azure.web.AppServicePlans

AppServices diagrams.azure.web.AppServices

+

AppSpace +diagrams.azure.web.AppSpace

+

AzureMediaService +diagrams.azure.web.AzureMediaService

+

AzureSpringApps +diagrams.azure.web.AzureSpringApps

+

CognitiveSearch +diagrams.azure.web.CognitiveSearch

+

CognitiveServices +diagrams.azure.web.CognitiveServices

+

FrontDoorAndCDNProfiles +diagrams.azure.web.FrontDoorAndCDNProfiles

MediaServices diagrams.azure.web.MediaServices

NotificationHubNamespaces diagrams.azure.web.NotificationHubNamespaces

+

PowerPlatform +diagrams.azure.web.PowerPlatform

Search diagrams.azure.web.Search

Signalr diagrams.azure.web.Signalr

-
Last updated on 11/19/2024
\ No newline at end of file +

StaticApps +diagrams.azure.web.StaticApps

+
Last updated on 10/25/2025
AWSGCP
\ No newline at end of file diff --git a/docs/nodes/gcp.html b/docs/nodes/gcp.html index 8ebabe36..d88ff2cd 100644 --- a/docs/nodes/gcp.html +++ b/docs/nodes/gcp.html @@ -82,6 +82,8 @@ diagrams.gcp.analytics.Dataproc

Genomics diagrams.gcp.analytics.Genomics

+

Looker +diagrams.gcp.analytics.Looker

Pubsub diagrams.gcp.analytics.Pubsub, PubSub (alias)

gcp.api

@@ -94,6 +96,8 @@

gcp.compute

AppEngine diagrams.gcp.compute.AppEngine, GAE (alias)

+

BinaryAuthorization +diagrams.gcp.compute.BinaryAuthorization

ComputeEngine diagrams.gcp.compute.ComputeEngine, GCE (alias)

ContainerOptimizedOS @@ -106,8 +110,14 @@ diagrams.gcp.compute.GPU

KubernetesEngine diagrams.gcp.compute.KubernetesEngine, GKE (alias)

+

OSConfigurationManagement +diagrams.gcp.compute.OSConfigurationManagement

+

OSInventoryManagement +diagrams.gcp.compute.OSInventoryManagement

+

OSPatchManagement +diagrams.gcp.compute.OSPatchManagement

Run -diagrams.gcp.compute.Run

+diagrams.gcp.compute.Run, CloudRun (alias)

gcp.database

Bigtable diagrams.gcp.database.Bigtable, BigTable (alias)

@@ -124,6 +134,8 @@

gcp.devtools

Build diagrams.gcp.devtools.Build

+

CloudShell +diagrams.gcp.devtools.CloudShell

CodeForIntellij diagrams.gcp.devtools.CodeForIntellij

Code @@ -140,6 +152,8 @@ diagrams.gcp.devtools.Scheduler

SDK diagrams.gcp.devtools.SDK

+

ServiceCatalog +diagrams.gcp.devtools.ServiceCatalog

SourceRepositories diagrams.gcp.devtools.SourceRepositories

Tasks @@ -155,7 +169,18 @@

gcp.iot

IotCore diagrams.gcp.iot.IotCore

+

gcp.management

+

Billing +diagrams.gcp.management.Billing

+

Project +diagrams.gcp.management.Project

+

Quotas +diagrams.gcp.management.Quotas

+

Support +diagrams.gcp.management.Support

gcp.migration

+

MigrateComputeEngine +diagrams.gcp.migration.MigrateComputeEngine, CE (alias)

TransferAppliance diagrams.gcp.migration.TransferAppliance

gcp.ml

@@ -197,6 +222,8 @@ diagrams.gcp.ml.TPU

TranslationAPI diagrams.gcp.ml.TranslationAPI

+

VertexAI +diagrams.gcp.ml.VertexAI

VideoIntelligenceAPI diagrams.gcp.ml.VideoIntelligenceAPI

VisionAPI @@ -206,6 +233,8 @@ diagrams.gcp.network.Armor

CDN diagrams.gcp.network.CDN

+

CloudIDS +diagrams.gcp.network.CloudIDS, IDS (alias)

DedicatedInterconnect diagrams.gcp.network.DedicatedInterconnect

DNS @@ -218,16 +247,30 @@ diagrams.gcp.network.LoadBalancing

NAT diagrams.gcp.network.NAT

+

NetworkConnectivityCenter +diagrams.gcp.network.NetworkConnectivityCenter

+

NetworkIntelligenceCenter +diagrams.gcp.network.NetworkIntelligenceCenter

+

NetworkSecurity +diagrams.gcp.network.NetworkSecurity

+

NetworkTiers +diagrams.gcp.network.NetworkTiers

+

NetworkTopology +diagrams.gcp.network.NetworkTopology

Network diagrams.gcp.network.Network

PartnerInterconnect diagrams.gcp.network.PartnerInterconnect

PremiumNetworkTier diagrams.gcp.network.PremiumNetworkTier

+

PrivateServiceConnect +diagrams.gcp.network.PrivateServiceConnect, PSC (alias)

Router diagrams.gcp.network.Router

Routes diagrams.gcp.network.Routes

+

ServiceMesh +diagrams.gcp.network.ServiceMesh

StandardNetworkTier diagrams.gcp.network.StandardNetworkTier

TrafficDirector @@ -242,6 +285,16 @@

Monitoring diagrams.gcp.operations.Monitoring

gcp.security

+

AccessContextManager +diagrams.gcp.security.AccessContextManager, ACM (alias)

+

AssuredWorkloads +diagrams.gcp.security.AssuredWorkloads

+

CertificateAuthorityService +diagrams.gcp.security.CertificateAuthorityService

+

CertificateManager +diagrams.gcp.security.CertificateManager

+

CloudAssetInventory +diagrams.gcp.security.CloudAssetInventory

Iam diagrams.gcp.security.Iam

IAP @@ -250,15 +303,21 @@ diagrams.gcp.security.KeyManagementService, KMS (alias)

ResourceManager diagrams.gcp.security.ResourceManager

+

SecretManager +diagrams.gcp.security.SecretManager

SecurityCommandCenter diagrams.gcp.security.SecurityCommandCenter, SCC (alias)

+

SecurityHealthAdvisor +diagrams.gcp.security.SecurityHealthAdvisor

SecurityScanner diagrams.gcp.security.SecurityScanner

gcp.storage

Filestore diagrams.gcp.storage.Filestore

+

LocalSSD +diagrams.gcp.storage.LocalSSD, SSD (alias)

PersistentDisk diagrams.gcp.storage.PersistentDisk

Storage diagrams.gcp.storage.Storage, GCS (alias)

-
Last updated on 10/2/2024
AzureIBM
\ No newline at end of file +
Last updated on 9/13/2025
AzureIBM
\ No newline at end of file diff --git a/docs/nodes/gcp/index.html b/docs/nodes/gcp/index.html index 8ebabe36..d88ff2cd 100644 --- a/docs/nodes/gcp/index.html +++ b/docs/nodes/gcp/index.html @@ -82,6 +82,8 @@ diagrams.gcp.analytics.Dataproc

Genomics diagrams.gcp.analytics.Genomics

+

Looker +diagrams.gcp.analytics.Looker

Pubsub diagrams.gcp.analytics.Pubsub, PubSub (alias)

gcp.api

@@ -94,6 +96,8 @@

gcp.compute

AppEngine diagrams.gcp.compute.AppEngine, GAE (alias)

+

BinaryAuthorization +diagrams.gcp.compute.BinaryAuthorization

ComputeEngine diagrams.gcp.compute.ComputeEngine, GCE (alias)

ContainerOptimizedOS @@ -106,8 +110,14 @@ diagrams.gcp.compute.GPU

KubernetesEngine diagrams.gcp.compute.KubernetesEngine, GKE (alias)

+

OSConfigurationManagement +diagrams.gcp.compute.OSConfigurationManagement

+

OSInventoryManagement +diagrams.gcp.compute.OSInventoryManagement

+

OSPatchManagement +diagrams.gcp.compute.OSPatchManagement

Run -diagrams.gcp.compute.Run

+diagrams.gcp.compute.Run, CloudRun (alias)

gcp.database

Bigtable diagrams.gcp.database.Bigtable, BigTable (alias)

@@ -124,6 +134,8 @@

gcp.devtools

Build diagrams.gcp.devtools.Build

+

CloudShell +diagrams.gcp.devtools.CloudShell

CodeForIntellij diagrams.gcp.devtools.CodeForIntellij

Code @@ -140,6 +152,8 @@ diagrams.gcp.devtools.Scheduler

SDK diagrams.gcp.devtools.SDK

+

ServiceCatalog +diagrams.gcp.devtools.ServiceCatalog

SourceRepositories diagrams.gcp.devtools.SourceRepositories

Tasks @@ -155,7 +169,18 @@

gcp.iot

IotCore diagrams.gcp.iot.IotCore

+

gcp.management

+

Billing +diagrams.gcp.management.Billing

+

Project +diagrams.gcp.management.Project

+

Quotas +diagrams.gcp.management.Quotas

+

Support +diagrams.gcp.management.Support

gcp.migration

+

MigrateComputeEngine +diagrams.gcp.migration.MigrateComputeEngine, CE (alias)

TransferAppliance diagrams.gcp.migration.TransferAppliance

gcp.ml

@@ -197,6 +222,8 @@ diagrams.gcp.ml.TPU

TranslationAPI diagrams.gcp.ml.TranslationAPI

+

VertexAI +diagrams.gcp.ml.VertexAI

VideoIntelligenceAPI diagrams.gcp.ml.VideoIntelligenceAPI

VisionAPI @@ -206,6 +233,8 @@ diagrams.gcp.network.Armor

CDN diagrams.gcp.network.CDN

+

CloudIDS +diagrams.gcp.network.CloudIDS, IDS (alias)

DedicatedInterconnect diagrams.gcp.network.DedicatedInterconnect

DNS @@ -218,16 +247,30 @@ diagrams.gcp.network.LoadBalancing

NAT diagrams.gcp.network.NAT

+

NetworkConnectivityCenter +diagrams.gcp.network.NetworkConnectivityCenter

+

NetworkIntelligenceCenter +diagrams.gcp.network.NetworkIntelligenceCenter

+

NetworkSecurity +diagrams.gcp.network.NetworkSecurity

+

NetworkTiers +diagrams.gcp.network.NetworkTiers

+

NetworkTopology +diagrams.gcp.network.NetworkTopology

Network diagrams.gcp.network.Network

PartnerInterconnect diagrams.gcp.network.PartnerInterconnect

PremiumNetworkTier diagrams.gcp.network.PremiumNetworkTier

+

PrivateServiceConnect +diagrams.gcp.network.PrivateServiceConnect, PSC (alias)

Router diagrams.gcp.network.Router

Routes diagrams.gcp.network.Routes

+

ServiceMesh +diagrams.gcp.network.ServiceMesh

StandardNetworkTier diagrams.gcp.network.StandardNetworkTier

TrafficDirector @@ -242,6 +285,16 @@

Monitoring diagrams.gcp.operations.Monitoring

gcp.security

+

AccessContextManager +diagrams.gcp.security.AccessContextManager, ACM (alias)

+

AssuredWorkloads +diagrams.gcp.security.AssuredWorkloads

+

CertificateAuthorityService +diagrams.gcp.security.CertificateAuthorityService

+

CertificateManager +diagrams.gcp.security.CertificateManager

+

CloudAssetInventory +diagrams.gcp.security.CloudAssetInventory

Iam diagrams.gcp.security.Iam

IAP @@ -250,15 +303,21 @@ diagrams.gcp.security.KeyManagementService, KMS (alias)

ResourceManager diagrams.gcp.security.ResourceManager

+

SecretManager +diagrams.gcp.security.SecretManager

SecurityCommandCenter diagrams.gcp.security.SecurityCommandCenter, SCC (alias)

+

SecurityHealthAdvisor +diagrams.gcp.security.SecurityHealthAdvisor

SecurityScanner diagrams.gcp.security.SecurityScanner

gcp.storage

Filestore diagrams.gcp.storage.Filestore

+

LocalSSD +diagrams.gcp.storage.LocalSSD, SSD (alias)

PersistentDisk diagrams.gcp.storage.PersistentDisk

Storage diagrams.gcp.storage.Storage, GCS (alias)

-
Last updated on 10/2/2024
AzureIBM
\ No newline at end of file +
Last updated on 9/13/2025
AzureIBM
\ No newline at end of file diff --git a/docs/nodes/gis.html b/docs/nodes/gis.html index 716e2b8d..8447a4ab 100644 --- a/docs/nodes/gis.html +++ b/docs/nodes/gis.html @@ -85,6 +85,8 @@ diagrams.gis.data.IGN

Openstreetmap diagrams.gis.data.Openstreetmap

+

Overturemaps +diagrams.gis.data.Overturemaps

gis.database

Postgis diagrams.gis.database.Postgis

@@ -204,4 +206,4 @@ diagrams.gis.server.QGISServer

Zooproject diagrams.gis.server.Zooproject

-
Last updated on 2/11/2025
Custom
\ No newline at end of file +
Last updated on 5/6/2025
Custom
\ No newline at end of file diff --git a/docs/nodes/gis/index.html b/docs/nodes/gis/index.html index 716e2b8d..8447a4ab 100644 --- a/docs/nodes/gis/index.html +++ b/docs/nodes/gis/index.html @@ -85,6 +85,8 @@ diagrams.gis.data.IGN

Openstreetmap diagrams.gis.data.Openstreetmap

+

Overturemaps +diagrams.gis.data.Overturemaps

gis.database

Postgis diagrams.gis.database.Postgis

@@ -204,4 +206,4 @@ diagrams.gis.server.QGISServer

Zooproject diagrams.gis.server.Zooproject

-
Last updated on 2/11/2025
Custom
\ No newline at end of file +
Last updated on 5/6/2025
Custom
\ No newline at end of file diff --git a/docs/nodes/onprem.html b/docs/nodes/onprem.html index 3bc3645e..c09f8200 100644 --- a/docs/nodes/onprem.html +++ b/docs/nodes/onprem.html @@ -185,6 +185,8 @@ diagrams.onprem.database.Dgraph

Druid diagrams.onprem.database.Druid

+

Duckdb +diagrams.onprem.database.Duckdb

Hbase diagrams.onprem.database.Hbase, HBase (alias)

Influxdb @@ -205,6 +207,8 @@ diagrams.onprem.database.Oracle

Postgresql diagrams.onprem.database.Postgresql, PostgreSQL (alias)

+

Qdrant +diagrams.onprem.database.Qdrant, Qdrant (alias)

Scylla diagrams.onprem.database.Scylla

onprem.dns

@@ -307,6 +311,12 @@ diagrams.onprem.network.Bind9

Caddy diagrams.onprem.network.Caddy

+

CiscoRouter +diagrams.onprem.network.CiscoRouter

+

CiscoSwitchL2 +diagrams.onprem.network.CiscoSwitchL2

+

CiscoSwitchL3 +diagrams.onprem.network.CiscoSwitchL3

Consul diagrams.onprem.network.Consul

Envoy @@ -428,4 +438,4 @@ diagrams.onprem.workflow.Kubeflow, KubeFlow (alias)

Nifi diagrams.onprem.workflow.Nifi, NiFi (alias)

-
Last updated on 2/11/2025
EdgesAWS
\ No newline at end of file +
Last updated on 7/22/2025
EdgesAWS
\ No newline at end of file diff --git a/docs/nodes/onprem/index.html b/docs/nodes/onprem/index.html index 3bc3645e..c09f8200 100644 --- a/docs/nodes/onprem/index.html +++ b/docs/nodes/onprem/index.html @@ -185,6 +185,8 @@ diagrams.onprem.database.Dgraph

Druid diagrams.onprem.database.Druid

+

Duckdb +diagrams.onprem.database.Duckdb

Hbase diagrams.onprem.database.Hbase, HBase (alias)

Influxdb @@ -205,6 +207,8 @@ diagrams.onprem.database.Oracle

Postgresql diagrams.onprem.database.Postgresql, PostgreSQL (alias)

+

Qdrant +diagrams.onprem.database.Qdrant, Qdrant (alias)

Scylla diagrams.onprem.database.Scylla

onprem.dns

@@ -307,6 +311,12 @@ diagrams.onprem.network.Bind9

Caddy diagrams.onprem.network.Caddy

+

CiscoRouter +diagrams.onprem.network.CiscoRouter

+

CiscoSwitchL2 +diagrams.onprem.network.CiscoSwitchL2

+

CiscoSwitchL3 +diagrams.onprem.network.CiscoSwitchL3

Consul diagrams.onprem.network.Consul

Envoy @@ -428,4 +438,4 @@ diagrams.onprem.workflow.Kubeflow, KubeFlow (alias)

Nifi diagrams.onprem.workflow.Nifi, NiFi (alias)

-
Last updated on 2/11/2025
EdgesAWS
\ No newline at end of file +
Last updated on 7/22/2025
EdgesAWS
\ No newline at end of file diff --git a/docs/nodes/saas.html b/docs/nodes/saas.html index 5c252b8e..725a6416 100644 --- a/docs/nodes/saas.html +++ b/docs/nodes/saas.html @@ -91,6 +91,8 @@ diagrams.saas.cdn.Cloudflare

Fastly diagrams.saas.cdn.Fastly

+

Imperva +diagrams.saas.cdn.Imperva

saas.chat

Discord diagrams.saas.chat.Discord

@@ -134,6 +136,15 @@

saas.media

Cloudinary diagrams.saas.media.Cloudinary

+

saas.payment

+

Adyen +diagrams.saas.payment.Adyen

+

AmazonPay +diagrams.saas.payment.AmazonPay

+

Paypal +diagrams.saas.payment.Paypal

+

Stripe +diagrams.saas.payment.Stripe

saas.recommendation

Recombee diagrams.saas.recommendation.Recombee

@@ -147,4 +158,4 @@ diagrams.saas.social.Facebook

Twitter diagrams.saas.social.Twitter

-
Last updated on 2/20/2025
ProgrammingC4
\ No newline at end of file +
Last updated on 8/28/2025
ProgrammingC4
\ No newline at end of file diff --git a/docs/nodes/saas/index.html b/docs/nodes/saas/index.html index 5c252b8e..725a6416 100644 --- a/docs/nodes/saas/index.html +++ b/docs/nodes/saas/index.html @@ -91,6 +91,8 @@ diagrams.saas.cdn.Cloudflare

Fastly diagrams.saas.cdn.Fastly

+

Imperva +diagrams.saas.cdn.Imperva

saas.chat

Discord diagrams.saas.chat.Discord

@@ -134,6 +136,15 @@

saas.media

Cloudinary diagrams.saas.media.Cloudinary

+

saas.payment

+

Adyen +diagrams.saas.payment.Adyen

+

AmazonPay +diagrams.saas.payment.AmazonPay

+

Paypal +diagrams.saas.payment.Paypal

+

Stripe +diagrams.saas.payment.Stripe

saas.recommendation

Recombee diagrams.saas.recommendation.Recombee

@@ -147,4 +158,4 @@ diagrams.saas.social.Facebook

Twitter diagrams.saas.social.Twitter

-
Last updated on 2/20/2025
ProgrammingC4
\ No newline at end of file +
Last updated on 8/28/2025
ProgrammingC4
\ No newline at end of file diff --git a/img/advanced_web_service_with_on-premise_less_edges.png b/img/advanced_web_service_with_on-premise_less_edges.png new file mode 100644 index 00000000..e532db9a Binary files /dev/null and b/img/advanced_web_service_with_on-premise_less_edges.png differ diff --git a/img/advanced_web_service_with_on-premise_merged_edges.png b/img/advanced_web_service_with_on-premise_merged_edges.png new file mode 100644 index 00000000..bc1ab3ae Binary files /dev/null and b/img/advanced_web_service_with_on-premise_merged_edges.png differ diff --git a/img/resources/aws/compute/elastic-container-service-service-connect.png b/img/resources/aws/compute/elastic-container-service-service-connect.png new file mode 100644 index 00000000..1865ff66 Binary files /dev/null and b/img/resources/aws/compute/elastic-container-service-service-connect.png differ diff --git a/img/resources/aws/compute/elastic-container-service-task.png b/img/resources/aws/compute/elastic-container-service-task.png new file mode 100644 index 00000000..bca17aab Binary files /dev/null and b/img/resources/aws/compute/elastic-container-service-task.png differ diff --git a/img/resources/aws/devtools/cloudshell.png b/img/resources/aws/devtools/cloudshell.png new file mode 100644 index 00000000..fc186ea3 Binary files /dev/null and b/img/resources/aws/devtools/cloudshell.png differ diff --git a/img/resources/aws/integration/eventbridge-default-event-bus-resource.png b/img/resources/aws/integration/eventbridge-default-event-bus-resource.png index e426f409..bfa790d3 100644 Binary files a/img/resources/aws/integration/eventbridge-default-event-bus-resource.png and b/img/resources/aws/integration/eventbridge-default-event-bus-resource.png differ diff --git a/img/resources/aws/integration/eventbridge-event.png b/img/resources/aws/integration/eventbridge-event.png new file mode 100644 index 00000000..854a022f Binary files /dev/null and b/img/resources/aws/integration/eventbridge-event.png differ diff --git a/img/resources/aws/integration/eventbridge-pipes.png b/img/resources/aws/integration/eventbridge-pipes.png new file mode 100644 index 00000000..7ad0fe4c Binary files /dev/null and b/img/resources/aws/integration/eventbridge-pipes.png differ diff --git a/img/resources/aws/integration/eventbridge-rule.png b/img/resources/aws/integration/eventbridge-rule.png new file mode 100644 index 00000000..86f870ae Binary files /dev/null and b/img/resources/aws/integration/eventbridge-rule.png differ diff --git a/img/resources/aws/integration/eventbridge-scheduler.png b/img/resources/aws/integration/eventbridge-scheduler.png new file mode 100644 index 00000000..57e95f79 Binary files /dev/null and b/img/resources/aws/integration/eventbridge-scheduler.png differ diff --git a/img/resources/aws/integration/eventbridge-schema.png b/img/resources/aws/integration/eventbridge-schema.png new file mode 100644 index 00000000..c4e9dae7 Binary files /dev/null and b/img/resources/aws/integration/eventbridge-schema.png differ diff --git a/img/resources/aws/management/user-notifications.png b/img/resources/aws/management/user-notifications.png new file mode 100644 index 00000000..bd6924cc Binary files /dev/null and b/img/resources/aws/management/user-notifications.png differ diff --git a/img/resources/aws/ml/q.png b/img/resources/aws/ml/q.png new file mode 100644 index 00000000..fe610d3c Binary files /dev/null and b/img/resources/aws/ml/q.png differ diff --git a/img/resources/aws/ml/transform.png b/img/resources/aws/ml/transform.png new file mode 100644 index 00000000..8f74cdeb Binary files /dev/null and b/img/resources/aws/ml/transform.png differ diff --git a/img/resources/aws/security/security-lake.png b/img/resources/aws/security/security-lake.png new file mode 100644 index 00000000..97859d8d Binary files /dev/null and b/img/resources/aws/security/security-lake.png differ diff --git a/img/resources/azure/aimachinelearning/ai-studio.png b/img/resources/azure/aimachinelearning/ai-studio.png new file mode 100644 index 00000000..7e7285f9 Binary files /dev/null and b/img/resources/azure/aimachinelearning/ai-studio.png differ diff --git a/img/resources/azure/aimachinelearning/anomaly-detector.png b/img/resources/azure/aimachinelearning/anomaly-detector.png new file mode 100644 index 00000000..a0ab21d6 Binary files /dev/null and b/img/resources/azure/aimachinelearning/anomaly-detector.png differ diff --git a/img/resources/azure/aimachinelearning/azure-applied-ai-services.png b/img/resources/azure/aimachinelearning/azure-applied-ai-services.png new file mode 100644 index 00000000..78b47dd4 Binary files /dev/null and b/img/resources/azure/aimachinelearning/azure-applied-ai-services.png differ diff --git a/img/resources/azure/aimachinelearning/azure-experimentation-studio.png b/img/resources/azure/aimachinelearning/azure-experimentation-studio.png new file mode 100644 index 00000000..aea8e2b0 Binary files /dev/null and b/img/resources/azure/aimachinelearning/azure-experimentation-studio.png differ diff --git a/img/resources/azure/aimachinelearning/azure-object-understanding.png b/img/resources/azure/aimachinelearning/azure-object-understanding.png new file mode 100644 index 00000000..e6b38b5c Binary files /dev/null and b/img/resources/azure/aimachinelearning/azure-object-understanding.png differ diff --git a/img/resources/azure/aimachinelearning/azure-openai.png b/img/resources/azure/aimachinelearning/azure-openai.png new file mode 100644 index 00000000..e3cc5ecc Binary files /dev/null and b/img/resources/azure/aimachinelearning/azure-openai.png differ diff --git a/img/resources/azure/aimachinelearning/batch-ai.png b/img/resources/azure/aimachinelearning/batch-ai.png new file mode 100644 index 00000000..e2701928 Binary files /dev/null and b/img/resources/azure/aimachinelearning/batch-ai.png differ diff --git a/img/resources/azure/aimachinelearning/bonsai.png b/img/resources/azure/aimachinelearning/bonsai.png new file mode 100644 index 00000000..382206f6 Binary files /dev/null and b/img/resources/azure/aimachinelearning/bonsai.png differ diff --git a/img/resources/azure/aimachinelearning/bot-services.png b/img/resources/azure/aimachinelearning/bot-services.png new file mode 100644 index 00000000..02392fbc Binary files /dev/null and b/img/resources/azure/aimachinelearning/bot-services.png differ diff --git a/img/resources/azure/aimachinelearning/cognitive-search.png b/img/resources/azure/aimachinelearning/cognitive-search.png new file mode 100644 index 00000000..ff628a69 Binary files /dev/null and b/img/resources/azure/aimachinelearning/cognitive-search.png differ diff --git a/img/resources/azure/aimachinelearning/cognitive-services-decisions.png b/img/resources/azure/aimachinelearning/cognitive-services-decisions.png new file mode 100644 index 00000000..a1b3b746 Binary files /dev/null and b/img/resources/azure/aimachinelearning/cognitive-services-decisions.png differ diff --git a/img/resources/azure/aimachinelearning/cognitive-services.png b/img/resources/azure/aimachinelearning/cognitive-services.png new file mode 100644 index 00000000..73f89107 Binary files /dev/null and b/img/resources/azure/aimachinelearning/cognitive-services.png differ diff --git a/img/resources/azure/aimachinelearning/computer-vision.png b/img/resources/azure/aimachinelearning/computer-vision.png new file mode 100644 index 00000000..4d239ca5 Binary files /dev/null and b/img/resources/azure/aimachinelearning/computer-vision.png differ diff --git a/img/resources/azure/aimachinelearning/content-moderators.png b/img/resources/azure/aimachinelearning/content-moderators.png new file mode 100644 index 00000000..3b005bc0 Binary files /dev/null and b/img/resources/azure/aimachinelearning/content-moderators.png differ diff --git a/img/resources/azure/aimachinelearning/custom-vision.png b/img/resources/azure/aimachinelearning/custom-vision.png new file mode 100644 index 00000000..a16de67b Binary files /dev/null and b/img/resources/azure/aimachinelearning/custom-vision.png differ diff --git a/img/resources/azure/aimachinelearning/face-apis.png b/img/resources/azure/aimachinelearning/face-apis.png new file mode 100644 index 00000000..4d785e60 Binary files /dev/null and b/img/resources/azure/aimachinelearning/face-apis.png differ diff --git a/img/resources/azure/aimachinelearning/form-recognizers.png b/img/resources/azure/aimachinelearning/form-recognizers.png new file mode 100644 index 00000000..39792b12 Binary files /dev/null and b/img/resources/azure/aimachinelearning/form-recognizers.png differ diff --git a/img/resources/azure/aimachinelearning/genomics-accounts.png b/img/resources/azure/aimachinelearning/genomics-accounts.png new file mode 100644 index 00000000..419071ed Binary files /dev/null and b/img/resources/azure/aimachinelearning/genomics-accounts.png differ diff --git a/img/resources/azure/aimachinelearning/genomics.png b/img/resources/azure/aimachinelearning/genomics.png new file mode 100644 index 00000000..419071ed Binary files /dev/null and b/img/resources/azure/aimachinelearning/genomics.png differ diff --git a/img/resources/azure/aimachinelearning/immersive-readers.png b/img/resources/azure/aimachinelearning/immersive-readers.png new file mode 100644 index 00000000..7c2cf366 Binary files /dev/null and b/img/resources/azure/aimachinelearning/immersive-readers.png differ diff --git a/img/resources/azure/aimachinelearning/language-understanding.png b/img/resources/azure/aimachinelearning/language-understanding.png new file mode 100644 index 00000000..dc6c5c13 Binary files /dev/null and b/img/resources/azure/aimachinelearning/language-understanding.png differ diff --git a/img/resources/azure/aimachinelearning/language.png b/img/resources/azure/aimachinelearning/language.png new file mode 100644 index 00000000..2e178e86 Binary files /dev/null and b/img/resources/azure/aimachinelearning/language.png differ diff --git a/img/resources/azure/aimachinelearning/machine-learning-studio-classic-web-services.png b/img/resources/azure/aimachinelearning/machine-learning-studio-classic-web-services.png new file mode 100644 index 00000000..69a8360a Binary files /dev/null and b/img/resources/azure/aimachinelearning/machine-learning-studio-classic-web-services.png differ diff --git a/img/resources/azure/aimachinelearning/machine-learning-studio-web-service-plans.png b/img/resources/azure/aimachinelearning/machine-learning-studio-web-service-plans.png new file mode 100644 index 00000000..096877c6 Binary files /dev/null and b/img/resources/azure/aimachinelearning/machine-learning-studio-web-service-plans.png differ diff --git a/img/resources/azure/aimachinelearning/machine-learning-studio-workspaces.png b/img/resources/azure/aimachinelearning/machine-learning-studio-workspaces.png new file mode 100644 index 00000000..7a466328 Binary files /dev/null and b/img/resources/azure/aimachinelearning/machine-learning-studio-workspaces.png differ diff --git a/img/resources/azure/aimachinelearning/machine-learning.png b/img/resources/azure/aimachinelearning/machine-learning.png new file mode 100644 index 00000000..5b53e91e Binary files /dev/null and b/img/resources/azure/aimachinelearning/machine-learning.png differ diff --git a/img/resources/azure/aimachinelearning/metrics-advisor.png b/img/resources/azure/aimachinelearning/metrics-advisor.png new file mode 100644 index 00000000..644bc3c3 Binary files /dev/null and b/img/resources/azure/aimachinelearning/metrics-advisor.png differ diff --git a/img/resources/azure/aimachinelearning/personalizers.png b/img/resources/azure/aimachinelearning/personalizers.png new file mode 100644 index 00000000..e38cf3ed Binary files /dev/null and b/img/resources/azure/aimachinelearning/personalizers.png differ diff --git a/img/resources/azure/aimachinelearning/qna-makers.png b/img/resources/azure/aimachinelearning/qna-makers.png new file mode 100644 index 00000000..0eec25f5 Binary files /dev/null and b/img/resources/azure/aimachinelearning/qna-makers.png differ diff --git a/img/resources/azure/aimachinelearning/serverless-search.png b/img/resources/azure/aimachinelearning/serverless-search.png new file mode 100644 index 00000000..4fd0a009 Binary files /dev/null and b/img/resources/azure/aimachinelearning/serverless-search.png differ diff --git a/img/resources/azure/aimachinelearning/speech-services.png b/img/resources/azure/aimachinelearning/speech-services.png new file mode 100644 index 00000000..0ca64637 Binary files /dev/null and b/img/resources/azure/aimachinelearning/speech-services.png differ diff --git a/img/resources/azure/aimachinelearning/translator-text.png b/img/resources/azure/aimachinelearning/translator-text.png new file mode 100644 index 00000000..81752d1c Binary files /dev/null and b/img/resources/azure/aimachinelearning/translator-text.png differ diff --git a/img/resources/azure/analytics/analysis-services.png b/img/resources/azure/analytics/analysis-services.png index f611a0de..04327271 100644 Binary files a/img/resources/azure/analytics/analysis-services.png and b/img/resources/azure/analytics/analysis-services.png differ diff --git a/img/resources/azure/analytics/azure-data-explorer-clusters.png b/img/resources/azure/analytics/azure-data-explorer-clusters.png new file mode 100644 index 00000000..406ebe0a Binary files /dev/null and b/img/resources/azure/analytics/azure-data-explorer-clusters.png differ diff --git a/img/resources/azure/analytics/azure-databricks.png b/img/resources/azure/analytics/azure-databricks.png new file mode 100644 index 00000000..322b5f0a Binary files /dev/null and b/img/resources/azure/analytics/azure-databricks.png differ diff --git a/img/resources/azure/analytics/azure-synapse-analytics.png b/img/resources/azure/analytics/azure-synapse-analytics.png new file mode 100644 index 00000000..694c6bb5 Binary files /dev/null and b/img/resources/azure/analytics/azure-synapse-analytics.png differ diff --git a/img/resources/azure/analytics/azure-workbooks.png b/img/resources/azure/analytics/azure-workbooks.png new file mode 100644 index 00000000..bf747377 Binary files /dev/null and b/img/resources/azure/analytics/azure-workbooks.png differ diff --git a/img/resources/azure/analytics/data-factories.png b/img/resources/azure/analytics/data-factories.png index 9305f4ca..d3e5f045 100644 Binary files a/img/resources/azure/analytics/data-factories.png and b/img/resources/azure/analytics/data-factories.png differ diff --git a/img/resources/azure/analytics/data-lake-analytics.png b/img/resources/azure/analytics/data-lake-analytics.png index ce782a90..3282b333 100644 Binary files a/img/resources/azure/analytics/data-lake-analytics.png and b/img/resources/azure/analytics/data-lake-analytics.png differ diff --git a/img/resources/azure/analytics/data-lake-store-gen1.png b/img/resources/azure/analytics/data-lake-store-gen1.png index d2606ec0..e74ba86e 100644 Binary files a/img/resources/azure/analytics/data-lake-store-gen1.png and b/img/resources/azure/analytics/data-lake-store-gen1.png differ diff --git a/img/resources/azure/analytics/endpoint-analytics.png b/img/resources/azure/analytics/endpoint-analytics.png new file mode 100644 index 00000000..cbb7fa06 Binary files /dev/null and b/img/resources/azure/analytics/endpoint-analytics.png differ diff --git a/img/resources/azure/analytics/event-hub-clusters.png b/img/resources/azure/analytics/event-hub-clusters.png index f33b93c1..af6e2a61 100644 Binary files a/img/resources/azure/analytics/event-hub-clusters.png and b/img/resources/azure/analytics/event-hub-clusters.png differ diff --git a/img/resources/azure/analytics/event-hubs.png b/img/resources/azure/analytics/event-hubs.png index 67f85a5f..498349e7 100644 Binary files a/img/resources/azure/analytics/event-hubs.png and b/img/resources/azure/analytics/event-hubs.png differ diff --git a/img/resources/azure/analytics/hd-insight-clusters.png b/img/resources/azure/analytics/hd-insight-clusters.png new file mode 100644 index 00000000..535d939f Binary files /dev/null and b/img/resources/azure/analytics/hd-insight-clusters.png differ diff --git a/img/resources/azure/analytics/log-analytics-workspaces.png b/img/resources/azure/analytics/log-analytics-workspaces.png index d3d08149..85d72ddd 100644 Binary files a/img/resources/azure/analytics/log-analytics-workspaces.png and b/img/resources/azure/analytics/log-analytics-workspaces.png differ diff --git a/img/resources/azure/analytics/power-bi-embedded.png b/img/resources/azure/analytics/power-bi-embedded.png new file mode 100644 index 00000000..b68cbd77 Binary files /dev/null and b/img/resources/azure/analytics/power-bi-embedded.png differ diff --git a/img/resources/azure/analytics/power-platform.png b/img/resources/azure/analytics/power-platform.png new file mode 100644 index 00000000..d5278841 Binary files /dev/null and b/img/resources/azure/analytics/power-platform.png differ diff --git a/img/resources/azure/analytics/private-link-services.png b/img/resources/azure/analytics/private-link-services.png new file mode 100644 index 00000000..965131f3 Binary files /dev/null and b/img/resources/azure/analytics/private-link-services.png differ diff --git a/img/resources/azure/analytics/stream-analytics-jobs.png b/img/resources/azure/analytics/stream-analytics-jobs.png index 36ea713e..9d6da114 100644 Binary files a/img/resources/azure/analytics/stream-analytics-jobs.png and b/img/resources/azure/analytics/stream-analytics-jobs.png differ diff --git a/img/resources/azure/appservices/app-service-certificates.png b/img/resources/azure/appservices/app-service-certificates.png new file mode 100644 index 00000000..bc6406bf Binary files /dev/null and b/img/resources/azure/appservices/app-service-certificates.png differ diff --git a/img/resources/azure/appservices/app-service-domains.png b/img/resources/azure/appservices/app-service-domains.png new file mode 100644 index 00000000..4b5af9a8 Binary files /dev/null and b/img/resources/azure/appservices/app-service-domains.png differ diff --git a/img/resources/azure/appservices/app-service-environments.png b/img/resources/azure/appservices/app-service-environments.png new file mode 100644 index 00000000..f651b780 Binary files /dev/null and b/img/resources/azure/appservices/app-service-environments.png differ diff --git a/img/resources/azure/appservices/app-service-plans.png b/img/resources/azure/appservices/app-service-plans.png new file mode 100644 index 00000000..fa4f7cf9 Binary files /dev/null and b/img/resources/azure/appservices/app-service-plans.png differ diff --git a/img/resources/azure/appservices/app-services.png b/img/resources/azure/appservices/app-services.png new file mode 100644 index 00000000..5fe6dcb8 Binary files /dev/null and b/img/resources/azure/appservices/app-services.png differ diff --git a/img/resources/azure/appservices/cdn-profiles.png b/img/resources/azure/appservices/cdn-profiles.png new file mode 100644 index 00000000..5789e38f Binary files /dev/null and b/img/resources/azure/appservices/cdn-profiles.png differ diff --git a/img/resources/azure/appservices/cognitive-search.png b/img/resources/azure/appservices/cognitive-search.png new file mode 100644 index 00000000..ff628a69 Binary files /dev/null and b/img/resources/azure/appservices/cognitive-search.png differ diff --git a/img/resources/azure/appservices/notification-hubs.png b/img/resources/azure/appservices/notification-hubs.png new file mode 100644 index 00000000..9aaa0ba0 Binary files /dev/null and b/img/resources/azure/appservices/notification-hubs.png differ diff --git a/img/resources/azure/azureecosystem/applens.png b/img/resources/azure/azureecosystem/applens.png new file mode 100644 index 00000000..e3bc1eae Binary files /dev/null and b/img/resources/azure/azureecosystem/applens.png differ diff --git a/img/resources/azure/azureecosystem/azure-hybrid-center.png b/img/resources/azure/azureecosystem/azure-hybrid-center.png new file mode 100644 index 00000000..f3075dd3 Binary files /dev/null and b/img/resources/azure/azureecosystem/azure-hybrid-center.png differ diff --git a/img/resources/azure/azureecosystem/collaborative-service.png b/img/resources/azure/azureecosystem/collaborative-service.png new file mode 100644 index 00000000..5716e735 Binary files /dev/null and b/img/resources/azure/azureecosystem/collaborative-service.png differ diff --git a/img/resources/azure/azurestack/capacity.png b/img/resources/azure/azurestack/capacity.png new file mode 100644 index 00000000..7c1f56ef Binary files /dev/null and b/img/resources/azure/azurestack/capacity.png differ diff --git a/img/resources/azure/azurestack/infrastructure-backup.png b/img/resources/azure/azurestack/infrastructure-backup.png new file mode 100644 index 00000000..cc1a3f88 Binary files /dev/null and b/img/resources/azure/azurestack/infrastructure-backup.png differ diff --git a/img/resources/azure/azurestack/multi-tenancy.png b/img/resources/azure/azurestack/multi-tenancy.png new file mode 100644 index 00000000..83b2b46f Binary files /dev/null and b/img/resources/azure/azurestack/multi-tenancy.png differ diff --git a/img/resources/azure/azurestack/offers.png b/img/resources/azure/azurestack/offers.png new file mode 100644 index 00000000..a42f3b49 Binary files /dev/null and b/img/resources/azure/azurestack/offers.png differ diff --git a/img/resources/azure/azurestack/plans.png b/img/resources/azure/azurestack/plans.png new file mode 100644 index 00000000..13c26f58 Binary files /dev/null and b/img/resources/azure/azurestack/plans.png differ diff --git a/img/resources/azure/azurestack/updates.png b/img/resources/azure/azurestack/updates.png new file mode 100644 index 00000000..116ca818 Binary files /dev/null and b/img/resources/azure/azurestack/updates.png differ diff --git a/img/resources/azure/azurestack/user-subscriptions.png b/img/resources/azure/azurestack/user-subscriptions.png new file mode 100644 index 00000000..82ff666f Binary files /dev/null and b/img/resources/azure/azurestack/user-subscriptions.png differ diff --git a/img/resources/azure/blockchain/abs-member.png b/img/resources/azure/blockchain/abs-member.png new file mode 100644 index 00000000..ea7ee345 Binary files /dev/null and b/img/resources/azure/blockchain/abs-member.png differ diff --git a/img/resources/azure/blockchain/azure-blockchain-service.png b/img/resources/azure/blockchain/azure-blockchain-service.png new file mode 100644 index 00000000..98f6404d Binary files /dev/null and b/img/resources/azure/blockchain/azure-blockchain-service.png differ diff --git a/img/resources/azure/blockchain/azure-token-service.png b/img/resources/azure/blockchain/azure-token-service.png new file mode 100644 index 00000000..14c04322 Binary files /dev/null and b/img/resources/azure/blockchain/azure-token-service.png differ diff --git a/img/resources/azure/blockchain/blockchain-applications.png b/img/resources/azure/blockchain/blockchain-applications.png new file mode 100644 index 00000000..63bf410a Binary files /dev/null and b/img/resources/azure/blockchain/blockchain-applications.png differ diff --git a/img/resources/azure/blockchain/consortium.png b/img/resources/azure/blockchain/consortium.png new file mode 100644 index 00000000..c7a67d79 Binary files /dev/null and b/img/resources/azure/blockchain/consortium.png differ diff --git a/img/resources/azure/blockchain/outbound-connection.png b/img/resources/azure/blockchain/outbound-connection.png new file mode 100644 index 00000000..dd718632 Binary files /dev/null and b/img/resources/azure/blockchain/outbound-connection.png differ diff --git a/img/resources/azure/compute/app-services.png b/img/resources/azure/compute/app-services.png index 32cf8896..5fe6dcb8 100644 Binary files a/img/resources/azure/compute/app-services.png and b/img/resources/azure/compute/app-services.png differ diff --git a/img/resources/azure/compute/application-group.png b/img/resources/azure/compute/application-group.png new file mode 100644 index 00000000..0435acd3 Binary files /dev/null and b/img/resources/azure/compute/application-group.png differ diff --git a/img/resources/azure/compute/automanaged-vm.png b/img/resources/azure/compute/automanaged-vm.png index 01c3f7c4..7bd2ec6f 100644 Binary files a/img/resources/azure/compute/automanaged-vm.png and b/img/resources/azure/compute/automanaged-vm.png differ diff --git a/img/resources/azure/compute/availability-sets.png b/img/resources/azure/compute/availability-sets.png index 35843106..8170ca36 100644 Binary files a/img/resources/azure/compute/availability-sets.png and b/img/resources/azure/compute/availability-sets.png differ diff --git a/img/resources/azure/compute/azure-compute-galleries.png b/img/resources/azure/compute/azure-compute-galleries.png new file mode 100644 index 00000000..3cbe69cd Binary files /dev/null and b/img/resources/azure/compute/azure-compute-galleries.png differ diff --git a/img/resources/azure/compute/azure-spring-apps.png b/img/resources/azure/compute/azure-spring-apps.png new file mode 100644 index 00000000..589e7f30 Binary files /dev/null and b/img/resources/azure/compute/azure-spring-apps.png differ diff --git a/img/resources/azure/compute/batch-accounts.png b/img/resources/azure/compute/batch-accounts.png index cfa2a950..75edacfe 100644 Binary files a/img/resources/azure/compute/batch-accounts.png and b/img/resources/azure/compute/batch-accounts.png differ diff --git a/img/resources/azure/compute/cloud-services-classic.png b/img/resources/azure/compute/cloud-services-classic.png index 1000d499..d5635d60 100644 Binary files a/img/resources/azure/compute/cloud-services-classic.png and b/img/resources/azure/compute/cloud-services-classic.png differ diff --git a/img/resources/azure/compute/container-instances.png b/img/resources/azure/compute/container-instances.png index 7296409b..d1ebef74 100644 Binary files a/img/resources/azure/compute/container-instances.png and b/img/resources/azure/compute/container-instances.png differ diff --git a/img/resources/azure/compute/container-services-deprecated.png b/img/resources/azure/compute/container-services-deprecated.png new file mode 100644 index 00000000..eea19b85 Binary files /dev/null and b/img/resources/azure/compute/container-services-deprecated.png differ diff --git a/img/resources/azure/compute/disk-encryption-sets.png b/img/resources/azure/compute/disk-encryption-sets.png index ac23f716..10edd453 100644 Binary files a/img/resources/azure/compute/disk-encryption-sets.png and b/img/resources/azure/compute/disk-encryption-sets.png differ diff --git a/img/resources/azure/compute/disks-classic.png b/img/resources/azure/compute/disks-classic.png new file mode 100644 index 00000000..61925165 Binary files /dev/null and b/img/resources/azure/compute/disks-classic.png differ diff --git a/img/resources/azure/compute/disks-snapshots.png b/img/resources/azure/compute/disks-snapshots.png new file mode 100644 index 00000000..d90193c1 Binary files /dev/null and b/img/resources/azure/compute/disks-snapshots.png differ diff --git a/img/resources/azure/compute/disks.png b/img/resources/azure/compute/disks.png index 755b5f58..61925165 100644 Binary files a/img/resources/azure/compute/disks.png and b/img/resources/azure/compute/disks.png differ diff --git a/img/resources/azure/compute/function-apps.png b/img/resources/azure/compute/function-apps.png index ba011478..0d0bdfa8 100644 Binary files a/img/resources/azure/compute/function-apps.png and b/img/resources/azure/compute/function-apps.png differ diff --git a/img/resources/azure/compute/host-groups.png b/img/resources/azure/compute/host-groups.png new file mode 100644 index 00000000..2d4b399f Binary files /dev/null and b/img/resources/azure/compute/host-groups.png differ diff --git a/img/resources/azure/compute/host-pools.png b/img/resources/azure/compute/host-pools.png new file mode 100644 index 00000000..7ac3a623 Binary files /dev/null and b/img/resources/azure/compute/host-pools.png differ diff --git a/img/resources/azure/compute/hosts.png b/img/resources/azure/compute/hosts.png new file mode 100644 index 00000000..749f492f Binary files /dev/null and b/img/resources/azure/compute/hosts.png differ diff --git a/img/resources/azure/compute/image-definitions.png b/img/resources/azure/compute/image-definitions.png index d4f21bb1..e600d2be 100644 Binary files a/img/resources/azure/compute/image-definitions.png and b/img/resources/azure/compute/image-definitions.png differ diff --git a/img/resources/azure/compute/image-templates.png b/img/resources/azure/compute/image-templates.png new file mode 100644 index 00000000..894c3840 Binary files /dev/null and b/img/resources/azure/compute/image-templates.png differ diff --git a/img/resources/azure/compute/image-versions.png b/img/resources/azure/compute/image-versions.png index 05cd49bd..26440cea 100644 Binary files a/img/resources/azure/compute/image-versions.png and b/img/resources/azure/compute/image-versions.png differ diff --git a/img/resources/azure/compute/images.png b/img/resources/azure/compute/images.png new file mode 100644 index 00000000..cbecfafb Binary files /dev/null and b/img/resources/azure/compute/images.png differ diff --git a/img/resources/azure/compute/kubernetes-services.png b/img/resources/azure/compute/kubernetes-services.png index 5b232709..eea19b85 100644 Binary files a/img/resources/azure/compute/kubernetes-services.png and b/img/resources/azure/compute/kubernetes-services.png differ diff --git a/img/resources/azure/compute/maintenance-configuration.png b/img/resources/azure/compute/maintenance-configuration.png new file mode 100644 index 00000000..b5825b4d Binary files /dev/null and b/img/resources/azure/compute/maintenance-configuration.png differ diff --git a/img/resources/azure/compute/managed-service-fabric.png b/img/resources/azure/compute/managed-service-fabric.png new file mode 100644 index 00000000..848dc1e9 Binary files /dev/null and b/img/resources/azure/compute/managed-service-fabric.png differ diff --git a/img/resources/azure/compute/mesh-applications.png b/img/resources/azure/compute/mesh-applications.png index 13c33e76..d16ebbc8 100644 Binary files a/img/resources/azure/compute/mesh-applications.png and b/img/resources/azure/compute/mesh-applications.png differ diff --git a/img/resources/azure/compute/metrics-advisor.png b/img/resources/azure/compute/metrics-advisor.png new file mode 100644 index 00000000..644bc3c3 Binary files /dev/null and b/img/resources/azure/compute/metrics-advisor.png differ diff --git a/img/resources/azure/compute/os-images-classic.png b/img/resources/azure/compute/os-images-classic.png new file mode 100644 index 00000000..7e657e1e Binary files /dev/null and b/img/resources/azure/compute/os-images-classic.png differ diff --git a/img/resources/azure/compute/restore-points-collections.png b/img/resources/azure/compute/restore-points-collections.png new file mode 100644 index 00000000..71c0d10f Binary files /dev/null and b/img/resources/azure/compute/restore-points-collections.png differ diff --git a/img/resources/azure/compute/restore-points.png b/img/resources/azure/compute/restore-points.png new file mode 100644 index 00000000..b6ae63b3 Binary files /dev/null and b/img/resources/azure/compute/restore-points.png differ diff --git a/img/resources/azure/compute/service-fabric-clusters.png b/img/resources/azure/compute/service-fabric-clusters.png index 6738e103..e28f38cf 100644 Binary files a/img/resources/azure/compute/service-fabric-clusters.png and b/img/resources/azure/compute/service-fabric-clusters.png differ diff --git a/img/resources/azure/compute/shared-image-galleries.png b/img/resources/azure/compute/shared-image-galleries.png index 8b2ac564..ad487853 100644 Binary files a/img/resources/azure/compute/shared-image-galleries.png and b/img/resources/azure/compute/shared-image-galleries.png differ diff --git a/img/resources/azure/compute/virtual-machine.png b/img/resources/azure/compute/virtual-machine.png new file mode 100644 index 00000000..bb643a01 Binary files /dev/null and b/img/resources/azure/compute/virtual-machine.png differ diff --git a/img/resources/azure/compute/virtual-machines-classic.png b/img/resources/azure/compute/virtual-machines-classic.png new file mode 100644 index 00000000..dffbb1b6 Binary files /dev/null and b/img/resources/azure/compute/virtual-machines-classic.png differ diff --git a/img/resources/azure/compute/vm-images-classic.png b/img/resources/azure/compute/vm-images-classic.png new file mode 100644 index 00000000..7e657e1e Binary files /dev/null and b/img/resources/azure/compute/vm-images-classic.png differ diff --git a/img/resources/azure/compute/vm-scale-sets.png b/img/resources/azure/compute/vm-scale-sets.png new file mode 100644 index 00000000..597d053a Binary files /dev/null and b/img/resources/azure/compute/vm-scale-sets.png differ diff --git a/img/resources/azure/compute/workspaces-2.png b/img/resources/azure/compute/workspaces-2.png new file mode 100644 index 00000000..73285a45 Binary files /dev/null and b/img/resources/azure/compute/workspaces-2.png differ diff --git a/img/resources/azure/compute/workspaces.png b/img/resources/azure/compute/workspaces.png index 3b5b7b09..7f3740a7 100644 Binary files a/img/resources/azure/compute/workspaces.png and b/img/resources/azure/compute/workspaces.png differ diff --git a/img/resources/azure/containers/app-services.png b/img/resources/azure/containers/app-services.png new file mode 100644 index 00000000..5fe6dcb8 Binary files /dev/null and b/img/resources/azure/containers/app-services.png differ diff --git a/img/resources/azure/containers/azure-red-hat-openshift.png b/img/resources/azure/containers/azure-red-hat-openshift.png new file mode 100644 index 00000000..854d6c29 Binary files /dev/null and b/img/resources/azure/containers/azure-red-hat-openshift.png differ diff --git a/img/resources/azure/containers/batch-accounts.png b/img/resources/azure/containers/batch-accounts.png new file mode 100644 index 00000000..75edacfe Binary files /dev/null and b/img/resources/azure/containers/batch-accounts.png differ diff --git a/img/resources/azure/containers/container-instances.png b/img/resources/azure/containers/container-instances.png new file mode 100644 index 00000000..d1ebef74 Binary files /dev/null and b/img/resources/azure/containers/container-instances.png differ diff --git a/img/resources/azure/containers/container-registries.png b/img/resources/azure/containers/container-registries.png new file mode 100644 index 00000000..f0f9abdf Binary files /dev/null and b/img/resources/azure/containers/container-registries.png differ diff --git a/img/resources/azure/containers/kubernetes-services.png b/img/resources/azure/containers/kubernetes-services.png new file mode 100644 index 00000000..eea19b85 Binary files /dev/null and b/img/resources/azure/containers/kubernetes-services.png differ diff --git a/img/resources/azure/containers/service-fabric-clusters.png b/img/resources/azure/containers/service-fabric-clusters.png new file mode 100644 index 00000000..e28f38cf Binary files /dev/null and b/img/resources/azure/containers/service-fabric-clusters.png differ diff --git a/img/resources/azure/databases/azure-cosmos-db.png b/img/resources/azure/databases/azure-cosmos-db.png new file mode 100644 index 00000000..75a29093 Binary files /dev/null and b/img/resources/azure/databases/azure-cosmos-db.png differ diff --git a/img/resources/azure/databases/azure-data-explorer-clusters.png b/img/resources/azure/databases/azure-data-explorer-clusters.png new file mode 100644 index 00000000..406ebe0a Binary files /dev/null and b/img/resources/azure/databases/azure-data-explorer-clusters.png differ diff --git a/img/resources/azure/databases/azure-database-mariadb-server.png b/img/resources/azure/databases/azure-database-mariadb-server.png new file mode 100644 index 00000000..b686d4c2 Binary files /dev/null and b/img/resources/azure/databases/azure-database-mariadb-server.png differ diff --git a/img/resources/azure/databases/azure-database-migration-services.png b/img/resources/azure/databases/azure-database-migration-services.png new file mode 100644 index 00000000..121f91f9 Binary files /dev/null and b/img/resources/azure/databases/azure-database-migration-services.png differ diff --git a/img/resources/azure/databases/azure-database-mysql-server.png b/img/resources/azure/databases/azure-database-mysql-server.png new file mode 100644 index 00000000..9939438a Binary files /dev/null and b/img/resources/azure/databases/azure-database-mysql-server.png differ diff --git a/img/resources/azure/databases/azure-database-postgresql-server-group.png b/img/resources/azure/databases/azure-database-postgresql-server-group.png new file mode 100644 index 00000000..84e4b452 Binary files /dev/null and b/img/resources/azure/databases/azure-database-postgresql-server-group.png differ diff --git a/img/resources/azure/databases/azure-database-postgresql-server.png b/img/resources/azure/databases/azure-database-postgresql-server.png new file mode 100644 index 00000000..df65a98d Binary files /dev/null and b/img/resources/azure/databases/azure-database-postgresql-server.png differ diff --git a/img/resources/azure/databases/azure-purview-accounts.png b/img/resources/azure/databases/azure-purview-accounts.png new file mode 100644 index 00000000..114f1d2d Binary files /dev/null and b/img/resources/azure/databases/azure-purview-accounts.png differ diff --git a/img/resources/azure/databases/azure-sql-edge.png b/img/resources/azure/databases/azure-sql-edge.png new file mode 100644 index 00000000..b6c0f90a Binary files /dev/null and b/img/resources/azure/databases/azure-sql-edge.png differ diff --git a/img/resources/azure/databases/azure-sql-server-stretch-databases.png b/img/resources/azure/databases/azure-sql-server-stretch-databases.png new file mode 100644 index 00000000..173af0f3 Binary files /dev/null and b/img/resources/azure/databases/azure-sql-server-stretch-databases.png differ diff --git a/img/resources/azure/databases/azure-sql-vm.png b/img/resources/azure/databases/azure-sql-vm.png new file mode 100644 index 00000000..6c295312 Binary files /dev/null and b/img/resources/azure/databases/azure-sql-vm.png differ diff --git a/img/resources/azure/databases/azure-sql.png b/img/resources/azure/databases/azure-sql.png new file mode 100644 index 00000000..c3857068 Binary files /dev/null and b/img/resources/azure/databases/azure-sql.png differ diff --git a/img/resources/azure/databases/azure-synapse-analytics.png b/img/resources/azure/databases/azure-synapse-analytics.png new file mode 100644 index 00000000..694c6bb5 Binary files /dev/null and b/img/resources/azure/databases/azure-synapse-analytics.png differ diff --git a/img/resources/azure/databases/cache-redis.png b/img/resources/azure/databases/cache-redis.png new file mode 100644 index 00000000..5f759e19 Binary files /dev/null and b/img/resources/azure/databases/cache-redis.png differ diff --git a/img/resources/azure/databases/data-factories.png b/img/resources/azure/databases/data-factories.png new file mode 100644 index 00000000..d3e5f045 Binary files /dev/null and b/img/resources/azure/databases/data-factories.png differ diff --git a/img/resources/azure/databases/elastic-job-agents.png b/img/resources/azure/databases/elastic-job-agents.png new file mode 100644 index 00000000..d0bc5e66 Binary files /dev/null and b/img/resources/azure/databases/elastic-job-agents.png differ diff --git a/img/resources/azure/databases/instance-pools.png b/img/resources/azure/databases/instance-pools.png new file mode 100644 index 00000000..ce2acf98 Binary files /dev/null and b/img/resources/azure/databases/instance-pools.png differ diff --git a/img/resources/azure/databases/managed-database.png b/img/resources/azure/databases/managed-database.png new file mode 100644 index 00000000..a9994d6c Binary files /dev/null and b/img/resources/azure/databases/managed-database.png differ diff --git a/img/resources/azure/databases/oracle-database.png b/img/resources/azure/databases/oracle-database.png new file mode 100644 index 00000000..43808a20 Binary files /dev/null and b/img/resources/azure/databases/oracle-database.png differ diff --git a/img/resources/azure/databases/sql-data-warehouses.png b/img/resources/azure/databases/sql-data-warehouses.png new file mode 100644 index 00000000..173af0f3 Binary files /dev/null and b/img/resources/azure/databases/sql-data-warehouses.png differ diff --git a/img/resources/azure/databases/sql-database.png b/img/resources/azure/databases/sql-database.png new file mode 100644 index 00000000..3e4f2879 Binary files /dev/null and b/img/resources/azure/databases/sql-database.png differ diff --git a/img/resources/azure/databases/sql-elastic-pools.png b/img/resources/azure/databases/sql-elastic-pools.png new file mode 100644 index 00000000..a3737b5c Binary files /dev/null and b/img/resources/azure/databases/sql-elastic-pools.png differ diff --git a/img/resources/azure/databases/sql-managed-instance.png b/img/resources/azure/databases/sql-managed-instance.png new file mode 100644 index 00000000..6ec7854e Binary files /dev/null and b/img/resources/azure/databases/sql-managed-instance.png differ diff --git a/img/resources/azure/databases/sql-server-registries.png b/img/resources/azure/databases/sql-server-registries.png new file mode 100644 index 00000000..48f15fed Binary files /dev/null and b/img/resources/azure/databases/sql-server-registries.png differ diff --git a/img/resources/azure/databases/sql-server.png b/img/resources/azure/databases/sql-server.png new file mode 100644 index 00000000..00f42a73 Binary files /dev/null and b/img/resources/azure/databases/sql-server.png differ diff --git a/img/resources/azure/databases/ssis-lift-and-shift-ir.png b/img/resources/azure/databases/ssis-lift-and-shift-ir.png new file mode 100644 index 00000000..0f8e511c Binary files /dev/null and b/img/resources/azure/databases/ssis-lift-and-shift-ir.png differ diff --git a/img/resources/azure/databases/virtual-clusters.png b/img/resources/azure/databases/virtual-clusters.png new file mode 100644 index 00000000..4ab98dbd Binary files /dev/null and b/img/resources/azure/databases/virtual-clusters.png differ diff --git a/img/resources/azure/devops/api-connections.png b/img/resources/azure/devops/api-connections.png new file mode 100644 index 00000000..2f822d90 Binary files /dev/null and b/img/resources/azure/devops/api-connections.png differ diff --git a/img/resources/azure/devops/api-management-services.png b/img/resources/azure/devops/api-management-services.png new file mode 100644 index 00000000..1d80a49e Binary files /dev/null and b/img/resources/azure/devops/api-management-services.png differ diff --git a/img/resources/azure/devops/application-insights.png b/img/resources/azure/devops/application-insights.png index a6063f3c..101f109c 100644 Binary files a/img/resources/azure/devops/application-insights.png and b/img/resources/azure/devops/application-insights.png differ diff --git a/img/resources/azure/devops/azure-devops.png b/img/resources/azure/devops/azure-devops.png new file mode 100644 index 00000000..bde482d9 Binary files /dev/null and b/img/resources/azure/devops/azure-devops.png differ diff --git a/img/resources/azure/devops/change-analysis.png b/img/resources/azure/devops/change-analysis.png new file mode 100644 index 00000000..a01f9815 Binary files /dev/null and b/img/resources/azure/devops/change-analysis.png differ diff --git a/img/resources/azure/devops/cloudtest.png b/img/resources/azure/devops/cloudtest.png new file mode 100644 index 00000000..695a8c11 Binary files /dev/null and b/img/resources/azure/devops/cloudtest.png differ diff --git a/img/resources/azure/devops/code-optimization.png b/img/resources/azure/devops/code-optimization.png new file mode 100644 index 00000000..1a4961db Binary files /dev/null and b/img/resources/azure/devops/code-optimization.png differ diff --git a/img/resources/azure/devops/devops-starter.png b/img/resources/azure/devops/devops-starter.png new file mode 100644 index 00000000..3716d0bb Binary files /dev/null and b/img/resources/azure/devops/devops-starter.png differ diff --git a/img/resources/azure/devops/devtest-labs.png b/img/resources/azure/devops/devtest-labs.png index c1cd2829..95ec5468 100644 Binary files a/img/resources/azure/devops/devtest-labs.png and b/img/resources/azure/devops/devtest-labs.png differ diff --git a/img/resources/azure/devops/lab-accounts.png b/img/resources/azure/devops/lab-accounts.png new file mode 100644 index 00000000..c0244be5 Binary files /dev/null and b/img/resources/azure/devops/lab-accounts.png differ diff --git a/img/resources/azure/devops/lab-services.png b/img/resources/azure/devops/lab-services.png index c797f9ef..25ba2c86 100644 Binary files a/img/resources/azure/devops/lab-services.png and b/img/resources/azure/devops/lab-services.png differ diff --git a/img/resources/azure/devops/load-testing.png b/img/resources/azure/devops/load-testing.png new file mode 100644 index 00000000..f93a2949 Binary files /dev/null and b/img/resources/azure/devops/load-testing.png differ diff --git a/img/resources/azure/general/all-resources.png b/img/resources/azure/general/all-resources.png new file mode 100644 index 00000000..f4594892 Binary files /dev/null and b/img/resources/azure/general/all-resources.png differ diff --git a/img/resources/azure/general/backlog.png b/img/resources/azure/general/backlog.png new file mode 100644 index 00000000..1a0970f8 Binary files /dev/null and b/img/resources/azure/general/backlog.png differ diff --git a/img/resources/azure/general/biz-talk.png b/img/resources/azure/general/biz-talk.png new file mode 100644 index 00000000..3b2af3d0 Binary files /dev/null and b/img/resources/azure/general/biz-talk.png differ diff --git a/img/resources/azure/general/blob-block.png b/img/resources/azure/general/blob-block.png new file mode 100644 index 00000000..6e33746f Binary files /dev/null and b/img/resources/azure/general/blob-block.png differ diff --git a/img/resources/azure/general/blob-page.png b/img/resources/azure/general/blob-page.png new file mode 100644 index 00000000..a1320732 Binary files /dev/null and b/img/resources/azure/general/blob-page.png differ diff --git a/img/resources/azure/general/branch.png b/img/resources/azure/general/branch.png new file mode 100644 index 00000000..d1488842 Binary files /dev/null and b/img/resources/azure/general/branch.png differ diff --git a/img/resources/azure/general/browser.png b/img/resources/azure/general/browser.png new file mode 100644 index 00000000..f85fdacb Binary files /dev/null and b/img/resources/azure/general/browser.png differ diff --git a/img/resources/azure/general/bug.png b/img/resources/azure/general/bug.png new file mode 100644 index 00000000..841f4f08 Binary files /dev/null and b/img/resources/azure/general/bug.png differ diff --git a/img/resources/azure/general/builds.png b/img/resources/azure/general/builds.png new file mode 100644 index 00000000..a5101de1 Binary files /dev/null and b/img/resources/azure/general/builds.png differ diff --git a/img/resources/azure/general/cache.png b/img/resources/azure/general/cache.png new file mode 100644 index 00000000..2fc71ac3 Binary files /dev/null and b/img/resources/azure/general/cache.png differ diff --git a/img/resources/azure/general/code.png b/img/resources/azure/general/code.png new file mode 100644 index 00000000..a63f7ffb Binary files /dev/null and b/img/resources/azure/general/code.png differ diff --git a/img/resources/azure/general/commit.png b/img/resources/azure/general/commit.png new file mode 100644 index 00000000..87c78c7f Binary files /dev/null and b/img/resources/azure/general/commit.png differ diff --git a/img/resources/azure/general/controls-horizontal.png b/img/resources/azure/general/controls-horizontal.png new file mode 100644 index 00000000..7a0c6a42 Binary files /dev/null and b/img/resources/azure/general/controls-horizontal.png differ diff --git a/img/resources/azure/general/controls.png b/img/resources/azure/general/controls.png new file mode 100644 index 00000000..25570af3 Binary files /dev/null and b/img/resources/azure/general/controls.png differ diff --git a/img/resources/azure/general/cost-alerts.png b/img/resources/azure/general/cost-alerts.png new file mode 100644 index 00000000..df2c9a76 Binary files /dev/null and b/img/resources/azure/general/cost-alerts.png differ diff --git a/img/resources/azure/general/cost-analysis.png b/img/resources/azure/general/cost-analysis.png new file mode 100644 index 00000000..ea40c7e0 Binary files /dev/null and b/img/resources/azure/general/cost-analysis.png differ diff --git a/img/resources/azure/general/cost-budgets.png b/img/resources/azure/general/cost-budgets.png new file mode 100644 index 00000000..dc985ed2 Binary files /dev/null and b/img/resources/azure/general/cost-budgets.png differ diff --git a/img/resources/azure/general/cost-management-and-billing.png b/img/resources/azure/general/cost-management-and-billing.png new file mode 100644 index 00000000..ee823c94 Binary files /dev/null and b/img/resources/azure/general/cost-management-and-billing.png differ diff --git a/img/resources/azure/general/cost-management.png b/img/resources/azure/general/cost-management.png new file mode 100644 index 00000000..b9112332 Binary files /dev/null and b/img/resources/azure/general/cost-management.png differ diff --git a/img/resources/azure/general/counter.png b/img/resources/azure/general/counter.png new file mode 100644 index 00000000..784f9eae Binary files /dev/null and b/img/resources/azure/general/counter.png differ diff --git a/img/resources/azure/general/cubes.png b/img/resources/azure/general/cubes.png new file mode 100644 index 00000000..4453d1bc Binary files /dev/null and b/img/resources/azure/general/cubes.png differ diff --git a/img/resources/azure/general/dashboard.png b/img/resources/azure/general/dashboard.png new file mode 100644 index 00000000..124cbe62 Binary files /dev/null and b/img/resources/azure/general/dashboard.png differ diff --git a/img/resources/azure/general/dev-console.png b/img/resources/azure/general/dev-console.png new file mode 100644 index 00000000..3712c3f4 Binary files /dev/null and b/img/resources/azure/general/dev-console.png differ diff --git a/img/resources/azure/general/download.png b/img/resources/azure/general/download.png new file mode 100644 index 00000000..2007f4f7 Binary files /dev/null and b/img/resources/azure/general/download.png differ diff --git a/img/resources/azure/general/error.png b/img/resources/azure/general/error.png new file mode 100644 index 00000000..ac6d8ea8 Binary files /dev/null and b/img/resources/azure/general/error.png differ diff --git a/img/resources/azure/general/extensions.png b/img/resources/azure/general/extensions.png new file mode 100644 index 00000000..d18846e9 Binary files /dev/null and b/img/resources/azure/general/extensions.png differ diff --git a/img/resources/azure/general/feature-previews.png b/img/resources/azure/general/feature-previews.png new file mode 100644 index 00000000..40303646 Binary files /dev/null and b/img/resources/azure/general/feature-previews.png differ diff --git a/img/resources/azure/general/file.png b/img/resources/azure/general/file.png new file mode 100644 index 00000000..e81f82bc Binary files /dev/null and b/img/resources/azure/general/file.png differ diff --git a/img/resources/azure/general/files.png b/img/resources/azure/general/files.png new file mode 100644 index 00000000..7f5b688b Binary files /dev/null and b/img/resources/azure/general/files.png differ diff --git a/img/resources/azure/general/folder-blank.png b/img/resources/azure/general/folder-blank.png new file mode 100644 index 00000000..6e0bfbf7 Binary files /dev/null and b/img/resources/azure/general/folder-blank.png differ diff --git a/img/resources/azure/general/folder-website.png b/img/resources/azure/general/folder-website.png new file mode 100644 index 00000000..84672655 Binary files /dev/null and b/img/resources/azure/general/folder-website.png differ diff --git a/img/resources/azure/general/free-services.png b/img/resources/azure/general/free-services.png new file mode 100644 index 00000000..254b6b75 Binary files /dev/null and b/img/resources/azure/general/free-services.png differ diff --git a/img/resources/azure/general/ftp.png b/img/resources/azure/general/ftp.png new file mode 100644 index 00000000..0433a70d Binary files /dev/null and b/img/resources/azure/general/ftp.png differ diff --git a/img/resources/azure/general/gear.png b/img/resources/azure/general/gear.png new file mode 100644 index 00000000..e2a3a1e0 Binary files /dev/null and b/img/resources/azure/general/gear.png differ diff --git a/img/resources/azure/general/globe-error.png b/img/resources/azure/general/globe-error.png new file mode 100644 index 00000000..ea6b84f9 Binary files /dev/null and b/img/resources/azure/general/globe-error.png differ diff --git a/img/resources/azure/general/globe-success.png b/img/resources/azure/general/globe-success.png new file mode 100644 index 00000000..cc4304e9 Binary files /dev/null and b/img/resources/azure/general/globe-success.png differ diff --git a/img/resources/azure/general/globe-warning.png b/img/resources/azure/general/globe-warning.png new file mode 100644 index 00000000..8f41eaaa Binary files /dev/null and b/img/resources/azure/general/globe-warning.png differ diff --git a/img/resources/azure/general/guide.png b/img/resources/azure/general/guide.png new file mode 100644 index 00000000..65f52c1d Binary files /dev/null and b/img/resources/azure/general/guide.png differ diff --git a/img/resources/azure/general/heart.png b/img/resources/azure/general/heart.png new file mode 100644 index 00000000..e8cd9b23 Binary files /dev/null and b/img/resources/azure/general/heart.png differ diff --git a/img/resources/azure/general/help-and-support.png b/img/resources/azure/general/help-and-support.png new file mode 100644 index 00000000..7e3cdeae Binary files /dev/null and b/img/resources/azure/general/help-and-support.png differ diff --git a/img/resources/azure/general/image.png b/img/resources/azure/general/image.png new file mode 100644 index 00000000..5e9c6a39 Binary files /dev/null and b/img/resources/azure/general/image.png differ diff --git a/img/resources/azure/general/information.png b/img/resources/azure/general/information.png index d8f5b348..cbcfc0b8 100644 Binary files a/img/resources/azure/general/information.png and b/img/resources/azure/general/information.png differ diff --git a/img/resources/azure/general/input-output.png b/img/resources/azure/general/input-output.png new file mode 100644 index 00000000..9d170405 Binary files /dev/null and b/img/resources/azure/general/input-output.png differ diff --git a/img/resources/azure/general/journey-hub.png b/img/resources/azure/general/journey-hub.png new file mode 100644 index 00000000..64b1ff4e Binary files /dev/null and b/img/resources/azure/general/journey-hub.png differ diff --git a/img/resources/azure/general/launch-portal.png b/img/resources/azure/general/launch-portal.png new file mode 100644 index 00000000..27d03e43 Binary files /dev/null and b/img/resources/azure/general/launch-portal.png differ diff --git a/img/resources/azure/general/learn.png b/img/resources/azure/general/learn.png new file mode 100644 index 00000000..4f6e731f Binary files /dev/null and b/img/resources/azure/general/learn.png differ diff --git a/img/resources/azure/general/load-test.png b/img/resources/azure/general/load-test.png new file mode 100644 index 00000000..8d4253ee Binary files /dev/null and b/img/resources/azure/general/load-test.png differ diff --git a/img/resources/azure/general/location.png b/img/resources/azure/general/location.png new file mode 100644 index 00000000..76767d78 Binary files /dev/null and b/img/resources/azure/general/location.png differ diff --git a/img/resources/azure/general/log-streaming.png b/img/resources/azure/general/log-streaming.png new file mode 100644 index 00000000..51836117 Binary files /dev/null and b/img/resources/azure/general/log-streaming.png differ diff --git a/img/resources/azure/general/management-groups.png b/img/resources/azure/general/management-groups.png new file mode 100644 index 00000000..dca3736e Binary files /dev/null and b/img/resources/azure/general/management-groups.png differ diff --git a/img/resources/azure/general/management-portal.png b/img/resources/azure/general/management-portal.png new file mode 100644 index 00000000..d5e5bf89 Binary files /dev/null and b/img/resources/azure/general/management-portal.png differ diff --git a/img/resources/azure/general/marketplace-management.png b/img/resources/azure/general/marketplace-management.png new file mode 100644 index 00000000..9f63c849 Binary files /dev/null and b/img/resources/azure/general/marketplace-management.png differ diff --git a/img/resources/azure/general/marketplace.png b/img/resources/azure/general/marketplace.png index 636da353..977d6b72 100644 Binary files a/img/resources/azure/general/marketplace.png and b/img/resources/azure/general/marketplace.png differ diff --git a/img/resources/azure/general/media-file.png b/img/resources/azure/general/media-file.png new file mode 100644 index 00000000..8882f639 Binary files /dev/null and b/img/resources/azure/general/media-file.png differ diff --git a/img/resources/azure/general/media.png b/img/resources/azure/general/media.png new file mode 100644 index 00000000..113fd738 Binary files /dev/null and b/img/resources/azure/general/media.png differ diff --git a/img/resources/azure/general/mobile-engagement.png b/img/resources/azure/general/mobile-engagement.png new file mode 100644 index 00000000..3f15aac2 Binary files /dev/null and b/img/resources/azure/general/mobile-engagement.png differ diff --git a/img/resources/azure/general/mobile.png b/img/resources/azure/general/mobile.png new file mode 100644 index 00000000..35525865 Binary files /dev/null and b/img/resources/azure/general/mobile.png differ diff --git a/img/resources/azure/general/module.png b/img/resources/azure/general/module.png new file mode 100644 index 00000000..0d4b7569 Binary files /dev/null and b/img/resources/azure/general/module.png differ diff --git a/img/resources/azure/general/power-up.png b/img/resources/azure/general/power-up.png new file mode 100644 index 00000000..4497c6b0 Binary files /dev/null and b/img/resources/azure/general/power-up.png differ diff --git a/img/resources/azure/general/power.png b/img/resources/azure/general/power.png new file mode 100644 index 00000000..04adc98c Binary files /dev/null and b/img/resources/azure/general/power.png differ diff --git a/img/resources/azure/general/powershell.png b/img/resources/azure/general/powershell.png new file mode 100644 index 00000000..2f9db19e Binary files /dev/null and b/img/resources/azure/general/powershell.png differ diff --git a/img/resources/azure/general/preview-features.png b/img/resources/azure/general/preview-features.png new file mode 100644 index 00000000..8f641ce0 Binary files /dev/null and b/img/resources/azure/general/preview-features.png differ diff --git a/img/resources/azure/general/process-explorer.png b/img/resources/azure/general/process-explorer.png new file mode 100644 index 00000000..ac4077d7 Binary files /dev/null and b/img/resources/azure/general/process-explorer.png differ diff --git a/img/resources/azure/general/production-ready-database.png b/img/resources/azure/general/production-ready-database.png new file mode 100644 index 00000000..9438c880 Binary files /dev/null and b/img/resources/azure/general/production-ready-database.png differ diff --git a/img/resources/azure/general/quickstart-center.png b/img/resources/azure/general/quickstart-center.png new file mode 100644 index 00000000..a931b38b Binary files /dev/null and b/img/resources/azure/general/quickstart-center.png differ diff --git a/img/resources/azure/general/recent.png b/img/resources/azure/general/recent.png index 83b98072..4deb890e 100644 Binary files a/img/resources/azure/general/recent.png and b/img/resources/azure/general/recent.png differ diff --git a/img/resources/azure/general/region-management.png b/img/resources/azure/general/region-management.png new file mode 100644 index 00000000..b7cfd2b6 Binary files /dev/null and b/img/resources/azure/general/region-management.png differ diff --git a/img/resources/azure/general/reservations.png b/img/resources/azure/general/reservations.png index 2e5a51ee..1cb50395 100644 Binary files a/img/resources/azure/general/reservations.png and b/img/resources/azure/general/reservations.png differ diff --git a/img/resources/azure/general/resource-explorer.png b/img/resources/azure/general/resource-explorer.png new file mode 100644 index 00000000..7125628f Binary files /dev/null and b/img/resources/azure/general/resource-explorer.png differ diff --git a/img/resources/azure/general/resource-group-list.png b/img/resources/azure/general/resource-group-list.png new file mode 100644 index 00000000..eb2c350b Binary files /dev/null and b/img/resources/azure/general/resource-group-list.png differ diff --git a/img/resources/azure/general/resource-groups.png b/img/resources/azure/general/resource-groups.png new file mode 100644 index 00000000..05dc9a90 Binary files /dev/null and b/img/resources/azure/general/resource-groups.png differ diff --git a/img/resources/azure/general/resource-linked.png b/img/resources/azure/general/resource-linked.png new file mode 100644 index 00000000..253369e7 Binary files /dev/null and b/img/resources/azure/general/resource-linked.png differ diff --git a/img/resources/azure/general/scheduler.png b/img/resources/azure/general/scheduler.png new file mode 100644 index 00000000..808c89b4 Binary files /dev/null and b/img/resources/azure/general/scheduler.png differ diff --git a/img/resources/azure/general/search-grid.png b/img/resources/azure/general/search-grid.png new file mode 100644 index 00000000..eb2c350b Binary files /dev/null and b/img/resources/azure/general/search-grid.png differ diff --git a/img/resources/azure/general/search.png b/img/resources/azure/general/search.png new file mode 100644 index 00000000..faab419f Binary files /dev/null and b/img/resources/azure/general/search.png differ diff --git a/img/resources/azure/general/server-farm.png b/img/resources/azure/general/server-farm.png new file mode 100644 index 00000000..927d3aa8 Binary files /dev/null and b/img/resources/azure/general/server-farm.png differ diff --git a/img/resources/azure/general/service-health.png b/img/resources/azure/general/service-health.png new file mode 100644 index 00000000..3d6c57b1 Binary files /dev/null and b/img/resources/azure/general/service-health.png differ diff --git a/img/resources/azure/general/ssd.png b/img/resources/azure/general/ssd.png new file mode 100644 index 00000000..de39fb72 Binary files /dev/null and b/img/resources/azure/general/ssd.png differ diff --git a/img/resources/azure/general/storage-azure-files.png b/img/resources/azure/general/storage-azure-files.png new file mode 100644 index 00000000..0c38ec1d Binary files /dev/null and b/img/resources/azure/general/storage-azure-files.png differ diff --git a/img/resources/azure/general/storage-container.png b/img/resources/azure/general/storage-container.png new file mode 100644 index 00000000..fda1c575 Binary files /dev/null and b/img/resources/azure/general/storage-container.png differ diff --git a/img/resources/azure/general/storage-queue.png b/img/resources/azure/general/storage-queue.png new file mode 100644 index 00000000..065a7194 Binary files /dev/null and b/img/resources/azure/general/storage-queue.png differ diff --git a/img/resources/azure/general/subscriptions.png b/img/resources/azure/general/subscriptions.png index 63dbdfb1..cb6e7089 100644 Binary files a/img/resources/azure/general/subscriptions.png and b/img/resources/azure/general/subscriptions.png differ diff --git a/img/resources/azure/general/table.png b/img/resources/azure/general/table.png new file mode 100644 index 00000000..ab1cedce Binary files /dev/null and b/img/resources/azure/general/table.png differ diff --git a/img/resources/azure/general/tag.png b/img/resources/azure/general/tag.png index 75a6327f..06c6cf77 100644 Binary files a/img/resources/azure/general/tag.png and b/img/resources/azure/general/tag.png differ diff --git a/img/resources/azure/general/tags.png b/img/resources/azure/general/tags.png index ebbbcb3b..0cf72eef 100644 Binary files a/img/resources/azure/general/tags.png and b/img/resources/azure/general/tags.png differ diff --git a/img/resources/azure/general/templates.png b/img/resources/azure/general/templates.png index b35110ba..1fd34177 100644 Binary files a/img/resources/azure/general/templates.png and b/img/resources/azure/general/templates.png differ diff --git a/img/resources/azure/general/tfs-vc-repository.png b/img/resources/azure/general/tfs-vc-repository.png new file mode 100644 index 00000000..a91adccb Binary files /dev/null and b/img/resources/azure/general/tfs-vc-repository.png differ diff --git a/img/resources/azure/general/toolbox.png b/img/resources/azure/general/toolbox.png new file mode 100644 index 00000000..f833e104 Binary files /dev/null and b/img/resources/azure/general/toolbox.png differ diff --git a/img/resources/azure/general/troubleshoot.png b/img/resources/azure/general/troubleshoot.png new file mode 100644 index 00000000..09ab3cfa Binary files /dev/null and b/img/resources/azure/general/troubleshoot.png differ diff --git a/img/resources/azure/general/versions.png b/img/resources/azure/general/versions.png new file mode 100644 index 00000000..afa78337 Binary files /dev/null and b/img/resources/azure/general/versions.png differ diff --git a/img/resources/azure/general/web-slots.png b/img/resources/azure/general/web-slots.png new file mode 100644 index 00000000..ea2f7751 Binary files /dev/null and b/img/resources/azure/general/web-slots.png differ diff --git a/img/resources/azure/general/web-test.png b/img/resources/azure/general/web-test.png new file mode 100644 index 00000000..c68ec3af Binary files /dev/null and b/img/resources/azure/general/web-test.png differ diff --git a/img/resources/azure/general/website-power.png b/img/resources/azure/general/website-power.png new file mode 100644 index 00000000..c5bd616f Binary files /dev/null and b/img/resources/azure/general/website-power.png differ diff --git a/img/resources/azure/general/website-staging.png b/img/resources/azure/general/website-staging.png new file mode 100644 index 00000000..e065a2f7 Binary files /dev/null and b/img/resources/azure/general/website-staging.png differ diff --git a/img/resources/azure/general/workbooks.png b/img/resources/azure/general/workbooks.png new file mode 100644 index 00000000..2f8ae27f Binary files /dev/null and b/img/resources/azure/general/workbooks.png differ diff --git a/img/resources/azure/general/workflow.png b/img/resources/azure/general/workflow.png new file mode 100644 index 00000000..1ddb7210 Binary files /dev/null and b/img/resources/azure/general/workflow.png differ diff --git a/img/resources/azure/hybridmulticloud/azure-operator-5g-core.png b/img/resources/azure/hybridmulticloud/azure-operator-5g-core.png new file mode 100644 index 00000000..27db1fc9 Binary files /dev/null and b/img/resources/azure/hybridmulticloud/azure-operator-5g-core.png differ diff --git a/img/resources/azure/hybridmulticloud/azure-operator-insights.png b/img/resources/azure/hybridmulticloud/azure-operator-insights.png new file mode 100644 index 00000000..f6b2e834 Binary files /dev/null and b/img/resources/azure/hybridmulticloud/azure-operator-insights.png differ diff --git a/img/resources/azure/hybridmulticloud/azure-operator-nexus.png b/img/resources/azure/hybridmulticloud/azure-operator-nexus.png new file mode 100644 index 00000000..5befab8c Binary files /dev/null and b/img/resources/azure/hybridmulticloud/azure-operator-nexus.png differ diff --git a/img/resources/azure/hybridmulticloud/azure-operator-service-manager.png b/img/resources/azure/hybridmulticloud/azure-operator-service-manager.png new file mode 100644 index 00000000..eb365a38 Binary files /dev/null and b/img/resources/azure/hybridmulticloud/azure-operator-service-manager.png differ diff --git a/img/resources/azure/hybridmulticloud/azure-programmable-connectivity.png b/img/resources/azure/hybridmulticloud/azure-programmable-connectivity.png new file mode 100644 index 00000000..b65af7ef Binary files /dev/null and b/img/resources/azure/hybridmulticloud/azure-programmable-connectivity.png differ diff --git a/img/resources/azure/identity/aad-licenses.png b/img/resources/azure/identity/aad-licenses.png new file mode 100644 index 00000000..c1c3c947 Binary files /dev/null and b/img/resources/azure/identity/aad-licenses.png differ diff --git a/img/resources/azure/identity/active-directory-connect-health.png b/img/resources/azure/identity/active-directory-connect-health.png index 3b8da6fd..950bcf04 100644 Binary files a/img/resources/azure/identity/active-directory-connect-health.png and b/img/resources/azure/identity/active-directory-connect-health.png differ diff --git a/img/resources/azure/identity/administrative-units.png b/img/resources/azure/identity/administrative-units.png new file mode 100644 index 00000000..f5b78153 Binary files /dev/null and b/img/resources/azure/identity/administrative-units.png differ diff --git a/img/resources/azure/identity/api-proxy.png b/img/resources/azure/identity/api-proxy.png new file mode 100644 index 00000000..2a717ede Binary files /dev/null and b/img/resources/azure/identity/api-proxy.png differ diff --git a/img/resources/azure/identity/app-registrations.png b/img/resources/azure/identity/app-registrations.png index 1350cdc1..82c0d440 100644 Binary files a/img/resources/azure/identity/app-registrations.png and b/img/resources/azure/identity/app-registrations.png differ diff --git a/img/resources/azure/identity/azure-active-directory.png b/img/resources/azure/identity/azure-active-directory.png new file mode 100644 index 00000000..c1d7825f Binary files /dev/null and b/img/resources/azure/identity/azure-active-directory.png differ diff --git a/img/resources/azure/identity/azure-ad-b2c.png b/img/resources/azure/identity/azure-ad-b2c.png new file mode 100644 index 00000000..8d15ae79 Binary files /dev/null and b/img/resources/azure/identity/azure-ad-b2c.png differ diff --git a/img/resources/azure/identity/azure-ad-domain-services.png b/img/resources/azure/identity/azure-ad-domain-services.png new file mode 100644 index 00000000..d46317aa Binary files /dev/null and b/img/resources/azure/identity/azure-ad-domain-services.png differ diff --git a/img/resources/azure/identity/azure-ad-identity-protection.png b/img/resources/azure/identity/azure-ad-identity-protection.png new file mode 100644 index 00000000..d8bc0847 Binary files /dev/null and b/img/resources/azure/identity/azure-ad-identity-protection.png differ diff --git a/img/resources/azure/identity/azure-ad-privilege-identity-management.png b/img/resources/azure/identity/azure-ad-privilege-identity-management.png new file mode 100644 index 00000000..015e1c0d Binary files /dev/null and b/img/resources/azure/identity/azure-ad-privilege-identity-management.png differ diff --git a/img/resources/azure/identity/azure-ad-privleged-identity-management.png b/img/resources/azure/identity/azure-ad-privleged-identity-management.png new file mode 100644 index 00000000..336179bb Binary files /dev/null and b/img/resources/azure/identity/azure-ad-privleged-identity-management.png differ diff --git a/img/resources/azure/identity/azure-ad-roles-and-administrators.png b/img/resources/azure/identity/azure-ad-roles-and-administrators.png new file mode 100644 index 00000000..e825e200 Binary files /dev/null and b/img/resources/azure/identity/azure-ad-roles-and-administrators.png differ diff --git a/img/resources/azure/identity/azure-information-protection.png b/img/resources/azure/identity/azure-information-protection.png new file mode 100644 index 00000000..d350f568 Binary files /dev/null and b/img/resources/azure/identity/azure-information-protection.png differ diff --git a/img/resources/azure/identity/custom-azure-ad-roles.png b/img/resources/azure/identity/custom-azure-ad-roles.png new file mode 100644 index 00000000..afec22bc Binary files /dev/null and b/img/resources/azure/identity/custom-azure-ad-roles.png differ diff --git a/img/resources/azure/identity/enterprise-applications.png b/img/resources/azure/identity/enterprise-applications.png index cfbef4cf..5be7c31b 100644 Binary files a/img/resources/azure/identity/enterprise-applications.png and b/img/resources/azure/identity/enterprise-applications.png differ diff --git a/img/resources/azure/identity/entra-connect.png b/img/resources/azure/identity/entra-connect.png new file mode 100644 index 00000000..15c31607 Binary files /dev/null and b/img/resources/azure/identity/entra-connect.png differ diff --git a/img/resources/azure/identity/entra-domain-services.png b/img/resources/azure/identity/entra-domain-services.png new file mode 100644 index 00000000..166307f7 Binary files /dev/null and b/img/resources/azure/identity/entra-domain-services.png differ diff --git a/img/resources/azure/identity/entra-id-protection.png b/img/resources/azure/identity/entra-id-protection.png new file mode 100644 index 00000000..96af676f Binary files /dev/null and b/img/resources/azure/identity/entra-id-protection.png differ diff --git a/img/resources/azure/identity/entra-managed-identities.png b/img/resources/azure/identity/entra-managed-identities.png new file mode 100644 index 00000000..4e49bf3c Binary files /dev/null and b/img/resources/azure/identity/entra-managed-identities.png differ diff --git a/img/resources/azure/identity/entra-privleged-identity-management.png b/img/resources/azure/identity/entra-privleged-identity-management.png new file mode 100644 index 00000000..1d498859 Binary files /dev/null and b/img/resources/azure/identity/entra-privleged-identity-management.png differ diff --git a/img/resources/azure/identity/entra-verified-id.png b/img/resources/azure/identity/entra-verified-id.png new file mode 100644 index 00000000..4d66fb5a Binary files /dev/null and b/img/resources/azure/identity/entra-verified-id.png differ diff --git a/img/resources/azure/identity/external-identities.png b/img/resources/azure/identity/external-identities.png new file mode 100644 index 00000000..d96ee86c Binary files /dev/null and b/img/resources/azure/identity/external-identities.png differ diff --git a/img/resources/azure/identity/global-secure-access.png b/img/resources/azure/identity/global-secure-access.png new file mode 100644 index 00000000..d88a61a4 Binary files /dev/null and b/img/resources/azure/identity/global-secure-access.png differ diff --git a/img/resources/azure/identity/groups.png b/img/resources/azure/identity/groups.png index 6b8f2fe7..031e2ee7 100644 Binary files a/img/resources/azure/identity/groups.png and b/img/resources/azure/identity/groups.png differ diff --git a/img/resources/azure/identity/identity-governance.png b/img/resources/azure/identity/identity-governance.png index eea8123f..b4c6a360 100644 Binary files a/img/resources/azure/identity/identity-governance.png and b/img/resources/azure/identity/identity-governance.png differ diff --git a/img/resources/azure/identity/internet-access.png b/img/resources/azure/identity/internet-access.png new file mode 100644 index 00000000..91c72327 Binary files /dev/null and b/img/resources/azure/identity/internet-access.png differ diff --git a/img/resources/azure/identity/managed-identities.png b/img/resources/azure/identity/managed-identities.png index 3bdc5402..b78ec9dc 100644 Binary files a/img/resources/azure/identity/managed-identities.png and b/img/resources/azure/identity/managed-identities.png differ diff --git a/img/resources/azure/identity/private-access.png b/img/resources/azure/identity/private-access.png new file mode 100644 index 00000000..1bb36e3a Binary files /dev/null and b/img/resources/azure/identity/private-access.png differ diff --git a/img/resources/azure/identity/security.png b/img/resources/azure/identity/security.png new file mode 100644 index 00000000..88670d51 Binary files /dev/null and b/img/resources/azure/identity/security.png differ diff --git a/img/resources/azure/identity/tenant-properties.png b/img/resources/azure/identity/tenant-properties.png new file mode 100644 index 00000000..8248eff2 Binary files /dev/null and b/img/resources/azure/identity/tenant-properties.png differ diff --git a/img/resources/azure/identity/user-settings.png b/img/resources/azure/identity/user-settings.png new file mode 100644 index 00000000..ae64c527 Binary files /dev/null and b/img/resources/azure/identity/user-settings.png differ diff --git a/img/resources/azure/identity/users.png b/img/resources/azure/identity/users.png index ab74f766..eba32713 100644 Binary files a/img/resources/azure/identity/users.png and b/img/resources/azure/identity/users.png differ diff --git a/img/resources/azure/identity/verifiable-credentials.png b/img/resources/azure/identity/verifiable-credentials.png new file mode 100644 index 00000000..35be6841 Binary files /dev/null and b/img/resources/azure/identity/verifiable-credentials.png differ diff --git a/img/resources/azure/integration/api-connections.png b/img/resources/azure/integration/api-connections.png new file mode 100644 index 00000000..2f822d90 Binary files /dev/null and b/img/resources/azure/integration/api-connections.png differ diff --git a/img/resources/azure/integration/api-management-services.png b/img/resources/azure/integration/api-management-services.png new file mode 100644 index 00000000..1d80a49e Binary files /dev/null and b/img/resources/azure/integration/api-management-services.png differ diff --git a/img/resources/azure/integration/app-configuration.png b/img/resources/azure/integration/app-configuration.png index 118ba220..67548d0e 100644 Binary files a/img/resources/azure/integration/app-configuration.png and b/img/resources/azure/integration/app-configuration.png differ diff --git a/img/resources/azure/integration/azure-api-for-fhir.png b/img/resources/azure/integration/azure-api-for-fhir.png new file mode 100644 index 00000000..2dbea0d4 Binary files /dev/null and b/img/resources/azure/integration/azure-api-for-fhir.png differ diff --git a/img/resources/azure/integration/azure-data-catalog.png b/img/resources/azure/integration/azure-data-catalog.png new file mode 100644 index 00000000..11e626e5 Binary files /dev/null and b/img/resources/azure/integration/azure-data-catalog.png differ diff --git a/img/resources/azure/integration/azure-databox-gateway.png b/img/resources/azure/integration/azure-databox-gateway.png new file mode 100644 index 00000000..2a469411 Binary files /dev/null and b/img/resources/azure/integration/azure-databox-gateway.png differ diff --git a/img/resources/azure/integration/azure-service-bus.png b/img/resources/azure/integration/azure-service-bus.png new file mode 100644 index 00000000..36118ab5 Binary files /dev/null and b/img/resources/azure/integration/azure-service-bus.png differ diff --git a/img/resources/azure/integration/azure-sql-server-stretch-databases.png b/img/resources/azure/integration/azure-sql-server-stretch-databases.png new file mode 100644 index 00000000..173af0f3 Binary files /dev/null and b/img/resources/azure/integration/azure-sql-server-stretch-databases.png differ diff --git a/img/resources/azure/integration/azure-stack-edge.png b/img/resources/azure/integration/azure-stack-edge.png new file mode 100644 index 00000000..c30de5ea Binary files /dev/null and b/img/resources/azure/integration/azure-stack-edge.png differ diff --git a/img/resources/azure/integration/data-factories.png b/img/resources/azure/integration/data-factories.png new file mode 100644 index 00000000..d3e5f045 Binary files /dev/null and b/img/resources/azure/integration/data-factories.png differ diff --git a/img/resources/azure/integration/event-grid-domains.png b/img/resources/azure/integration/event-grid-domains.png index 1afb4cce..73b072e2 100644 Binary files a/img/resources/azure/integration/event-grid-domains.png and b/img/resources/azure/integration/event-grid-domains.png differ diff --git a/img/resources/azure/integration/event-grid-subscriptions.png b/img/resources/azure/integration/event-grid-subscriptions.png index 1afb4cce..73b072e2 100644 Binary files a/img/resources/azure/integration/event-grid-subscriptions.png and b/img/resources/azure/integration/event-grid-subscriptions.png differ diff --git a/img/resources/azure/integration/event-grid-topics.png b/img/resources/azure/integration/event-grid-topics.png index 7abea6f2..3107865e 100644 Binary files a/img/resources/azure/integration/event-grid-topics.png and b/img/resources/azure/integration/event-grid-topics.png differ diff --git a/img/resources/azure/integration/integration-accounts.png b/img/resources/azure/integration/integration-accounts.png index ab0508b6..2c8fa0af 100644 Binary files a/img/resources/azure/integration/integration-accounts.png and b/img/resources/azure/integration/integration-accounts.png differ diff --git a/img/resources/azure/integration/integration-environments.png b/img/resources/azure/integration/integration-environments.png new file mode 100644 index 00000000..6bc6dd8a Binary files /dev/null and b/img/resources/azure/integration/integration-environments.png differ diff --git a/img/resources/azure/integration/integration-service-environments.png b/img/resources/azure/integration/integration-service-environments.png index 52f8e088..6878d37c 100644 Binary files a/img/resources/azure/integration/integration-service-environments.png and b/img/resources/azure/integration/integration-service-environments.png differ diff --git a/img/resources/azure/integration/logic-apps-custom-connector.png b/img/resources/azure/integration/logic-apps-custom-connector.png index ebd6862c..25608c16 100644 Binary files a/img/resources/azure/integration/logic-apps-custom-connector.png and b/img/resources/azure/integration/logic-apps-custom-connector.png differ diff --git a/img/resources/azure/integration/logic-apps.png b/img/resources/azure/integration/logic-apps.png index 1736c11b..3a3afff8 100644 Binary files a/img/resources/azure/integration/logic-apps.png and b/img/resources/azure/integration/logic-apps.png differ diff --git a/img/resources/azure/integration/partner-namespace.png b/img/resources/azure/integration/partner-namespace.png new file mode 100644 index 00000000..274cb647 Binary files /dev/null and b/img/resources/azure/integration/partner-namespace.png differ diff --git a/img/resources/azure/integration/partner-registration.png b/img/resources/azure/integration/partner-registration.png new file mode 100644 index 00000000..097c73b1 Binary files /dev/null and b/img/resources/azure/integration/partner-registration.png differ diff --git a/img/resources/azure/integration/partner-topic.png b/img/resources/azure/integration/partner-topic.png index 9b69ecf7..7c91abab 100644 Binary files a/img/resources/azure/integration/partner-topic.png and b/img/resources/azure/integration/partner-topic.png differ diff --git a/img/resources/azure/integration/power-platform.png b/img/resources/azure/integration/power-platform.png new file mode 100644 index 00000000..d5278841 Binary files /dev/null and b/img/resources/azure/integration/power-platform.png differ diff --git a/img/resources/azure/integration/relays.png b/img/resources/azure/integration/relays.png new file mode 100644 index 00000000..8c798081 Binary files /dev/null and b/img/resources/azure/integration/relays.png differ diff --git a/img/resources/azure/integration/sendgrid-accounts.png b/img/resources/azure/integration/sendgrid-accounts.png index ee06bb15..d348256e 100644 Binary files a/img/resources/azure/integration/sendgrid-accounts.png and b/img/resources/azure/integration/sendgrid-accounts.png differ diff --git a/img/resources/azure/integration/software-as-a-service.png b/img/resources/azure/integration/software-as-a-service.png index ec6dbf36..4f5391f4 100644 Binary files a/img/resources/azure/integration/software-as-a-service.png and b/img/resources/azure/integration/software-as-a-service.png differ diff --git a/img/resources/azure/integration/sql-data-warehouses.png b/img/resources/azure/integration/sql-data-warehouses.png new file mode 100644 index 00000000..173af0f3 Binary files /dev/null and b/img/resources/azure/integration/sql-data-warehouses.png differ diff --git a/img/resources/azure/integration/storsimple-device-managers.png b/img/resources/azure/integration/storsimple-device-managers.png index 2d67886b..e9c47810 100644 Binary files a/img/resources/azure/integration/storsimple-device-managers.png and b/img/resources/azure/integration/storsimple-device-managers.png differ diff --git a/img/resources/azure/integration/system-topic.png b/img/resources/azure/integration/system-topic.png index 41ea1a0b..32ebc259 100644 Binary files a/img/resources/azure/integration/system-topic.png and b/img/resources/azure/integration/system-topic.png differ diff --git a/img/resources/azure/intune/azure-ad-roles-and-administrators.png b/img/resources/azure/intune/azure-ad-roles-and-administrators.png new file mode 100644 index 00000000..e825e200 Binary files /dev/null and b/img/resources/azure/intune/azure-ad-roles-and-administrators.png differ diff --git a/img/resources/azure/intune/client-apps.png b/img/resources/azure/intune/client-apps.png new file mode 100644 index 00000000..91371c18 Binary files /dev/null and b/img/resources/azure/intune/client-apps.png differ diff --git a/img/resources/azure/intune/device-compliance.png b/img/resources/azure/intune/device-compliance.png new file mode 100644 index 00000000..3b7edff8 Binary files /dev/null and b/img/resources/azure/intune/device-compliance.png differ diff --git a/img/resources/azure/intune/device-configuration.png b/img/resources/azure/intune/device-configuration.png new file mode 100644 index 00000000..c57106db Binary files /dev/null and b/img/resources/azure/intune/device-configuration.png differ diff --git a/img/resources/azure/intune/device-enrollment.png b/img/resources/azure/intune/device-enrollment.png new file mode 100644 index 00000000..a77b4911 Binary files /dev/null and b/img/resources/azure/intune/device-enrollment.png differ diff --git a/img/resources/azure/intune/device-security-apple.png b/img/resources/azure/intune/device-security-apple.png new file mode 100644 index 00000000..44a17876 Binary files /dev/null and b/img/resources/azure/intune/device-security-apple.png differ diff --git a/img/resources/azure/intune/device-security-google.png b/img/resources/azure/intune/device-security-google.png new file mode 100644 index 00000000..47084f24 Binary files /dev/null and b/img/resources/azure/intune/device-security-google.png differ diff --git a/img/resources/azure/intune/device-security-windows.png b/img/resources/azure/intune/device-security-windows.png new file mode 100644 index 00000000..43f558d9 Binary files /dev/null and b/img/resources/azure/intune/device-security-windows.png differ diff --git a/img/resources/azure/intune/devices.png b/img/resources/azure/intune/devices.png new file mode 100644 index 00000000..4b0c0325 Binary files /dev/null and b/img/resources/azure/intune/devices.png differ diff --git a/img/resources/azure/intune/ebooks.png b/img/resources/azure/intune/ebooks.png new file mode 100644 index 00000000..82501f8a Binary files /dev/null and b/img/resources/azure/intune/ebooks.png differ diff --git a/img/resources/azure/intune/exchange-access.png b/img/resources/azure/intune/exchange-access.png new file mode 100644 index 00000000..a3fe6770 Binary files /dev/null and b/img/resources/azure/intune/exchange-access.png differ diff --git a/img/resources/azure/intune/intune-app-protection.png b/img/resources/azure/intune/intune-app-protection.png new file mode 100644 index 00000000..c2c2ce56 Binary files /dev/null and b/img/resources/azure/intune/intune-app-protection.png differ diff --git a/img/resources/azure/intune/intune-for-education.png b/img/resources/azure/intune/intune-for-education.png new file mode 100644 index 00000000..c2c2ce56 Binary files /dev/null and b/img/resources/azure/intune/intune-for-education.png differ diff --git a/img/resources/azure/intune/intune.png b/img/resources/azure/intune/intune.png new file mode 100644 index 00000000..c2c2ce56 Binary files /dev/null and b/img/resources/azure/intune/intune.png differ diff --git a/img/resources/azure/intune/mindaro.png b/img/resources/azure/intune/mindaro.png new file mode 100644 index 00000000..4e3dbab9 Binary files /dev/null and b/img/resources/azure/intune/mindaro.png differ diff --git a/img/resources/azure/intune/security-baselines.png b/img/resources/azure/intune/security-baselines.png new file mode 100644 index 00000000..c2b5365d Binary files /dev/null and b/img/resources/azure/intune/security-baselines.png differ diff --git a/img/resources/azure/intune/software-updates.png b/img/resources/azure/intune/software-updates.png new file mode 100644 index 00000000..8dca0a7f Binary files /dev/null and b/img/resources/azure/intune/software-updates.png differ diff --git a/img/resources/azure/intune/tenant-status.png b/img/resources/azure/intune/tenant-status.png new file mode 100644 index 00000000..9ed667ff Binary files /dev/null and b/img/resources/azure/intune/tenant-status.png differ diff --git a/img/resources/azure/iot/azure-cosmos-db.png b/img/resources/azure/iot/azure-cosmos-db.png new file mode 100644 index 00000000..75a29093 Binary files /dev/null and b/img/resources/azure/iot/azure-cosmos-db.png differ diff --git a/img/resources/azure/iot/azure-databox-gateway.png b/img/resources/azure/iot/azure-databox-gateway.png new file mode 100644 index 00000000..2a469411 Binary files /dev/null and b/img/resources/azure/iot/azure-databox-gateway.png differ diff --git a/img/resources/azure/iot/azure-iot-operations.png b/img/resources/azure/iot/azure-iot-operations.png new file mode 100644 index 00000000..1a7f6668 Binary files /dev/null and b/img/resources/azure/iot/azure-iot-operations.png differ diff --git a/img/resources/azure/iot/azure-maps-accounts.png b/img/resources/azure/iot/azure-maps-accounts.png new file mode 100644 index 00000000..0165ffcb Binary files /dev/null and b/img/resources/azure/iot/azure-maps-accounts.png differ diff --git a/img/resources/azure/iot/azure-stack.png b/img/resources/azure/iot/azure-stack.png new file mode 100644 index 00000000..4b92a3cf Binary files /dev/null and b/img/resources/azure/iot/azure-stack.png differ diff --git a/img/resources/azure/iot/device-provisioning-services.png b/img/resources/azure/iot/device-provisioning-services.png index b999e1a7..4bcdf8ed 100644 Binary files a/img/resources/azure/iot/device-provisioning-services.png and b/img/resources/azure/iot/device-provisioning-services.png differ diff --git a/img/resources/azure/iot/digital-twins.png b/img/resources/azure/iot/digital-twins.png index bc43ebbd..3aa9888d 100644 Binary files a/img/resources/azure/iot/digital-twins.png and b/img/resources/azure/iot/digital-twins.png differ diff --git a/img/resources/azure/iot/event-grid-subscriptions.png b/img/resources/azure/iot/event-grid-subscriptions.png new file mode 100644 index 00000000..73b072e2 Binary files /dev/null and b/img/resources/azure/iot/event-grid-subscriptions.png differ diff --git a/img/resources/azure/iot/event-hub-clusters.png b/img/resources/azure/iot/event-hub-clusters.png new file mode 100644 index 00000000..af6e2a61 Binary files /dev/null and b/img/resources/azure/iot/event-hub-clusters.png differ diff --git a/img/resources/azure/iot/event-hubs.png b/img/resources/azure/iot/event-hubs.png new file mode 100644 index 00000000..498349e7 Binary files /dev/null and b/img/resources/azure/iot/event-hubs.png differ diff --git a/img/resources/azure/iot/function-apps.png b/img/resources/azure/iot/function-apps.png new file mode 100644 index 00000000..0d0bdfa8 Binary files /dev/null and b/img/resources/azure/iot/function-apps.png differ diff --git a/img/resources/azure/iot/industrial-iot.png b/img/resources/azure/iot/industrial-iot.png new file mode 100644 index 00000000..e85c49be Binary files /dev/null and b/img/resources/azure/iot/industrial-iot.png differ diff --git a/img/resources/azure/iot/iot-central-applications.png b/img/resources/azure/iot/iot-central-applications.png index e0521306..4430c4a6 100644 Binary files a/img/resources/azure/iot/iot-central-applications.png and b/img/resources/azure/iot/iot-central-applications.png differ diff --git a/img/resources/azure/iot/iot-edge.png b/img/resources/azure/iot/iot-edge.png new file mode 100644 index 00000000..018a456d Binary files /dev/null and b/img/resources/azure/iot/iot-edge.png differ diff --git a/img/resources/azure/iot/iot-hub.png b/img/resources/azure/iot/iot-hub.png index 27a2df7a..26f3be03 100644 Binary files a/img/resources/azure/iot/iot-hub.png and b/img/resources/azure/iot/iot-hub.png differ diff --git a/img/resources/azure/iot/logic-apps.png b/img/resources/azure/iot/logic-apps.png new file mode 100644 index 00000000..3a3afff8 Binary files /dev/null and b/img/resources/azure/iot/logic-apps.png differ diff --git a/img/resources/azure/iot/machine-learning-studio-classic-web-services.png b/img/resources/azure/iot/machine-learning-studio-classic-web-services.png new file mode 100644 index 00000000..69a8360a Binary files /dev/null and b/img/resources/azure/iot/machine-learning-studio-classic-web-services.png differ diff --git a/img/resources/azure/iot/machine-learning-studio-web-service-plans.png b/img/resources/azure/iot/machine-learning-studio-web-service-plans.png new file mode 100644 index 00000000..096877c6 Binary files /dev/null and b/img/resources/azure/iot/machine-learning-studio-web-service-plans.png differ diff --git a/img/resources/azure/iot/machine-learning-studio-workspaces.png b/img/resources/azure/iot/machine-learning-studio-workspaces.png new file mode 100644 index 00000000..7a466328 Binary files /dev/null and b/img/resources/azure/iot/machine-learning-studio-workspaces.png differ diff --git a/img/resources/azure/iot/notification-hub-namespaces.png b/img/resources/azure/iot/notification-hub-namespaces.png new file mode 100644 index 00000000..9aaa0ba0 Binary files /dev/null and b/img/resources/azure/iot/notification-hub-namespaces.png differ diff --git a/img/resources/azure/iot/notification-hubs.png b/img/resources/azure/iot/notification-hubs.png new file mode 100644 index 00000000..9aaa0ba0 Binary files /dev/null and b/img/resources/azure/iot/notification-hubs.png differ diff --git a/img/resources/azure/iot/stack-hci-premium.png b/img/resources/azure/iot/stack-hci-premium.png new file mode 100644 index 00000000..63e34c5e Binary files /dev/null and b/img/resources/azure/iot/stack-hci-premium.png differ diff --git a/img/resources/azure/iot/stream-analytics-jobs.png b/img/resources/azure/iot/stream-analytics-jobs.png new file mode 100644 index 00000000..9d6da114 Binary files /dev/null and b/img/resources/azure/iot/stream-analytics-jobs.png differ diff --git a/img/resources/azure/iot/time-series-data-sets.png b/img/resources/azure/iot/time-series-data-sets.png new file mode 100644 index 00000000..53b0668d Binary files /dev/null and b/img/resources/azure/iot/time-series-data-sets.png differ diff --git a/img/resources/azure/iot/time-series-insights-access-policies.png b/img/resources/azure/iot/time-series-insights-access-policies.png new file mode 100644 index 00000000..f741c1f9 Binary files /dev/null and b/img/resources/azure/iot/time-series-insights-access-policies.png differ diff --git a/img/resources/azure/iot/time-series-insights-environments.png b/img/resources/azure/iot/time-series-insights-environments.png index 12b1c742..695b4784 100644 Binary files a/img/resources/azure/iot/time-series-insights-environments.png and b/img/resources/azure/iot/time-series-insights-environments.png differ diff --git a/img/resources/azure/iot/time-series-insights-event-sources.png b/img/resources/azure/iot/time-series-insights-event-sources.png new file mode 100644 index 00000000..5eb332f4 Binary files /dev/null and b/img/resources/azure/iot/time-series-insights-event-sources.png differ diff --git a/img/resources/azure/iot/windows10-core-services.png b/img/resources/azure/iot/windows10-core-services.png new file mode 100644 index 00000000..204054cd Binary files /dev/null and b/img/resources/azure/iot/windows10-core-services.png differ diff --git a/img/resources/azure/managementgovernance/activity-log.png b/img/resources/azure/managementgovernance/activity-log.png new file mode 100644 index 00000000..7cb72c4b Binary files /dev/null and b/img/resources/azure/managementgovernance/activity-log.png differ diff --git a/img/resources/azure/managementgovernance/advisor.png b/img/resources/azure/managementgovernance/advisor.png new file mode 100644 index 00000000..79c11ce9 Binary files /dev/null and b/img/resources/azure/managementgovernance/advisor.png differ diff --git a/img/resources/azure/managementgovernance/alerts.png b/img/resources/azure/managementgovernance/alerts.png new file mode 100644 index 00000000..e2bda9b8 Binary files /dev/null and b/img/resources/azure/managementgovernance/alerts.png differ diff --git a/img/resources/azure/managementgovernance/application-insights.png b/img/resources/azure/managementgovernance/application-insights.png new file mode 100644 index 00000000..101f109c Binary files /dev/null and b/img/resources/azure/managementgovernance/application-insights.png differ diff --git a/img/resources/azure/managementgovernance/arc-machines.png b/img/resources/azure/managementgovernance/arc-machines.png new file mode 100644 index 00000000..5bb91357 Binary files /dev/null and b/img/resources/azure/managementgovernance/arc-machines.png differ diff --git a/img/resources/azure/managementgovernance/automation-accounts.png b/img/resources/azure/managementgovernance/automation-accounts.png new file mode 100644 index 00000000..88b0a63f Binary files /dev/null and b/img/resources/azure/managementgovernance/automation-accounts.png differ diff --git a/img/resources/azure/managementgovernance/azure-arc.png b/img/resources/azure/managementgovernance/azure-arc.png new file mode 100644 index 00000000..2d0eb727 Binary files /dev/null and b/img/resources/azure/managementgovernance/azure-arc.png differ diff --git a/img/resources/azure/managementgovernance/azure-lighthouse.png b/img/resources/azure/managementgovernance/azure-lighthouse.png new file mode 100644 index 00000000..3806ff41 Binary files /dev/null and b/img/resources/azure/managementgovernance/azure-lighthouse.png differ diff --git a/img/resources/azure/managementgovernance/blueprints.png b/img/resources/azure/managementgovernance/blueprints.png new file mode 100644 index 00000000..4cbb735c Binary files /dev/null and b/img/resources/azure/managementgovernance/blueprints.png differ diff --git a/img/resources/azure/managementgovernance/compliance.png b/img/resources/azure/managementgovernance/compliance.png new file mode 100644 index 00000000..eedc8037 Binary files /dev/null and b/img/resources/azure/managementgovernance/compliance.png differ diff --git a/img/resources/azure/managementgovernance/cost-management-and-billing.png b/img/resources/azure/managementgovernance/cost-management-and-billing.png new file mode 100644 index 00000000..ee823c94 Binary files /dev/null and b/img/resources/azure/managementgovernance/cost-management-and-billing.png differ diff --git a/img/resources/azure/managementgovernance/customer-lockbox-for-microsoft-azure.png b/img/resources/azure/managementgovernance/customer-lockbox-for-microsoft-azure.png new file mode 100644 index 00000000..b29f2129 Binary files /dev/null and b/img/resources/azure/managementgovernance/customer-lockbox-for-microsoft-azure.png differ diff --git a/img/resources/azure/managementgovernance/diagnostics-settings.png b/img/resources/azure/managementgovernance/diagnostics-settings.png new file mode 100644 index 00000000..4cfda453 Binary files /dev/null and b/img/resources/azure/managementgovernance/diagnostics-settings.png differ diff --git a/img/resources/azure/managementgovernance/education.png b/img/resources/azure/managementgovernance/education.png new file mode 100644 index 00000000..e3defdc0 Binary files /dev/null and b/img/resources/azure/managementgovernance/education.png differ diff --git a/img/resources/azure/managementgovernance/intune-trends.png b/img/resources/azure/managementgovernance/intune-trends.png new file mode 100644 index 00000000..4f87993c Binary files /dev/null and b/img/resources/azure/managementgovernance/intune-trends.png differ diff --git a/img/resources/azure/managementgovernance/log-analytics-workspaces.png b/img/resources/azure/managementgovernance/log-analytics-workspaces.png new file mode 100644 index 00000000..85d72ddd Binary files /dev/null and b/img/resources/azure/managementgovernance/log-analytics-workspaces.png differ diff --git a/img/resources/azure/managementgovernance/machinesazurearc.png b/img/resources/azure/managementgovernance/machinesazurearc.png new file mode 100644 index 00000000..7d15c102 Binary files /dev/null and b/img/resources/azure/managementgovernance/machinesazurearc.png differ diff --git a/img/resources/azure/managementgovernance/managed-applications-center.png b/img/resources/azure/managementgovernance/managed-applications-center.png new file mode 100644 index 00000000..ec24923b Binary files /dev/null and b/img/resources/azure/managementgovernance/managed-applications-center.png differ diff --git a/img/resources/azure/managementgovernance/managed-desktop.png b/img/resources/azure/managementgovernance/managed-desktop.png new file mode 100644 index 00000000..ebf204d3 Binary files /dev/null and b/img/resources/azure/managementgovernance/managed-desktop.png differ diff --git a/img/resources/azure/managementgovernance/metrics.png b/img/resources/azure/managementgovernance/metrics.png new file mode 100644 index 00000000..149a4e3b Binary files /dev/null and b/img/resources/azure/managementgovernance/metrics.png differ diff --git a/img/resources/azure/managementgovernance/monitor.png b/img/resources/azure/managementgovernance/monitor.png new file mode 100644 index 00000000..96d22580 Binary files /dev/null and b/img/resources/azure/managementgovernance/monitor.png differ diff --git a/img/resources/azure/managementgovernance/my-customers.png b/img/resources/azure/managementgovernance/my-customers.png new file mode 100644 index 00000000..031e2ee7 Binary files /dev/null and b/img/resources/azure/managementgovernance/my-customers.png differ diff --git a/img/resources/azure/managementgovernance/operation-log-classic.png b/img/resources/azure/managementgovernance/operation-log-classic.png new file mode 100644 index 00000000..7cb72c4b Binary files /dev/null and b/img/resources/azure/managementgovernance/operation-log-classic.png differ diff --git a/img/resources/azure/managementgovernance/policy.png b/img/resources/azure/managementgovernance/policy.png new file mode 100644 index 00000000..1beb0330 Binary files /dev/null and b/img/resources/azure/managementgovernance/policy.png differ diff --git a/img/resources/azure/managementgovernance/recovery-services-vaults.png b/img/resources/azure/managementgovernance/recovery-services-vaults.png new file mode 100644 index 00000000..e53f158e Binary files /dev/null and b/img/resources/azure/managementgovernance/recovery-services-vaults.png differ diff --git a/img/resources/azure/managementgovernance/resource-graph-explorer.png b/img/resources/azure/managementgovernance/resource-graph-explorer.png new file mode 100644 index 00000000..b8dc058e Binary files /dev/null and b/img/resources/azure/managementgovernance/resource-graph-explorer.png differ diff --git a/img/resources/azure/managementgovernance/resources-provider.png b/img/resources/azure/managementgovernance/resources-provider.png new file mode 100644 index 00000000..9460519b Binary files /dev/null and b/img/resources/azure/managementgovernance/resources-provider.png differ diff --git a/img/resources/azure/managementgovernance/scheduler-job-collections.png b/img/resources/azure/managementgovernance/scheduler-job-collections.png new file mode 100644 index 00000000..d12b746a Binary files /dev/null and b/img/resources/azure/managementgovernance/scheduler-job-collections.png differ diff --git a/img/resources/azure/managementgovernance/service-catalog-mad.png b/img/resources/azure/managementgovernance/service-catalog-mad.png new file mode 100644 index 00000000..5b47e0e2 Binary files /dev/null and b/img/resources/azure/managementgovernance/service-catalog-mad.png differ diff --git a/img/resources/azure/managementgovernance/service-providers.png b/img/resources/azure/managementgovernance/service-providers.png new file mode 100644 index 00000000..94dce95b Binary files /dev/null and b/img/resources/azure/managementgovernance/service-providers.png differ diff --git a/img/resources/azure/managementgovernance/solutions.png b/img/resources/azure/managementgovernance/solutions.png new file mode 100644 index 00000000..2e8d2ce2 Binary files /dev/null and b/img/resources/azure/managementgovernance/solutions.png differ diff --git a/img/resources/azure/managementgovernance/universal-print.png b/img/resources/azure/managementgovernance/universal-print.png new file mode 100644 index 00000000..8137455b Binary files /dev/null and b/img/resources/azure/managementgovernance/universal-print.png differ diff --git a/img/resources/azure/managementgovernance/user-privacy.png b/img/resources/azure/managementgovernance/user-privacy.png new file mode 100644 index 00000000..1c697cd5 Binary files /dev/null and b/img/resources/azure/managementgovernance/user-privacy.png differ diff --git a/img/resources/azure/menu/keys.png b/img/resources/azure/menu/keys.png new file mode 100644 index 00000000..6a262a80 Binary files /dev/null and b/img/resources/azure/menu/keys.png differ diff --git a/img/resources/azure/migrate/azure-databox-gateway.png b/img/resources/azure/migrate/azure-databox-gateway.png new file mode 100644 index 00000000..2a469411 Binary files /dev/null and b/img/resources/azure/migrate/azure-databox-gateway.png differ diff --git a/img/resources/azure/migrate/azure-migrate.png b/img/resources/azure/migrate/azure-migrate.png new file mode 100644 index 00000000..86df1637 Binary files /dev/null and b/img/resources/azure/migrate/azure-migrate.png differ diff --git a/img/resources/azure/migrate/azure-stack-edge.png b/img/resources/azure/migrate/azure-stack-edge.png new file mode 100644 index 00000000..c30de5ea Binary files /dev/null and b/img/resources/azure/migrate/azure-stack-edge.png differ diff --git a/img/resources/azure/migrate/cost-management-and-billing.png b/img/resources/azure/migrate/cost-management-and-billing.png new file mode 100644 index 00000000..ee823c94 Binary files /dev/null and b/img/resources/azure/migrate/cost-management-and-billing.png differ diff --git a/img/resources/azure/migrate/data-box.png b/img/resources/azure/migrate/data-box.png new file mode 100644 index 00000000..0806ab73 Binary files /dev/null and b/img/resources/azure/migrate/data-box.png differ diff --git a/img/resources/azure/migrate/recovery-services-vaults.png b/img/resources/azure/migrate/recovery-services-vaults.png new file mode 100644 index 00000000..e53f158e Binary files /dev/null and b/img/resources/azure/migrate/recovery-services-vaults.png differ diff --git a/img/resources/azure/migration/azure-database-migration-services.png b/img/resources/azure/migration/azure-database-migration-services.png new file mode 100644 index 00000000..121f91f9 Binary files /dev/null and b/img/resources/azure/migration/azure-database-migration-services.png differ diff --git a/img/resources/azure/mixedreality/remote-rendering.png b/img/resources/azure/mixedreality/remote-rendering.png new file mode 100644 index 00000000..251bd454 Binary files /dev/null and b/img/resources/azure/mixedreality/remote-rendering.png differ diff --git a/img/resources/azure/mixedreality/spatial-anchor-accounts.png b/img/resources/azure/mixedreality/spatial-anchor-accounts.png new file mode 100644 index 00000000..64ddf3e6 Binary files /dev/null and b/img/resources/azure/mixedreality/spatial-anchor-accounts.png differ diff --git a/img/resources/azure/ml/azure-speech-service.png b/img/resources/azure/ml/azure-speech-service.png new file mode 100644 index 00000000..aa372454 Binary files /dev/null and b/img/resources/azure/ml/azure-speech-service.png differ diff --git a/img/resources/azure/ml/azure-speed-to-text.png b/img/resources/azure/ml/azure-speed-to-text.png deleted file mode 100644 index 87018508..00000000 Binary files a/img/resources/azure/ml/azure-speed-to-text.png and /dev/null differ diff --git a/img/resources/azure/mobile/app-services.png b/img/resources/azure/mobile/app-services.png new file mode 100644 index 00000000..5fe6dcb8 Binary files /dev/null and b/img/resources/azure/mobile/app-services.png differ diff --git a/img/resources/azure/mobile/notification-hubs.png b/img/resources/azure/mobile/notification-hubs.png index 6380429c..9aaa0ba0 100644 Binary files a/img/resources/azure/mobile/notification-hubs.png and b/img/resources/azure/mobile/notification-hubs.png differ diff --git a/img/resources/azure/mobile/power-platform.png b/img/resources/azure/mobile/power-platform.png new file mode 100644 index 00000000..d5278841 Binary files /dev/null and b/img/resources/azure/mobile/power-platform.png differ diff --git a/img/resources/azure/monitor/activity-log.png b/img/resources/azure/monitor/activity-log.png new file mode 100644 index 00000000..7cb72c4b Binary files /dev/null and b/img/resources/azure/monitor/activity-log.png differ diff --git a/img/resources/azure/monitor/application-insights.png b/img/resources/azure/monitor/application-insights.png new file mode 100644 index 00000000..101f109c Binary files /dev/null and b/img/resources/azure/monitor/application-insights.png differ diff --git a/img/resources/azure/monitor/auto-scale.png b/img/resources/azure/monitor/auto-scale.png new file mode 100644 index 00000000..b83a67f0 Binary files /dev/null and b/img/resources/azure/monitor/auto-scale.png differ diff --git a/img/resources/azure/monitor/azure-monitors-for-sap-solutions.png b/img/resources/azure/monitor/azure-monitors-for-sap-solutions.png new file mode 100644 index 00000000..918f2418 Binary files /dev/null and b/img/resources/azure/monitor/azure-monitors-for-sap-solutions.png differ diff --git a/img/resources/azure/monitor/azure-workbooks.png b/img/resources/azure/monitor/azure-workbooks.png new file mode 100644 index 00000000..bf747377 Binary files /dev/null and b/img/resources/azure/monitor/azure-workbooks.png differ diff --git a/img/resources/azure/monitor/change-analysis.png b/img/resources/azure/monitor/change-analysis.png index 64c48104..a01f9815 100644 Binary files a/img/resources/azure/monitor/change-analysis.png and b/img/resources/azure/monitor/change-analysis.png differ diff --git a/img/resources/azure/monitor/diagnostics-settings.png b/img/resources/azure/monitor/diagnostics-settings.png new file mode 100644 index 00000000..4cfda453 Binary files /dev/null and b/img/resources/azure/monitor/diagnostics-settings.png differ diff --git a/img/resources/azure/monitor/log-analytics-workspaces.png b/img/resources/azure/monitor/log-analytics-workspaces.png new file mode 100644 index 00000000..85d72ddd Binary files /dev/null and b/img/resources/azure/monitor/log-analytics-workspaces.png differ diff --git a/img/resources/azure/monitor/metrics.png b/img/resources/azure/monitor/metrics.png index f65cc4e1..149a4e3b 100644 Binary files a/img/resources/azure/monitor/metrics.png and b/img/resources/azure/monitor/metrics.png differ diff --git a/img/resources/azure/monitor/monitor.png b/img/resources/azure/monitor/monitor.png index 3df4be60..96d22580 100644 Binary files a/img/resources/azure/monitor/monitor.png and b/img/resources/azure/monitor/monitor.png differ diff --git a/img/resources/azure/monitor/network-watcher.png b/img/resources/azure/monitor/network-watcher.png new file mode 100644 index 00000000..98528052 Binary files /dev/null and b/img/resources/azure/monitor/network-watcher.png differ diff --git a/img/resources/azure/networking/application-gateways.png b/img/resources/azure/networking/application-gateways.png new file mode 100644 index 00000000..46163106 Binary files /dev/null and b/img/resources/azure/networking/application-gateways.png differ diff --git a/img/resources/azure/networking/atm-multistack.png b/img/resources/azure/networking/atm-multistack.png new file mode 100644 index 00000000..065f08ad Binary files /dev/null and b/img/resources/azure/networking/atm-multistack.png differ diff --git a/img/resources/azure/networking/azure-communications-gateway.png b/img/resources/azure/networking/azure-communications-gateway.png new file mode 100644 index 00000000..c8bf236f Binary files /dev/null and b/img/resources/azure/networking/azure-communications-gateway.png differ diff --git a/img/resources/azure/networking/azure-firewall-manager.png b/img/resources/azure/networking/azure-firewall-manager.png new file mode 100644 index 00000000..0f525aa3 Binary files /dev/null and b/img/resources/azure/networking/azure-firewall-manager.png differ diff --git a/img/resources/azure/networking/azure-firewall-policy.png b/img/resources/azure/networking/azure-firewall-policy.png new file mode 100644 index 00000000..7f8a231b Binary files /dev/null and b/img/resources/azure/networking/azure-firewall-policy.png differ diff --git a/img/resources/azure/networking/bastions.png b/img/resources/azure/networking/bastions.png new file mode 100644 index 00000000..cf134f6b Binary files /dev/null and b/img/resources/azure/networking/bastions.png differ diff --git a/img/resources/azure/networking/cdn-profiles.png b/img/resources/azure/networking/cdn-profiles.png new file mode 100644 index 00000000..5789e38f Binary files /dev/null and b/img/resources/azure/networking/cdn-profiles.png differ diff --git a/img/resources/azure/networking/connected-cache.png b/img/resources/azure/networking/connected-cache.png new file mode 100644 index 00000000..255b7255 Binary files /dev/null and b/img/resources/azure/networking/connected-cache.png differ diff --git a/img/resources/azure/networking/connections.png b/img/resources/azure/networking/connections.png new file mode 100644 index 00000000..d08e8ebb Binary files /dev/null and b/img/resources/azure/networking/connections.png differ diff --git a/img/resources/azure/networking/ddos-protection-plans.png b/img/resources/azure/networking/ddos-protection-plans.png new file mode 100644 index 00000000..c956b804 Binary files /dev/null and b/img/resources/azure/networking/ddos-protection-plans.png differ diff --git a/img/resources/azure/networking/dns-multistack.png b/img/resources/azure/networking/dns-multistack.png new file mode 100644 index 00000000..ea11bb25 Binary files /dev/null and b/img/resources/azure/networking/dns-multistack.png differ diff --git a/img/resources/azure/networking/dns-private-resolver.png b/img/resources/azure/networking/dns-private-resolver.png new file mode 100644 index 00000000..c21ab2e4 Binary files /dev/null and b/img/resources/azure/networking/dns-private-resolver.png differ diff --git a/img/resources/azure/networking/dns-security-policy.png b/img/resources/azure/networking/dns-security-policy.png new file mode 100644 index 00000000..17ffe5cf Binary files /dev/null and b/img/resources/azure/networking/dns-security-policy.png differ diff --git a/img/resources/azure/networking/dns-zones.png b/img/resources/azure/networking/dns-zones.png new file mode 100644 index 00000000..c2d87f88 Binary files /dev/null and b/img/resources/azure/networking/dns-zones.png differ diff --git a/img/resources/azure/networking/expressroute-circuits.png b/img/resources/azure/networking/expressroute-circuits.png new file mode 100644 index 00000000..93bcb604 Binary files /dev/null and b/img/resources/azure/networking/expressroute-circuits.png differ diff --git a/img/resources/azure/networking/firewalls.png b/img/resources/azure/networking/firewalls.png new file mode 100644 index 00000000..52b3cdee Binary files /dev/null and b/img/resources/azure/networking/firewalls.png differ diff --git a/img/resources/azure/networking/front-door-and-cdn-profiles.png b/img/resources/azure/networking/front-door-and-cdn-profiles.png new file mode 100644 index 00000000..cc43ed73 Binary files /dev/null and b/img/resources/azure/networking/front-door-and-cdn-profiles.png differ diff --git a/img/resources/azure/networking/ip-address-manager.png b/img/resources/azure/networking/ip-address-manager.png new file mode 100644 index 00000000..267ba5f1 Binary files /dev/null and b/img/resources/azure/networking/ip-address-manager.png differ diff --git a/img/resources/azure/networking/ip-groups.png b/img/resources/azure/networking/ip-groups.png new file mode 100644 index 00000000..8446cb75 Binary files /dev/null and b/img/resources/azure/networking/ip-groups.png differ diff --git a/img/resources/azure/networking/load-balancer-hub.png b/img/resources/azure/networking/load-balancer-hub.png new file mode 100644 index 00000000..e1ebef10 Binary files /dev/null and b/img/resources/azure/networking/load-balancer-hub.png differ diff --git a/img/resources/azure/networking/load-balancers.png b/img/resources/azure/networking/load-balancers.png new file mode 100644 index 00000000..5b557a7f Binary files /dev/null and b/img/resources/azure/networking/load-balancers.png differ diff --git a/img/resources/azure/networking/local-network-gateways.png b/img/resources/azure/networking/local-network-gateways.png new file mode 100644 index 00000000..efb57651 Binary files /dev/null and b/img/resources/azure/networking/local-network-gateways.png differ diff --git a/img/resources/azure/networking/nat.png b/img/resources/azure/networking/nat.png new file mode 100644 index 00000000..8f829493 Binary files /dev/null and b/img/resources/azure/networking/nat.png differ diff --git a/img/resources/azure/networking/network-interfaces.png b/img/resources/azure/networking/network-interfaces.png new file mode 100644 index 00000000..a57f7c5d Binary files /dev/null and b/img/resources/azure/networking/network-interfaces.png differ diff --git a/img/resources/azure/networking/network-security-groups.png b/img/resources/azure/networking/network-security-groups.png new file mode 100644 index 00000000..af327870 Binary files /dev/null and b/img/resources/azure/networking/network-security-groups.png differ diff --git a/img/resources/azure/networking/network-watcher.png b/img/resources/azure/networking/network-watcher.png new file mode 100644 index 00000000..98528052 Binary files /dev/null and b/img/resources/azure/networking/network-watcher.png differ diff --git a/img/resources/azure/networking/on-premises-data-gateways.png b/img/resources/azure/networking/on-premises-data-gateways.png new file mode 100644 index 00000000..ff2dc3a6 Binary files /dev/null and b/img/resources/azure/networking/on-premises-data-gateways.png differ diff --git a/img/resources/azure/networking/private-link-service.png b/img/resources/azure/networking/private-link-service.png new file mode 100644 index 00000000..9b8409a5 Binary files /dev/null and b/img/resources/azure/networking/private-link-service.png differ diff --git a/img/resources/azure/networking/private-link-services.png b/img/resources/azure/networking/private-link-services.png new file mode 100644 index 00000000..965131f3 Binary files /dev/null and b/img/resources/azure/networking/private-link-services.png differ diff --git a/img/resources/azure/networking/private-link.png b/img/resources/azure/networking/private-link.png new file mode 100644 index 00000000..2ea1e6db Binary files /dev/null and b/img/resources/azure/networking/private-link.png differ diff --git a/img/resources/azure/networking/proximity-placement-groups.png b/img/resources/azure/networking/proximity-placement-groups.png new file mode 100644 index 00000000..8c3e4b09 Binary files /dev/null and b/img/resources/azure/networking/proximity-placement-groups.png differ diff --git a/img/resources/azure/networking/public-ip-addresses-classic.png b/img/resources/azure/networking/public-ip-addresses-classic.png new file mode 100644 index 00000000..153edfd3 Binary files /dev/null and b/img/resources/azure/networking/public-ip-addresses-classic.png differ diff --git a/img/resources/azure/networking/public-ip-addresses.png b/img/resources/azure/networking/public-ip-addresses.png new file mode 100644 index 00000000..30eac6e9 Binary files /dev/null and b/img/resources/azure/networking/public-ip-addresses.png differ diff --git a/img/resources/azure/networking/public-ip-prefixes.png b/img/resources/azure/networking/public-ip-prefixes.png new file mode 100644 index 00000000..528cf0be Binary files /dev/null and b/img/resources/azure/networking/public-ip-prefixes.png differ diff --git a/img/resources/azure/networking/reserved-ip-addresses-classic.png b/img/resources/azure/networking/reserved-ip-addresses-classic.png new file mode 100644 index 00000000..31717534 Binary files /dev/null and b/img/resources/azure/networking/reserved-ip-addresses-classic.png differ diff --git a/img/resources/azure/networking/resource-management-private-link.png b/img/resources/azure/networking/resource-management-private-link.png new file mode 100644 index 00000000..c1f95929 Binary files /dev/null and b/img/resources/azure/networking/resource-management-private-link.png differ diff --git a/img/resources/azure/networking/route-filters.png b/img/resources/azure/networking/route-filters.png new file mode 100644 index 00000000..9c068abe Binary files /dev/null and b/img/resources/azure/networking/route-filters.png differ diff --git a/img/resources/azure/networking/route-tables.png b/img/resources/azure/networking/route-tables.png new file mode 100644 index 00000000..0106a83b Binary files /dev/null and b/img/resources/azure/networking/route-tables.png differ diff --git a/img/resources/azure/networking/service-endpoint-policies.png b/img/resources/azure/networking/service-endpoint-policies.png new file mode 100644 index 00000000..05129351 Binary files /dev/null and b/img/resources/azure/networking/service-endpoint-policies.png differ diff --git a/img/resources/azure/networking/spot-vm.png b/img/resources/azure/networking/spot-vm.png new file mode 100644 index 00000000..80054965 Binary files /dev/null and b/img/resources/azure/networking/spot-vm.png differ diff --git a/img/resources/azure/networking/spot-vmss.png b/img/resources/azure/networking/spot-vmss.png new file mode 100644 index 00000000..a476484a Binary files /dev/null and b/img/resources/azure/networking/spot-vmss.png differ diff --git a/img/resources/azure/networking/subnet.png b/img/resources/azure/networking/subnet.png new file mode 100644 index 00000000..265e0c85 Binary files /dev/null and b/img/resources/azure/networking/subnet.png differ diff --git a/img/resources/azure/networking/traffic-controller.png b/img/resources/azure/networking/traffic-controller.png new file mode 100644 index 00000000..b0ce8ad0 Binary files /dev/null and b/img/resources/azure/networking/traffic-controller.png differ diff --git a/img/resources/azure/networking/traffic-manager-profiles.png b/img/resources/azure/networking/traffic-manager-profiles.png new file mode 100644 index 00000000..0f9639fc Binary files /dev/null and b/img/resources/azure/networking/traffic-manager-profiles.png differ diff --git a/img/resources/azure/networking/virtual-network-gateways.png b/img/resources/azure/networking/virtual-network-gateways.png new file mode 100644 index 00000000..f8a65e37 Binary files /dev/null and b/img/resources/azure/networking/virtual-network-gateways.png differ diff --git a/img/resources/azure/networking/virtual-networks-classic.png b/img/resources/azure/networking/virtual-networks-classic.png new file mode 100644 index 00000000..6bd27d6a Binary files /dev/null and b/img/resources/azure/networking/virtual-networks-classic.png differ diff --git a/img/resources/azure/networking/virtual-networks.png b/img/resources/azure/networking/virtual-networks.png new file mode 100644 index 00000000..e4f06140 Binary files /dev/null and b/img/resources/azure/networking/virtual-networks.png differ diff --git a/img/resources/azure/networking/virtual-router.png b/img/resources/azure/networking/virtual-router.png new file mode 100644 index 00000000..de049aed Binary files /dev/null and b/img/resources/azure/networking/virtual-router.png differ diff --git a/img/resources/azure/networking/virtual-wan-hub.png b/img/resources/azure/networking/virtual-wan-hub.png new file mode 100644 index 00000000..92e868a7 Binary files /dev/null and b/img/resources/azure/networking/virtual-wan-hub.png differ diff --git a/img/resources/azure/networking/virtual-wans.png b/img/resources/azure/networking/virtual-wans.png new file mode 100644 index 00000000..27a0c5c7 Binary files /dev/null and b/img/resources/azure/networking/virtual-wans.png differ diff --git a/img/resources/azure/networking/web-application-firewall-policieswaf.png b/img/resources/azure/networking/web-application-firewall-policieswaf.png new file mode 100644 index 00000000..29713a32 Binary files /dev/null and b/img/resources/azure/networking/web-application-firewall-policieswaf.png differ diff --git a/img/resources/azure/newicons/azure-sustainability.png b/img/resources/azure/newicons/azure-sustainability.png new file mode 100644 index 00000000..143f6742 Binary files /dev/null and b/img/resources/azure/newicons/azure-sustainability.png differ diff --git a/img/resources/azure/newicons/connected-vehicle-platform.png b/img/resources/azure/newicons/connected-vehicle-platform.png new file mode 100644 index 00000000..e3ee43cb Binary files /dev/null and b/img/resources/azure/newicons/connected-vehicle-platform.png differ diff --git a/img/resources/azure/newicons/entra-connect-health.png b/img/resources/azure/newicons/entra-connect-health.png new file mode 100644 index 00000000..950bcf04 Binary files /dev/null and b/img/resources/azure/newicons/entra-connect-health.png differ diff --git a/img/resources/azure/newicons/entra-connect-sync.png b/img/resources/azure/newicons/entra-connect-sync.png new file mode 100644 index 00000000..4a79eda3 Binary files /dev/null and b/img/resources/azure/newicons/entra-connect-sync.png differ diff --git a/img/resources/azure/newicons/icm-troubleshooting.png b/img/resources/azure/newicons/icm-troubleshooting.png new file mode 100644 index 00000000..ad72e8fe Binary files /dev/null and b/img/resources/azure/newicons/icm-troubleshooting.png differ diff --git a/img/resources/azure/newicons/osconfig.png b/img/resources/azure/newicons/osconfig.png new file mode 100644 index 00000000..b42ef465 Binary files /dev/null and b/img/resources/azure/newicons/osconfig.png differ diff --git a/img/resources/azure/newicons/storage-actions.png b/img/resources/azure/newicons/storage-actions.png new file mode 100644 index 00000000..eb0b8c82 Binary files /dev/null and b/img/resources/azure/newicons/storage-actions.png differ diff --git a/img/resources/azure/other/aad-licenses.png b/img/resources/azure/other/aad-licenses.png new file mode 100644 index 00000000..c1c3c947 Binary files /dev/null and b/img/resources/azure/other/aad-licenses.png differ diff --git a/img/resources/azure/other/aks-istio.png b/img/resources/azure/other/aks-istio.png new file mode 100644 index 00000000..51ffc80f Binary files /dev/null and b/img/resources/azure/other/aks-istio.png differ diff --git a/img/resources/azure/other/app-compliance-automation.png b/img/resources/azure/other/app-compliance-automation.png new file mode 100644 index 00000000..5125921a Binary files /dev/null and b/img/resources/azure/other/app-compliance-automation.png differ diff --git a/img/resources/azure/other/app-registrations.png b/img/resources/azure/other/app-registrations.png new file mode 100644 index 00000000..82c0d440 Binary files /dev/null and b/img/resources/azure/other/app-registrations.png differ diff --git a/img/resources/azure/other/aquila.png b/img/resources/azure/other/aquila.png new file mode 100644 index 00000000..83d12fa7 Binary files /dev/null and b/img/resources/azure/other/aquila.png differ diff --git a/img/resources/azure/other/arc-data-services.png b/img/resources/azure/other/arc-data-services.png new file mode 100644 index 00000000..887fb710 Binary files /dev/null and b/img/resources/azure/other/arc-data-services.png differ diff --git a/img/resources/azure/other/arc-kubernetes.png b/img/resources/azure/other/arc-kubernetes.png new file mode 100644 index 00000000..8b44e33c Binary files /dev/null and b/img/resources/azure/other/arc-kubernetes.png differ diff --git a/img/resources/azure/other/arc-postgresql-.png b/img/resources/azure/other/arc-postgresql-.png new file mode 100644 index 00000000..cd473d8c Binary files /dev/null and b/img/resources/azure/other/arc-postgresql-.png differ diff --git a/img/resources/azure/other/arc-sql-managed-instance.png b/img/resources/azure/other/arc-sql-managed-instance.png new file mode 100644 index 00000000..e1cd5eb3 Binary files /dev/null and b/img/resources/azure/other/arc-sql-managed-instance.png differ diff --git a/img/resources/azure/other/arc-sql-server.png b/img/resources/azure/other/arc-sql-server.png new file mode 100644 index 00000000..3bbaee2f Binary files /dev/null and b/img/resources/azure/other/arc-sql-server.png differ diff --git a/img/resources/azure/other/avs-vm.png b/img/resources/azure/other/avs-vm.png new file mode 100644 index 00000000..e46c088b Binary files /dev/null and b/img/resources/azure/other/avs-vm.png differ diff --git a/img/resources/azure/other/azure-a.png b/img/resources/azure/other/azure-a.png new file mode 100644 index 00000000..895ee2bc Binary files /dev/null and b/img/resources/azure/other/azure-a.png differ diff --git a/img/resources/azure/other/azure-backup-center.png b/img/resources/azure/other/azure-backup-center.png new file mode 100644 index 00000000..2b5ae0a1 Binary files /dev/null and b/img/resources/azure/other/azure-backup-center.png differ diff --git a/img/resources/azure/other/azure-center-for-sap.png b/img/resources/azure/other/azure-center-for-sap.png new file mode 100644 index 00000000..f57860a5 Binary files /dev/null and b/img/resources/azure/other/azure-center-for-sap.png differ diff --git a/img/resources/azure/other/azure-chaos-studio.png b/img/resources/azure/other/azure-chaos-studio.png new file mode 100644 index 00000000..e235a57b Binary files /dev/null and b/img/resources/azure/other/azure-chaos-studio.png differ diff --git a/img/resources/azure/other/azure-cloud-shell.png b/img/resources/azure/other/azure-cloud-shell.png new file mode 100644 index 00000000..96c29e4f Binary files /dev/null and b/img/resources/azure/other/azure-cloud-shell.png differ diff --git a/img/resources/azure/other/azure-communication-services.png b/img/resources/azure/other/azure-communication-services.png new file mode 100644 index 00000000..e2a0ebfd Binary files /dev/null and b/img/resources/azure/other/azure-communication-services.png differ diff --git a/img/resources/azure/other/azure-compute-galleries.png b/img/resources/azure/other/azure-compute-galleries.png new file mode 100644 index 00000000..3cbe69cd Binary files /dev/null and b/img/resources/azure/other/azure-compute-galleries.png differ diff --git a/img/resources/azure/other/azure-deployment-environments.png b/img/resources/azure/other/azure-deployment-environments.png new file mode 100644 index 00000000..decc2e90 Binary files /dev/null and b/img/resources/azure/other/azure-deployment-environments.png differ diff --git a/img/resources/azure/other/azure-dev-tunnels.png b/img/resources/azure/other/azure-dev-tunnels.png new file mode 100644 index 00000000..7d7a9944 Binary files /dev/null and b/img/resources/azure/other/azure-dev-tunnels.png differ diff --git a/img/resources/azure/other/azure-edge-hardware-center.png b/img/resources/azure/other/azure-edge-hardware-center.png new file mode 100644 index 00000000..5d03243c Binary files /dev/null and b/img/resources/azure/other/azure-edge-hardware-center.png differ diff --git a/img/resources/azure/other/azure-hpc-workbenches.png b/img/resources/azure/other/azure-hpc-workbenches.png new file mode 100644 index 00000000..ecda0f17 Binary files /dev/null and b/img/resources/azure/other/azure-hpc-workbenches.png differ diff --git a/img/resources/azure/other/azure-load-testing.png b/img/resources/azure/other/azure-load-testing.png new file mode 100644 index 00000000..642b1407 Binary files /dev/null and b/img/resources/azure/other/azure-load-testing.png differ diff --git a/img/resources/azure/other/azure-managed-grafana.png b/img/resources/azure/other/azure-managed-grafana.png new file mode 100644 index 00000000..08d45285 Binary files /dev/null and b/img/resources/azure/other/azure-managed-grafana.png differ diff --git a/img/resources/azure/other/azure-monitor-dashboard.png b/img/resources/azure/other/azure-monitor-dashboard.png new file mode 100644 index 00000000..9ba58356 Binary files /dev/null and b/img/resources/azure/other/azure-monitor-dashboard.png differ diff --git a/img/resources/azure/other/azure-network-function-manager-functions.png b/img/resources/azure/other/azure-network-function-manager-functions.png new file mode 100644 index 00000000..414e87b8 Binary files /dev/null and b/img/resources/azure/other/azure-network-function-manager-functions.png differ diff --git a/img/resources/azure/other/azure-network-function-manager.png b/img/resources/azure/other/azure-network-function-manager.png new file mode 100644 index 00000000..5b5ac87b Binary files /dev/null and b/img/resources/azure/other/azure-network-function-manager.png differ diff --git a/img/resources/azure/other/azure-orbital.png b/img/resources/azure/other/azure-orbital.png new file mode 100644 index 00000000..f8a22800 Binary files /dev/null and b/img/resources/azure/other/azure-orbital.png differ diff --git a/img/resources/azure/other/azure-quotas.png b/img/resources/azure/other/azure-quotas.png new file mode 100644 index 00000000..419ff864 Binary files /dev/null and b/img/resources/azure/other/azure-quotas.png differ diff --git a/img/resources/azure/other/azure-sphere.png b/img/resources/azure/other/azure-sphere.png new file mode 100644 index 00000000..21a09d1a Binary files /dev/null and b/img/resources/azure/other/azure-sphere.png differ diff --git a/img/resources/azure/other/azure-storage-mover.png b/img/resources/azure/other/azure-storage-mover.png new file mode 100644 index 00000000..94ef763d Binary files /dev/null and b/img/resources/azure/other/azure-storage-mover.png differ diff --git a/img/resources/azure/other/azure-support-center-blue.png b/img/resources/azure/other/azure-support-center-blue.png new file mode 100644 index 00000000..ad3db6b8 Binary files /dev/null and b/img/resources/azure/other/azure-support-center-blue.png differ diff --git a/img/resources/azure/other/azure-video-indexer.png b/img/resources/azure/other/azure-video-indexer.png new file mode 100644 index 00000000..84395b7e Binary files /dev/null and b/img/resources/azure/other/azure-video-indexer.png differ diff --git a/img/resources/azure/other/azure-virtual-desktop.png b/img/resources/azure/other/azure-virtual-desktop.png new file mode 100644 index 00000000..c62e2055 Binary files /dev/null and b/img/resources/azure/other/azure-virtual-desktop.png differ diff --git a/img/resources/azure/other/azure-vmware-solution.png b/img/resources/azure/other/azure-vmware-solution.png new file mode 100644 index 00000000..29aeb857 Binary files /dev/null and b/img/resources/azure/other/azure-vmware-solution.png differ diff --git a/img/resources/azure/other/azureattestation.png b/img/resources/azure/other/azureattestation.png new file mode 100644 index 00000000..5981de60 Binary files /dev/null and b/img/resources/azure/other/azureattestation.png differ diff --git a/img/resources/azure/other/azurite.png b/img/resources/azure/other/azurite.png new file mode 100644 index 00000000..bb6972df Binary files /dev/null and b/img/resources/azure/other/azurite.png differ diff --git a/img/resources/azure/other/backup-vault.png b/img/resources/azure/other/backup-vault.png new file mode 100644 index 00000000..31cbeabb Binary files /dev/null and b/img/resources/azure/other/backup-vault.png differ diff --git a/img/resources/azure/other/bare-metal-infrastructure.png b/img/resources/azure/other/bare-metal-infrastructure.png new file mode 100644 index 00000000..aa12a265 Binary files /dev/null and b/img/resources/azure/other/bare-metal-infrastructure.png differ diff --git a/img/resources/azure/other/capacity-reservation-groups.png b/img/resources/azure/other/capacity-reservation-groups.png new file mode 100644 index 00000000..2801738c Binary files /dev/null and b/img/resources/azure/other/capacity-reservation-groups.png differ diff --git a/img/resources/azure/other/central-service-instance-for-sap.png b/img/resources/azure/other/central-service-instance-for-sap.png new file mode 100644 index 00000000..3e267a41 Binary files /dev/null and b/img/resources/azure/other/central-service-instance-for-sap.png differ diff --git a/img/resources/azure/other/ceres.png b/img/resources/azure/other/ceres.png new file mode 100644 index 00000000..b18e1b34 Binary files /dev/null and b/img/resources/azure/other/ceres.png differ diff --git a/img/resources/azure/other/cloud-services-extended-support.png b/img/resources/azure/other/cloud-services-extended-support.png new file mode 100644 index 00000000..489a0e6c Binary files /dev/null and b/img/resources/azure/other/cloud-services-extended-support.png differ diff --git a/img/resources/azure/other/community-images.png b/img/resources/azure/other/community-images.png new file mode 100644 index 00000000..4c6109f5 Binary files /dev/null and b/img/resources/azure/other/community-images.png differ diff --git a/img/resources/azure/other/compliance-center.png b/img/resources/azure/other/compliance-center.png new file mode 100644 index 00000000..ca09cf6d Binary files /dev/null and b/img/resources/azure/other/compliance-center.png differ diff --git a/img/resources/azure/other/confidential-ledgers.png b/img/resources/azure/other/confidential-ledgers.png new file mode 100644 index 00000000..d32358e3 Binary files /dev/null and b/img/resources/azure/other/confidential-ledgers.png differ diff --git a/img/resources/azure/other/container-apps-environments.png b/img/resources/azure/other/container-apps-environments.png new file mode 100644 index 00000000..0238da41 Binary files /dev/null and b/img/resources/azure/other/container-apps-environments.png differ diff --git a/img/resources/azure/other/cost-export.png b/img/resources/azure/other/cost-export.png new file mode 100644 index 00000000..3e50b1f6 Binary files /dev/null and b/img/resources/azure/other/cost-export.png differ diff --git a/img/resources/azure/other/custom-ip-prefix.png b/img/resources/azure/other/custom-ip-prefix.png new file mode 100644 index 00000000..38b151c4 Binary files /dev/null and b/img/resources/azure/other/custom-ip-prefix.png differ diff --git a/img/resources/azure/other/dashboard-hub.png b/img/resources/azure/other/dashboard-hub.png new file mode 100644 index 00000000..6ce82812 Binary files /dev/null and b/img/resources/azure/other/dashboard-hub.png differ diff --git a/img/resources/azure/other/data-collection-rules.png b/img/resources/azure/other/data-collection-rules.png new file mode 100644 index 00000000..9e8e79a7 Binary files /dev/null and b/img/resources/azure/other/data-collection-rules.png differ diff --git a/img/resources/azure/other/database-instance-for-sap.png b/img/resources/azure/other/database-instance-for-sap.png new file mode 100644 index 00000000..4d134d94 Binary files /dev/null and b/img/resources/azure/other/database-instance-for-sap.png differ diff --git a/img/resources/azure/other/dedicated-hsm.png b/img/resources/azure/other/dedicated-hsm.png new file mode 100644 index 00000000..f83a1ea3 Binary files /dev/null and b/img/resources/azure/other/dedicated-hsm.png differ diff --git a/img/resources/azure/other/defender-cm-local-manager.png b/img/resources/azure/other/defender-cm-local-manager.png new file mode 100644 index 00000000..5fcf0de9 Binary files /dev/null and b/img/resources/azure/other/defender-cm-local-manager.png differ diff --git a/img/resources/azure/other/defender-dcs-controller.png b/img/resources/azure/other/defender-dcs-controller.png new file mode 100644 index 00000000..0ce9953e Binary files /dev/null and b/img/resources/azure/other/defender-dcs-controller.png differ diff --git a/img/resources/azure/other/defender-distributer-control-system.png b/img/resources/azure/other/defender-distributer-control-system.png new file mode 100644 index 00000000..5dab3ed3 Binary files /dev/null and b/img/resources/azure/other/defender-distributer-control-system.png differ diff --git a/img/resources/azure/other/defender-engineering-station.png b/img/resources/azure/other/defender-engineering-station.png new file mode 100644 index 00000000..5013569f Binary files /dev/null and b/img/resources/azure/other/defender-engineering-station.png differ diff --git a/img/resources/azure/other/defender-external-management.png b/img/resources/azure/other/defender-external-management.png new file mode 100644 index 00000000..219626b2 Binary files /dev/null and b/img/resources/azure/other/defender-external-management.png differ diff --git a/img/resources/azure/other/defender-freezer-monitor.png b/img/resources/azure/other/defender-freezer-monitor.png new file mode 100644 index 00000000..a93e1959 Binary files /dev/null and b/img/resources/azure/other/defender-freezer-monitor.png differ diff --git a/img/resources/azure/other/defender-historian.png b/img/resources/azure/other/defender-historian.png new file mode 100644 index 00000000..b388351b Binary files /dev/null and b/img/resources/azure/other/defender-historian.png differ diff --git a/img/resources/azure/other/defender-hmi.png b/img/resources/azure/other/defender-hmi.png new file mode 100644 index 00000000..807c4888 Binary files /dev/null and b/img/resources/azure/other/defender-hmi.png differ diff --git a/img/resources/azure/other/defender-industrial-packaging-system.png b/img/resources/azure/other/defender-industrial-packaging-system.png new file mode 100644 index 00000000..691416a6 Binary files /dev/null and b/img/resources/azure/other/defender-industrial-packaging-system.png differ diff --git a/img/resources/azure/other/defender-industrial-printer.png b/img/resources/azure/other/defender-industrial-printer.png new file mode 100644 index 00000000..96f4d1f1 Binary files /dev/null and b/img/resources/azure/other/defender-industrial-printer.png differ diff --git a/img/resources/azure/other/defender-industrial-robot.png b/img/resources/azure/other/defender-industrial-robot.png new file mode 100644 index 00000000..0dd72958 Binary files /dev/null and b/img/resources/azure/other/defender-industrial-robot.png differ diff --git a/img/resources/azure/other/defender-industrial-scale-system.png b/img/resources/azure/other/defender-industrial-scale-system.png new file mode 100644 index 00000000..9e206232 Binary files /dev/null and b/img/resources/azure/other/defender-industrial-scale-system.png differ diff --git a/img/resources/azure/other/defender-marquee.png b/img/resources/azure/other/defender-marquee.png new file mode 100644 index 00000000..10cfadb5 Binary files /dev/null and b/img/resources/azure/other/defender-marquee.png differ diff --git a/img/resources/azure/other/defender-meter.png b/img/resources/azure/other/defender-meter.png new file mode 100644 index 00000000..b70263af Binary files /dev/null and b/img/resources/azure/other/defender-meter.png differ diff --git a/img/resources/azure/other/defender-plc.png b/img/resources/azure/other/defender-plc.png new file mode 100644 index 00000000..82b0bf9b Binary files /dev/null and b/img/resources/azure/other/defender-plc.png differ diff --git a/img/resources/azure/other/defender-pneumatic-device.png b/img/resources/azure/other/defender-pneumatic-device.png new file mode 100644 index 00000000..e7137a2f Binary files /dev/null and b/img/resources/azure/other/defender-pneumatic-device.png differ diff --git a/img/resources/azure/other/defender-programable-board.png b/img/resources/azure/other/defender-programable-board.png new file mode 100644 index 00000000..d2873ed5 Binary files /dev/null and b/img/resources/azure/other/defender-programable-board.png differ diff --git a/img/resources/azure/other/defender-relay.png b/img/resources/azure/other/defender-relay.png new file mode 100644 index 00000000..fe0a056c Binary files /dev/null and b/img/resources/azure/other/defender-relay.png differ diff --git a/img/resources/azure/other/defender-robot-controller.png b/img/resources/azure/other/defender-robot-controller.png new file mode 100644 index 00000000..fb46e0db Binary files /dev/null and b/img/resources/azure/other/defender-robot-controller.png differ diff --git a/img/resources/azure/other/defender-rtu.png b/img/resources/azure/other/defender-rtu.png new file mode 100644 index 00000000..2c089b05 Binary files /dev/null and b/img/resources/azure/other/defender-rtu.png differ diff --git a/img/resources/azure/other/defender-sensor.png b/img/resources/azure/other/defender-sensor.png new file mode 100644 index 00000000..27a8a6fc Binary files /dev/null and b/img/resources/azure/other/defender-sensor.png differ diff --git a/img/resources/azure/other/defender-slot.png b/img/resources/azure/other/defender-slot.png new file mode 100644 index 00000000..a7e77328 Binary files /dev/null and b/img/resources/azure/other/defender-slot.png differ diff --git a/img/resources/azure/other/defender-web-guiding-system.png b/img/resources/azure/other/defender-web-guiding-system.png new file mode 100644 index 00000000..d7be0100 Binary files /dev/null and b/img/resources/azure/other/defender-web-guiding-system.png differ diff --git a/img/resources/azure/other/device-update-iot-hub.png b/img/resources/azure/other/device-update-iot-hub.png new file mode 100644 index 00000000..ed132382 Binary files /dev/null and b/img/resources/azure/other/device-update-iot-hub.png differ diff --git a/img/resources/azure/other/disk-pool.png b/img/resources/azure/other/disk-pool.png new file mode 100644 index 00000000..163b309c Binary files /dev/null and b/img/resources/azure/other/disk-pool.png differ diff --git a/img/resources/azure/other/edge-management.png b/img/resources/azure/other/edge-management.png new file mode 100644 index 00000000..cb6c4a73 Binary files /dev/null and b/img/resources/azure/other/edge-management.png differ diff --git a/img/resources/azure/other/elastic-san.png b/img/resources/azure/other/elastic-san.png new file mode 100644 index 00000000..ed6b919d Binary files /dev/null and b/img/resources/azure/other/elastic-san.png differ diff --git a/img/resources/azure/other/exchange-on-premises-access.png b/img/resources/azure/other/exchange-on-premises-access.png new file mode 100644 index 00000000..d797c01d Binary files /dev/null and b/img/resources/azure/other/exchange-on-premises-access.png differ diff --git a/img/resources/azure/other/express-route-traffic-collector.png b/img/resources/azure/other/express-route-traffic-collector.png new file mode 100644 index 00000000..26ccf6e1 Binary files /dev/null and b/img/resources/azure/other/express-route-traffic-collector.png differ diff --git a/img/resources/azure/other/expressroute-direct.png b/img/resources/azure/other/expressroute-direct.png new file mode 100644 index 00000000..e52679db Binary files /dev/null and b/img/resources/azure/other/expressroute-direct.png differ diff --git a/img/resources/azure/other/fhir-service.png b/img/resources/azure/other/fhir-service.png new file mode 100644 index 00000000..079dfec6 Binary files /dev/null and b/img/resources/azure/other/fhir-service.png differ diff --git a/img/resources/azure/other/fiji.png b/img/resources/azure/other/fiji.png new file mode 100644 index 00000000..be732cf3 Binary files /dev/null and b/img/resources/azure/other/fiji.png differ diff --git a/img/resources/azure/other/hdi-aks-cluster.png b/img/resources/azure/other/hdi-aks-cluster.png new file mode 100644 index 00000000..8051d22c Binary files /dev/null and b/img/resources/azure/other/hdi-aks-cluster.png differ diff --git a/img/resources/azure/other/instance-pools.png b/img/resources/azure/other/instance-pools.png new file mode 100644 index 00000000..ce2acf98 Binary files /dev/null and b/img/resources/azure/other/instance-pools.png differ diff --git a/img/resources/azure/other/internet-analyzer-profiles.png b/img/resources/azure/other/internet-analyzer-profiles.png new file mode 100644 index 00000000..6b181dee Binary files /dev/null and b/img/resources/azure/other/internet-analyzer-profiles.png differ diff --git a/img/resources/azure/other/kubernetes-fleet-manager.png b/img/resources/azure/other/kubernetes-fleet-manager.png new file mode 100644 index 00000000..ab20ba9e Binary files /dev/null and b/img/resources/azure/other/kubernetes-fleet-manager.png differ diff --git a/img/resources/azure/other/local-network-gateways.png b/img/resources/azure/other/local-network-gateways.png new file mode 100644 index 00000000..efb57651 Binary files /dev/null and b/img/resources/azure/other/local-network-gateways.png differ diff --git a/img/resources/azure/other/log-analytics-query-pack.png b/img/resources/azure/other/log-analytics-query-pack.png new file mode 100644 index 00000000..4350ea15 Binary files /dev/null and b/img/resources/azure/other/log-analytics-query-pack.png differ diff --git a/img/resources/azure/other/managed-instance-apache-cassandra.png b/img/resources/azure/other/managed-instance-apache-cassandra.png new file mode 100644 index 00000000..6431e5d6 Binary files /dev/null and b/img/resources/azure/other/managed-instance-apache-cassandra.png differ diff --git a/img/resources/azure/other/medtech-service.png b/img/resources/azure/other/medtech-service.png new file mode 100644 index 00000000..09c4aefb Binary files /dev/null and b/img/resources/azure/other/medtech-service.png differ diff --git a/img/resources/azure/other/microsoft-dev-box.png b/img/resources/azure/other/microsoft-dev-box.png new file mode 100644 index 00000000..35dec018 Binary files /dev/null and b/img/resources/azure/other/microsoft-dev-box.png differ diff --git a/img/resources/azure/other/mission-landing-zone.png b/img/resources/azure/other/mission-landing-zone.png new file mode 100644 index 00000000..0535a7ce Binary files /dev/null and b/img/resources/azure/other/mission-landing-zone.png differ diff --git a/img/resources/azure/other/mobile-networks.png b/img/resources/azure/other/mobile-networks.png new file mode 100644 index 00000000..c28501e8 Binary files /dev/null and b/img/resources/azure/other/mobile-networks.png differ diff --git a/img/resources/azure/other/modular-data-center.png b/img/resources/azure/other/modular-data-center.png new file mode 100644 index 00000000..316fd0f4 Binary files /dev/null and b/img/resources/azure/other/modular-data-center.png differ diff --git a/img/resources/azure/other/network-managers.png b/img/resources/azure/other/network-managers.png new file mode 100644 index 00000000..97fbeb54 Binary files /dev/null and b/img/resources/azure/other/network-managers.png differ diff --git a/img/resources/azure/other/network-security-perimeters.png b/img/resources/azure/other/network-security-perimeters.png new file mode 100644 index 00000000..6e4d017c Binary files /dev/null and b/img/resources/azure/other/network-security-perimeters.png differ diff --git a/img/resources/azure/other/open-supply-chain-platform.png b/img/resources/azure/other/open-supply-chain-platform.png new file mode 100644 index 00000000..806b16f1 Binary files /dev/null and b/img/resources/azure/other/open-supply-chain-platform.png differ diff --git a/img/resources/azure/other/peering-service.png b/img/resources/azure/other/peering-service.png new file mode 100644 index 00000000..7140ac1a Binary files /dev/null and b/img/resources/azure/other/peering-service.png differ diff --git a/img/resources/azure/other/peerings.png b/img/resources/azure/other/peerings.png new file mode 100644 index 00000000..3416999b Binary files /dev/null and b/img/resources/azure/other/peerings.png differ diff --git a/img/resources/azure/other/private-endpoints.png b/img/resources/azure/other/private-endpoints.png new file mode 100644 index 00000000..9c60e2d5 Binary files /dev/null and b/img/resources/azure/other/private-endpoints.png differ diff --git a/img/resources/azure/other/reserved-capacity.png b/img/resources/azure/other/reserved-capacity.png new file mode 100644 index 00000000..13e44e75 Binary files /dev/null and b/img/resources/azure/other/reserved-capacity.png differ diff --git a/img/resources/azure/other/resource-guard.png b/img/resources/azure/other/resource-guard.png new file mode 100644 index 00000000..9b753648 Binary files /dev/null and b/img/resources/azure/other/resource-guard.png differ diff --git a/img/resources/azure/other/resource-mover.png b/img/resources/azure/other/resource-mover.png new file mode 100644 index 00000000..290a3e99 Binary files /dev/null and b/img/resources/azure/other/resource-mover.png differ diff --git a/img/resources/azure/other/rtos.png b/img/resources/azure/other/rtos.png new file mode 100644 index 00000000..15cc39b9 Binary files /dev/null and b/img/resources/azure/other/rtos.png differ diff --git a/img/resources/azure/other/savings-plans.png b/img/resources/azure/other/savings-plans.png new file mode 100644 index 00000000..096af96d Binary files /dev/null and b/img/resources/azure/other/savings-plans.png differ diff --git a/img/resources/azure/other/scvmm-management-servers.png b/img/resources/azure/other/scvmm-management-servers.png new file mode 100644 index 00000000..9ed06fa9 Binary files /dev/null and b/img/resources/azure/other/scvmm-management-servers.png differ diff --git a/img/resources/azure/other/sonic-dash.png b/img/resources/azure/other/sonic-dash.png new file mode 100644 index 00000000..66365820 Binary files /dev/null and b/img/resources/azure/other/sonic-dash.png differ diff --git a/img/resources/azure/other/ssh-keys.png b/img/resources/azure/other/ssh-keys.png new file mode 100644 index 00000000..6e2a60ae Binary files /dev/null and b/img/resources/azure/other/ssh-keys.png differ diff --git a/img/resources/azure/other/storage-functions.png b/img/resources/azure/other/storage-functions.png new file mode 100644 index 00000000..17e63168 Binary files /dev/null and b/img/resources/azure/other/storage-functions.png differ diff --git a/img/resources/azure/other/targets-management.png b/img/resources/azure/other/targets-management.png new file mode 100644 index 00000000..bb4ea6bf Binary files /dev/null and b/img/resources/azure/other/targets-management.png differ diff --git a/img/resources/azure/other/template-specs.png b/img/resources/azure/other/template-specs.png new file mode 100644 index 00000000..a9debd0f Binary files /dev/null and b/img/resources/azure/other/template-specs.png differ diff --git a/img/resources/azure/other/test-base.png b/img/resources/azure/other/test-base.png new file mode 100644 index 00000000..ef6c2b13 Binary files /dev/null and b/img/resources/azure/other/test-base.png differ diff --git a/img/resources/azure/other/update-management-center.png b/img/resources/azure/other/update-management-center.png new file mode 100644 index 00000000..af6bca7b Binary files /dev/null and b/img/resources/azure/other/update-management-center.png differ diff --git a/img/resources/azure/other/video-analyzers.png b/img/resources/azure/other/video-analyzers.png new file mode 100644 index 00000000..0ea55d38 Binary files /dev/null and b/img/resources/azure/other/video-analyzers.png differ diff --git a/img/resources/azure/other/virtual-enclaves.png b/img/resources/azure/other/virtual-enclaves.png new file mode 100644 index 00000000..2d811f03 Binary files /dev/null and b/img/resources/azure/other/virtual-enclaves.png differ diff --git a/img/resources/azure/other/virtual-instance-for-sap.png b/img/resources/azure/other/virtual-instance-for-sap.png new file mode 100644 index 00000000..cb2ccd26 Binary files /dev/null and b/img/resources/azure/other/virtual-instance-for-sap.png differ diff --git a/img/resources/azure/other/virtual-visits-builder.png b/img/resources/azure/other/virtual-visits-builder.png new file mode 100644 index 00000000..a2873cd7 Binary files /dev/null and b/img/resources/azure/other/virtual-visits-builder.png differ diff --git a/img/resources/azure/other/vm-app-definitions.png b/img/resources/azure/other/vm-app-definitions.png new file mode 100644 index 00000000..a48f7a53 Binary files /dev/null and b/img/resources/azure/other/vm-app-definitions.png differ diff --git a/img/resources/azure/other/vm-app-versions.png b/img/resources/azure/other/vm-app-versions.png new file mode 100644 index 00000000..a801d1ea Binary files /dev/null and b/img/resources/azure/other/vm-app-versions.png differ diff --git a/img/resources/azure/other/vm-image-version.png b/img/resources/azure/other/vm-image-version.png new file mode 100644 index 00000000..07de6402 Binary files /dev/null and b/img/resources/azure/other/vm-image-version.png differ diff --git a/img/resources/azure/other/wac.png b/img/resources/azure/other/wac.png new file mode 100644 index 00000000..7b1499b4 Binary files /dev/null and b/img/resources/azure/other/wac.png differ diff --git a/img/resources/azure/other/web-app-database.png b/img/resources/azure/other/web-app-database.png new file mode 100644 index 00000000..46527ebc Binary files /dev/null and b/img/resources/azure/other/web-app-database.png differ diff --git a/img/resources/azure/other/web-jobs.png b/img/resources/azure/other/web-jobs.png new file mode 100644 index 00000000..09adf302 Binary files /dev/null and b/img/resources/azure/other/web-jobs.png differ diff --git a/img/resources/azure/other/windows-notification-services.png b/img/resources/azure/other/windows-notification-services.png new file mode 100644 index 00000000..bf842cc3 Binary files /dev/null and b/img/resources/azure/other/windows-notification-services.png differ diff --git a/img/resources/azure/other/worker-container-app.png b/img/resources/azure/other/worker-container-app.png new file mode 100644 index 00000000..dc237d18 Binary files /dev/null and b/img/resources/azure/other/worker-container-app.png differ diff --git a/img/resources/azure/security/application-security-groups.png b/img/resources/azure/security/application-security-groups.png index 91d48fe5..38457c9c 100644 Binary files a/img/resources/azure/security/application-security-groups.png and b/img/resources/azure/security/application-security-groups.png differ diff --git a/img/resources/azure/security/azure-ad-authentication-methods.png b/img/resources/azure/security/azure-ad-authentication-methods.png new file mode 100644 index 00000000..9eb421de Binary files /dev/null and b/img/resources/azure/security/azure-ad-authentication-methods.png differ diff --git a/img/resources/azure/security/azure-ad-identity-protection.png b/img/resources/azure/security/azure-ad-identity-protection.png new file mode 100644 index 00000000..d8bc0847 Binary files /dev/null and b/img/resources/azure/security/azure-ad-identity-protection.png differ diff --git a/img/resources/azure/security/azure-ad-privleged-identity-management.png b/img/resources/azure/security/azure-ad-privleged-identity-management.png new file mode 100644 index 00000000..336179bb Binary files /dev/null and b/img/resources/azure/security/azure-ad-privleged-identity-management.png differ diff --git a/img/resources/azure/security/azure-ad-risky-signins.png b/img/resources/azure/security/azure-ad-risky-signins.png new file mode 100644 index 00000000..506e7c32 Binary files /dev/null and b/img/resources/azure/security/azure-ad-risky-signins.png differ diff --git a/img/resources/azure/security/azure-ad-risky-users.png b/img/resources/azure/security/azure-ad-risky-users.png new file mode 100644 index 00000000..767415b6 Binary files /dev/null and b/img/resources/azure/security/azure-ad-risky-users.png differ diff --git a/img/resources/azure/security/azure-information-protection.png b/img/resources/azure/security/azure-information-protection.png new file mode 100644 index 00000000..d350f568 Binary files /dev/null and b/img/resources/azure/security/azure-information-protection.png differ diff --git a/img/resources/azure/security/azure-sentinel.png b/img/resources/azure/security/azure-sentinel.png new file mode 100644 index 00000000..fbf7c834 Binary files /dev/null and b/img/resources/azure/security/azure-sentinel.png differ diff --git a/img/resources/azure/security/conditional-access.png b/img/resources/azure/security/conditional-access.png index 7d50a6c9..a3fe6770 100644 Binary files a/img/resources/azure/security/conditional-access.png and b/img/resources/azure/security/conditional-access.png differ diff --git a/img/resources/azure/security/detonation.png b/img/resources/azure/security/detonation.png new file mode 100644 index 00000000..1dce497e Binary files /dev/null and b/img/resources/azure/security/detonation.png differ diff --git a/img/resources/azure/security/extendedsecurityupdates.png b/img/resources/azure/security/extendedsecurityupdates.png new file mode 100644 index 00000000..e4f7fc70 Binary files /dev/null and b/img/resources/azure/security/extendedsecurityupdates.png differ diff --git a/img/resources/azure/security/identity-secure-score.png b/img/resources/azure/security/identity-secure-score.png new file mode 100644 index 00000000..33c37885 Binary files /dev/null and b/img/resources/azure/security/identity-secure-score.png differ diff --git a/img/resources/azure/security/key-vaults.png b/img/resources/azure/security/key-vaults.png index 9d9d70a0..5d1eac32 100644 Binary files a/img/resources/azure/security/key-vaults.png and b/img/resources/azure/security/key-vaults.png differ diff --git a/img/resources/azure/security/microsoft-defender-easm.png b/img/resources/azure/security/microsoft-defender-easm.png new file mode 100644 index 00000000..ff5d03fc Binary files /dev/null and b/img/resources/azure/security/microsoft-defender-easm.png differ diff --git a/img/resources/azure/security/microsoft-defender-for-cloud.png b/img/resources/azure/security/microsoft-defender-for-cloud.png new file mode 100644 index 00000000..f90b3038 Binary files /dev/null and b/img/resources/azure/security/microsoft-defender-for-cloud.png differ diff --git a/img/resources/azure/security/microsoft-defender-for-iot.png b/img/resources/azure/security/microsoft-defender-for-iot.png new file mode 100644 index 00000000..60b99a8a Binary files /dev/null and b/img/resources/azure/security/microsoft-defender-for-iot.png differ diff --git a/img/resources/azure/security/multifactor-authentication.png b/img/resources/azure/security/multifactor-authentication.png new file mode 100644 index 00000000..2f4495c6 Binary files /dev/null and b/img/resources/azure/security/multifactor-authentication.png differ diff --git a/img/resources/azure/security/user-settings.png b/img/resources/azure/security/user-settings.png new file mode 100644 index 00000000..ae64c527 Binary files /dev/null and b/img/resources/azure/security/user-settings.png differ diff --git a/img/resources/azure/storage/azure-databox-gateway.png b/img/resources/azure/storage/azure-databox-gateway.png new file mode 100644 index 00000000..2a469411 Binary files /dev/null and b/img/resources/azure/storage/azure-databox-gateway.png differ diff --git a/img/resources/azure/storage/azure-fileshares.png b/img/resources/azure/storage/azure-fileshares.png new file mode 100644 index 00000000..98585827 Binary files /dev/null and b/img/resources/azure/storage/azure-fileshares.png differ diff --git a/img/resources/azure/storage/azure-hcp-cache.png b/img/resources/azure/storage/azure-hcp-cache.png new file mode 100644 index 00000000..72400791 Binary files /dev/null and b/img/resources/azure/storage/azure-hcp-cache.png differ diff --git a/img/resources/azure/storage/azure-netapp-files.png b/img/resources/azure/storage/azure-netapp-files.png new file mode 100644 index 00000000..136844e1 Binary files /dev/null and b/img/resources/azure/storage/azure-netapp-files.png differ diff --git a/img/resources/azure/storage/azure-stack-edge.png b/img/resources/azure/storage/azure-stack-edge.png new file mode 100644 index 00000000..c30de5ea Binary files /dev/null and b/img/resources/azure/storage/azure-stack-edge.png differ diff --git a/img/resources/azure/storage/data-box.png b/img/resources/azure/storage/data-box.png index c2f15b9b..0806ab73 100644 Binary files a/img/resources/azure/storage/data-box.png and b/img/resources/azure/storage/data-box.png differ diff --git a/img/resources/azure/storage/data-lake-storage-gen1.png b/img/resources/azure/storage/data-lake-storage-gen1.png new file mode 100644 index 00000000..e74ba86e Binary files /dev/null and b/img/resources/azure/storage/data-lake-storage-gen1.png differ diff --git a/img/resources/azure/storage/data-share-invitations.png b/img/resources/azure/storage/data-share-invitations.png new file mode 100644 index 00000000..ac7a17a0 Binary files /dev/null and b/img/resources/azure/storage/data-share-invitations.png differ diff --git a/img/resources/azure/storage/data-shares.png b/img/resources/azure/storage/data-shares.png new file mode 100644 index 00000000..46c8a55c Binary files /dev/null and b/img/resources/azure/storage/data-shares.png differ diff --git a/img/resources/azure/storage/import-export-jobs.png b/img/resources/azure/storage/import-export-jobs.png new file mode 100644 index 00000000..c581b913 Binary files /dev/null and b/img/resources/azure/storage/import-export-jobs.png differ diff --git a/img/resources/azure/storage/recovery-services-vaults.png b/img/resources/azure/storage/recovery-services-vaults.png new file mode 100644 index 00000000..e53f158e Binary files /dev/null and b/img/resources/azure/storage/recovery-services-vaults.png differ diff --git a/img/resources/azure/storage/storage-accounts-classic.png b/img/resources/azure/storage/storage-accounts-classic.png index 62f9dd25..7e0078cb 100644 Binary files a/img/resources/azure/storage/storage-accounts-classic.png and b/img/resources/azure/storage/storage-accounts-classic.png differ diff --git a/img/resources/azure/storage/storage-accounts.png b/img/resources/azure/storage/storage-accounts.png index d0dd8e22..c7e0f25e 100644 Binary files a/img/resources/azure/storage/storage-accounts.png and b/img/resources/azure/storage/storage-accounts.png differ diff --git a/img/resources/azure/storage/storage-explorer.png b/img/resources/azure/storage/storage-explorer.png index 35872b44..b13dfd61 100644 Binary files a/img/resources/azure/storage/storage-explorer.png and b/img/resources/azure/storage/storage-explorer.png differ diff --git a/img/resources/azure/storage/storage-sync-services.png b/img/resources/azure/storage/storage-sync-services.png index 851a81b9..512ce37c 100644 Binary files a/img/resources/azure/storage/storage-sync-services.png and b/img/resources/azure/storage/storage-sync-services.png differ diff --git a/img/resources/azure/storage/storsimple-data-managers.png b/img/resources/azure/storage/storsimple-data-managers.png index 0b08fff3..bf8edae6 100644 Binary files a/img/resources/azure/storage/storsimple-data-managers.png and b/img/resources/azure/storage/storsimple-data-managers.png differ diff --git a/img/resources/azure/storage/storsimple-device-managers.png b/img/resources/azure/storage/storsimple-device-managers.png index 3fb1dedd..e9c47810 100644 Binary files a/img/resources/azure/storage/storsimple-device-managers.png and b/img/resources/azure/storage/storsimple-device-managers.png differ diff --git a/img/resources/azure/web/api-center.png b/img/resources/azure/web/api-center.png new file mode 100644 index 00000000..ec5e0255 Binary files /dev/null and b/img/resources/azure/web/api-center.png differ diff --git a/img/resources/azure/web/api-connections.png b/img/resources/azure/web/api-connections.png index ad32eb77..2f822d90 100644 Binary files a/img/resources/azure/web/api-connections.png and b/img/resources/azure/web/api-connections.png differ diff --git a/img/resources/azure/web/api-management-services.png b/img/resources/azure/web/api-management-services.png new file mode 100644 index 00000000..1d80a49e Binary files /dev/null and b/img/resources/azure/web/api-management-services.png differ diff --git a/img/resources/azure/web/app-service-certificates.png b/img/resources/azure/web/app-service-certificates.png index df6173c3..bc6406bf 100644 Binary files a/img/resources/azure/web/app-service-certificates.png and b/img/resources/azure/web/app-service-certificates.png differ diff --git a/img/resources/azure/web/app-service-domains.png b/img/resources/azure/web/app-service-domains.png index ab3c3b23..4b5af9a8 100644 Binary files a/img/resources/azure/web/app-service-domains.png and b/img/resources/azure/web/app-service-domains.png differ diff --git a/img/resources/azure/web/app-service-environments.png b/img/resources/azure/web/app-service-environments.png index 5a9f6e6c..f651b780 100644 Binary files a/img/resources/azure/web/app-service-environments.png and b/img/resources/azure/web/app-service-environments.png differ diff --git a/img/resources/azure/web/app-service-plans.png b/img/resources/azure/web/app-service-plans.png index d45739f2..fa4f7cf9 100644 Binary files a/img/resources/azure/web/app-service-plans.png and b/img/resources/azure/web/app-service-plans.png differ diff --git a/img/resources/azure/web/app-services.png b/img/resources/azure/web/app-services.png index 32cf8896..5fe6dcb8 100644 Binary files a/img/resources/azure/web/app-services.png and b/img/resources/azure/web/app-services.png differ diff --git a/img/resources/azure/web/app-space.png b/img/resources/azure/web/app-space.png new file mode 100644 index 00000000..35378316 Binary files /dev/null and b/img/resources/azure/web/app-space.png differ diff --git a/img/resources/azure/web/azure-media-service.png b/img/resources/azure/web/azure-media-service.png new file mode 100644 index 00000000..367c73ab Binary files /dev/null and b/img/resources/azure/web/azure-media-service.png differ diff --git a/img/resources/azure/web/azure-spring-apps.png b/img/resources/azure/web/azure-spring-apps.png new file mode 100644 index 00000000..589e7f30 Binary files /dev/null and b/img/resources/azure/web/azure-spring-apps.png differ diff --git a/img/resources/azure/web/cognitive-search.png b/img/resources/azure/web/cognitive-search.png new file mode 100644 index 00000000..ff628a69 Binary files /dev/null and b/img/resources/azure/web/cognitive-search.png differ diff --git a/img/resources/azure/web/cognitive-services.png b/img/resources/azure/web/cognitive-services.png new file mode 100644 index 00000000..73f89107 Binary files /dev/null and b/img/resources/azure/web/cognitive-services.png differ diff --git a/img/resources/azure/web/front-door-and-cdn-profiles.png b/img/resources/azure/web/front-door-and-cdn-profiles.png new file mode 100644 index 00000000..cc43ed73 Binary files /dev/null and b/img/resources/azure/web/front-door-and-cdn-profiles.png differ diff --git a/img/resources/azure/web/notification-hub-namespaces.png b/img/resources/azure/web/notification-hub-namespaces.png index 6380429c..9aaa0ba0 100644 Binary files a/img/resources/azure/web/notification-hub-namespaces.png and b/img/resources/azure/web/notification-hub-namespaces.png differ diff --git a/img/resources/azure/web/power-platform.png b/img/resources/azure/web/power-platform.png new file mode 100644 index 00000000..d5278841 Binary files /dev/null and b/img/resources/azure/web/power-platform.png differ diff --git a/img/resources/azure/web/signalr.png b/img/resources/azure/web/signalr.png index edc49130..03539a5e 100644 Binary files a/img/resources/azure/web/signalr.png and b/img/resources/azure/web/signalr.png differ diff --git a/img/resources/azure/web/static-apps.png b/img/resources/azure/web/static-apps.png new file mode 100644 index 00000000..4e936abb Binary files /dev/null and b/img/resources/azure/web/static-apps.png differ diff --git a/img/resources/gcp/analytics/looker.png b/img/resources/gcp/analytics/looker.png new file mode 100644 index 00000000..bb50a385 Binary files /dev/null and b/img/resources/gcp/analytics/looker.png differ diff --git a/img/resources/gcp/compute/binary-authorization.png b/img/resources/gcp/compute/binary-authorization.png new file mode 100644 index 00000000..fea20a8a Binary files /dev/null and b/img/resources/gcp/compute/binary-authorization.png differ diff --git a/img/resources/gcp/compute/cloud-run.png b/img/resources/gcp/compute/cloud-run.png new file mode 100644 index 00000000..8a6f7c56 Binary files /dev/null and b/img/resources/gcp/compute/cloud-run.png differ diff --git a/img/resources/gcp/compute/os-configuration-management.png b/img/resources/gcp/compute/os-configuration-management.png new file mode 100644 index 00000000..eee83912 Binary files /dev/null and b/img/resources/gcp/compute/os-configuration-management.png differ diff --git a/img/resources/gcp/compute/os-inventory-management.png b/img/resources/gcp/compute/os-inventory-management.png new file mode 100644 index 00000000..81c7ea7b Binary files /dev/null and b/img/resources/gcp/compute/os-inventory-management.png differ diff --git a/img/resources/gcp/compute/os-patch-management.png b/img/resources/gcp/compute/os-patch-management.png new file mode 100644 index 00000000..e3edf86b Binary files /dev/null and b/img/resources/gcp/compute/os-patch-management.png differ diff --git a/img/resources/gcp/devtools/cloud-shell.png b/img/resources/gcp/devtools/cloud-shell.png new file mode 100644 index 00000000..124d4de9 Binary files /dev/null and b/img/resources/gcp/devtools/cloud-shell.png differ diff --git a/img/resources/gcp/devtools/service-catalog.png b/img/resources/gcp/devtools/service-catalog.png new file mode 100644 index 00000000..350a045f Binary files /dev/null and b/img/resources/gcp/devtools/service-catalog.png differ diff --git a/img/resources/gcp/management/billing.png b/img/resources/gcp/management/billing.png new file mode 100644 index 00000000..9a6afa8b Binary files /dev/null and b/img/resources/gcp/management/billing.png differ diff --git a/img/resources/gcp/management/project.png b/img/resources/gcp/management/project.png new file mode 100644 index 00000000..731175bc Binary files /dev/null and b/img/resources/gcp/management/project.png differ diff --git a/img/resources/gcp/management/quotas.png b/img/resources/gcp/management/quotas.png new file mode 100644 index 00000000..a422f868 Binary files /dev/null and b/img/resources/gcp/management/quotas.png differ diff --git a/img/resources/gcp/management/support.png b/img/resources/gcp/management/support.png new file mode 100644 index 00000000..99a695ab Binary files /dev/null and b/img/resources/gcp/management/support.png differ diff --git a/img/resources/gcp/migration/migrate-compute-engine.png b/img/resources/gcp/migration/migrate-compute-engine.png new file mode 100644 index 00000000..32d932b4 Binary files /dev/null and b/img/resources/gcp/migration/migrate-compute-engine.png differ diff --git a/img/resources/gcp/ml/vertex-ai.png b/img/resources/gcp/ml/vertex-ai.png new file mode 100644 index 00000000..1173ad42 Binary files /dev/null and b/img/resources/gcp/ml/vertex-ai.png differ diff --git a/img/resources/gcp/network/cloud-ids.png b/img/resources/gcp/network/cloud-ids.png new file mode 100644 index 00000000..2428d544 Binary files /dev/null and b/img/resources/gcp/network/cloud-ids.png differ diff --git a/img/resources/gcp/network/network-connectivity-center.png b/img/resources/gcp/network/network-connectivity-center.png new file mode 100644 index 00000000..dd5644f8 Binary files /dev/null and b/img/resources/gcp/network/network-connectivity-center.png differ diff --git a/img/resources/gcp/network/network-intelligence-center.png b/img/resources/gcp/network/network-intelligence-center.png new file mode 100644 index 00000000..af1bfe29 Binary files /dev/null and b/img/resources/gcp/network/network-intelligence-center.png differ diff --git a/img/resources/gcp/network/network-security.png b/img/resources/gcp/network/network-security.png new file mode 100644 index 00000000..182c058e Binary files /dev/null and b/img/resources/gcp/network/network-security.png differ diff --git a/img/resources/gcp/network/network-tiers.png b/img/resources/gcp/network/network-tiers.png new file mode 100644 index 00000000..e0ae48eb Binary files /dev/null and b/img/resources/gcp/network/network-tiers.png differ diff --git a/img/resources/gcp/network/network-topology.png b/img/resources/gcp/network/network-topology.png new file mode 100644 index 00000000..618aa17d Binary files /dev/null and b/img/resources/gcp/network/network-topology.png differ diff --git a/img/resources/gcp/network/private-service-connect.png b/img/resources/gcp/network/private-service-connect.png new file mode 100644 index 00000000..4be103b9 Binary files /dev/null and b/img/resources/gcp/network/private-service-connect.png differ diff --git a/img/resources/gcp/network/service-mesh.png b/img/resources/gcp/network/service-mesh.png new file mode 100644 index 00000000..aff80527 Binary files /dev/null and b/img/resources/gcp/network/service-mesh.png differ diff --git a/img/resources/gcp/security/access-context-manager.png b/img/resources/gcp/security/access-context-manager.png new file mode 100644 index 00000000..db96bd43 Binary files /dev/null and b/img/resources/gcp/security/access-context-manager.png differ diff --git a/img/resources/gcp/security/assured-workloads.png b/img/resources/gcp/security/assured-workloads.png new file mode 100644 index 00000000..36090ae8 Binary files /dev/null and b/img/resources/gcp/security/assured-workloads.png differ diff --git a/img/resources/gcp/security/certificate-authority-service.png b/img/resources/gcp/security/certificate-authority-service.png new file mode 100644 index 00000000..e5b7c4a2 Binary files /dev/null and b/img/resources/gcp/security/certificate-authority-service.png differ diff --git a/img/resources/gcp/security/certificate-manager.png b/img/resources/gcp/security/certificate-manager.png new file mode 100644 index 00000000..5b189b13 Binary files /dev/null and b/img/resources/gcp/security/certificate-manager.png differ diff --git a/img/resources/gcp/security/cloud-asset-inventory.png b/img/resources/gcp/security/cloud-asset-inventory.png new file mode 100644 index 00000000..c2478d61 Binary files /dev/null and b/img/resources/gcp/security/cloud-asset-inventory.png differ diff --git a/img/resources/gcp/security/secret-manager.png b/img/resources/gcp/security/secret-manager.png new file mode 100644 index 00000000..b246f535 Binary files /dev/null and b/img/resources/gcp/security/secret-manager.png differ diff --git a/img/resources/gcp/security/security-health-advisor.png b/img/resources/gcp/security/security-health-advisor.png new file mode 100644 index 00000000..a67866b2 Binary files /dev/null and b/img/resources/gcp/security/security-health-advisor.png differ diff --git a/img/resources/gcp/storage/local-ssd.png b/img/resources/gcp/storage/local-ssd.png new file mode 100644 index 00000000..fd20a8cf Binary files /dev/null and b/img/resources/gcp/storage/local-ssd.png differ diff --git a/img/resources/gis/data/overturemaps.png b/img/resources/gis/data/overturemaps.png new file mode 100644 index 00000000..f5e99046 Binary files /dev/null and b/img/resources/gis/data/overturemaps.png differ diff --git a/img/resources/onprem/database/duckdb.png b/img/resources/onprem/database/duckdb.png new file mode 100644 index 00000000..6c99582a Binary files /dev/null and b/img/resources/onprem/database/duckdb.png differ diff --git a/img/resources/onprem/database/qdrant.png b/img/resources/onprem/database/qdrant.png new file mode 100644 index 00000000..958e945b Binary files /dev/null and b/img/resources/onprem/database/qdrant.png differ diff --git a/img/resources/onprem/network/cisco-router.png b/img/resources/onprem/network/cisco-router.png new file mode 100644 index 00000000..305ea256 Binary files /dev/null and b/img/resources/onprem/network/cisco-router.png differ diff --git a/img/resources/onprem/network/cisco-switch-l2.png b/img/resources/onprem/network/cisco-switch-l2.png new file mode 100644 index 00000000..f5d1873c Binary files /dev/null and b/img/resources/onprem/network/cisco-switch-l2.png differ diff --git a/img/resources/onprem/network/cisco-switch-l3.png b/img/resources/onprem/network/cisco-switch-l3.png new file mode 100644 index 00000000..343bca64 Binary files /dev/null and b/img/resources/onprem/network/cisco-switch-l3.png differ diff --git a/img/resources/openstack/containerservices/kuryr.png b/img/resources/openstack/containerservices/kuryr.png index 28cac01a..608e64ca 100644 Binary files a/img/resources/openstack/containerservices/kuryr.png and b/img/resources/openstack/containerservices/kuryr.png differ diff --git a/img/resources/openstack/deployment/charms.png b/img/resources/openstack/deployment/charms.png index cbd2e67d..dd040c00 100644 Binary files a/img/resources/openstack/deployment/charms.png and b/img/resources/openstack/deployment/charms.png differ diff --git a/img/resources/openstack/deployment/chef.png b/img/resources/openstack/deployment/chef.png index dba94e6b..1e47dc93 100644 Binary files a/img/resources/openstack/deployment/chef.png and b/img/resources/openstack/deployment/chef.png differ diff --git a/img/resources/openstack/deployment/kolla.png b/img/resources/openstack/deployment/kolla.png index c9e30a67..9f74c917 100644 Binary files a/img/resources/openstack/deployment/kolla.png and b/img/resources/openstack/deployment/kolla.png differ diff --git a/img/resources/openstack/deployment/tripleo.png b/img/resources/openstack/deployment/tripleo.png index 6ae7c083..21afc5b2 100644 Binary files a/img/resources/openstack/deployment/tripleo.png and b/img/resources/openstack/deployment/tripleo.png differ diff --git a/img/resources/openstack/frontend/horizon.png b/img/resources/openstack/frontend/horizon.png index 04b34ea2..569377de 100644 Binary files a/img/resources/openstack/frontend/horizon.png and b/img/resources/openstack/frontend/horizon.png differ diff --git a/img/resources/openstack/monitoring/monasca.png b/img/resources/openstack/monitoring/monasca.png index 005cc0c8..c9bc3771 100644 Binary files a/img/resources/openstack/monitoring/monasca.png and b/img/resources/openstack/monitoring/monasca.png differ diff --git a/img/resources/openstack/monitoring/telemetry.png b/img/resources/openstack/monitoring/telemetry.png index e78979fc..59f83aa6 100644 Binary files a/img/resources/openstack/monitoring/telemetry.png and b/img/resources/openstack/monitoring/telemetry.png differ diff --git a/img/resources/openstack/multiregion/tricircle.png b/img/resources/openstack/multiregion/tricircle.png index 03f5bd52..4931aebe 100644 Binary files a/img/resources/openstack/multiregion/tricircle.png and b/img/resources/openstack/multiregion/tricircle.png differ diff --git a/img/resources/openstack/networking/designate.png b/img/resources/openstack/networking/designate.png index 552cbb36..940aee7b 100644 Binary files a/img/resources/openstack/networking/designate.png and b/img/resources/openstack/networking/designate.png differ diff --git a/img/resources/openstack/networking/neutron.png b/img/resources/openstack/networking/neutron.png index b85cf456..7d2b1fbf 100644 Binary files a/img/resources/openstack/networking/neutron.png and b/img/resources/openstack/networking/neutron.png differ diff --git a/img/resources/openstack/networking/octavia.png b/img/resources/openstack/networking/octavia.png index 5b361390..69a87048 100644 Binary files a/img/resources/openstack/networking/octavia.png and b/img/resources/openstack/networking/octavia.png differ diff --git a/img/resources/openstack/nfv/tacker.png b/img/resources/openstack/nfv/tacker.png index 4ca8359e..15a5424c 100644 Binary files a/img/resources/openstack/nfv/tacker.png and b/img/resources/openstack/nfv/tacker.png differ diff --git a/img/resources/openstack/openstack.png b/img/resources/openstack/openstack.png index 463c924a..75152a7c 100644 Binary files a/img/resources/openstack/openstack.png and b/img/resources/openstack/openstack.png differ diff --git a/img/resources/openstack/optimization/congress.png b/img/resources/openstack/optimization/congress.png index 6ebaa94e..1b16e149 100644 Binary files a/img/resources/openstack/optimization/congress.png and b/img/resources/openstack/optimization/congress.png differ diff --git a/img/resources/openstack/optimization/rally.png b/img/resources/openstack/optimization/rally.png index 64cdb694..2eec8b65 100644 Binary files a/img/resources/openstack/optimization/rally.png and b/img/resources/openstack/optimization/rally.png differ diff --git a/img/resources/openstack/optimization/vitrage.png b/img/resources/openstack/optimization/vitrage.png index 4f629faa..89bbdbe6 100644 Binary files a/img/resources/openstack/optimization/vitrage.png and b/img/resources/openstack/optimization/vitrage.png differ diff --git a/img/resources/openstack/optimization/watcher.png b/img/resources/openstack/optimization/watcher.png index a00f9bf8..8fdbb6d9 100644 Binary files a/img/resources/openstack/optimization/watcher.png and b/img/resources/openstack/optimization/watcher.png differ diff --git a/img/resources/openstack/orchestration/blazar.png b/img/resources/openstack/orchestration/blazar.png index 3fa929bc..c0a39b99 100644 Binary files a/img/resources/openstack/orchestration/blazar.png and b/img/resources/openstack/orchestration/blazar.png differ diff --git a/img/resources/openstack/orchestration/heat.png b/img/resources/openstack/orchestration/heat.png index 80ae4e06..d7291328 100644 Binary files a/img/resources/openstack/orchestration/heat.png and b/img/resources/openstack/orchestration/heat.png differ diff --git a/img/resources/openstack/orchestration/mistral.png b/img/resources/openstack/orchestration/mistral.png index 570f61f6..96bb25f0 100644 Binary files a/img/resources/openstack/orchestration/mistral.png and b/img/resources/openstack/orchestration/mistral.png differ diff --git a/img/resources/openstack/orchestration/senlin.png b/img/resources/openstack/orchestration/senlin.png index e308304c..2c5c2c60 100644 Binary files a/img/resources/openstack/orchestration/senlin.png and b/img/resources/openstack/orchestration/senlin.png differ diff --git a/img/resources/openstack/orchestration/zaqar.png b/img/resources/openstack/orchestration/zaqar.png index 0c3987c2..ac9947fa 100644 Binary files a/img/resources/openstack/orchestration/zaqar.png and b/img/resources/openstack/orchestration/zaqar.png differ diff --git a/img/resources/openstack/packaging/loci.png b/img/resources/openstack/packaging/loci.png index fd40771b..5f277a4d 100644 Binary files a/img/resources/openstack/packaging/loci.png and b/img/resources/openstack/packaging/loci.png differ diff --git a/img/resources/openstack/packaging/puppet.png b/img/resources/openstack/packaging/puppet.png index 9771383f..78e80bff 100644 Binary files a/img/resources/openstack/packaging/puppet.png and b/img/resources/openstack/packaging/puppet.png differ diff --git a/img/resources/openstack/packaging/rpm.png b/img/resources/openstack/packaging/rpm.png index 9f86b8a3..ad93fc5c 100644 Binary files a/img/resources/openstack/packaging/rpm.png and b/img/resources/openstack/packaging/rpm.png differ diff --git a/img/resources/openstack/sharedservices/barbican.png b/img/resources/openstack/sharedservices/barbican.png index aeeca563..b5292c55 100644 Binary files a/img/resources/openstack/sharedservices/barbican.png and b/img/resources/openstack/sharedservices/barbican.png differ diff --git a/img/resources/openstack/sharedservices/glance.png b/img/resources/openstack/sharedservices/glance.png index ccfa08ca..cc1fe21c 100644 Binary files a/img/resources/openstack/sharedservices/glance.png and b/img/resources/openstack/sharedservices/glance.png differ diff --git a/img/resources/openstack/sharedservices/karbor.png b/img/resources/openstack/sharedservices/karbor.png index 61156203..74b8bd3e 100644 Binary files a/img/resources/openstack/sharedservices/karbor.png and b/img/resources/openstack/sharedservices/karbor.png differ diff --git a/img/resources/openstack/sharedservices/keystone.png b/img/resources/openstack/sharedservices/keystone.png index 75e49fab..3617cc45 100644 Binary files a/img/resources/openstack/sharedservices/keystone.png and b/img/resources/openstack/sharedservices/keystone.png differ diff --git a/img/resources/openstack/sharedservices/searchlight.png b/img/resources/openstack/sharedservices/searchlight.png index c5122062..e0f47405 100644 Binary files a/img/resources/openstack/sharedservices/searchlight.png and b/img/resources/openstack/sharedservices/searchlight.png differ diff --git a/img/resources/openstack/storage/cinder.png b/img/resources/openstack/storage/cinder.png index 14bb2a4e..3d9304d3 100644 Binary files a/img/resources/openstack/storage/cinder.png and b/img/resources/openstack/storage/cinder.png differ diff --git a/img/resources/openstack/storage/manila.png b/img/resources/openstack/storage/manila.png index 5603646e..eebbe511 100644 Binary files a/img/resources/openstack/storage/manila.png and b/img/resources/openstack/storage/manila.png differ diff --git a/img/resources/openstack/storage/swift.png b/img/resources/openstack/storage/swift.png index 6e0a28b5..5ac0fd52 100644 Binary files a/img/resources/openstack/storage/swift.png and b/img/resources/openstack/storage/swift.png differ diff --git a/img/resources/openstack/user/openstackclient.png b/img/resources/openstack/user/openstackclient.png index c3894a69..f4611b06 100644 Binary files a/img/resources/openstack/user/openstackclient.png and b/img/resources/openstack/user/openstackclient.png differ diff --git a/img/resources/openstack/workloadprovisioning/magnum.png b/img/resources/openstack/workloadprovisioning/magnum.png index cb571c91..118ba40b 100644 Binary files a/img/resources/openstack/workloadprovisioning/magnum.png and b/img/resources/openstack/workloadprovisioning/magnum.png differ diff --git a/img/resources/openstack/workloadprovisioning/sahara.png b/img/resources/openstack/workloadprovisioning/sahara.png index df8c9459..34a066b8 100644 Binary files a/img/resources/openstack/workloadprovisioning/sahara.png and b/img/resources/openstack/workloadprovisioning/sahara.png differ diff --git a/img/resources/openstack/workloadprovisioning/trove.png b/img/resources/openstack/workloadprovisioning/trove.png index 8ac8c70f..3cad74cc 100644 Binary files a/img/resources/openstack/workloadprovisioning/trove.png and b/img/resources/openstack/workloadprovisioning/trove.png differ diff --git a/img/resources/outscale/compute/compute.png b/img/resources/outscale/compute/compute.png index 1058341f..2c74f942 100644 Binary files a/img/resources/outscale/compute/compute.png and b/img/resources/outscale/compute/compute.png differ diff --git a/img/resources/outscale/compute/direct-connect.png b/img/resources/outscale/compute/direct-connect.png index 045cda16..530bbb54 100644 Binary files a/img/resources/outscale/compute/direct-connect.png and b/img/resources/outscale/compute/direct-connect.png differ diff --git a/img/resources/outscale/network/client-vpn.png b/img/resources/outscale/network/client-vpn.png index 278eabfc..5c45772e 100644 Binary files a/img/resources/outscale/network/client-vpn.png and b/img/resources/outscale/network/client-vpn.png differ diff --git a/img/resources/outscale/network/internet-service.png b/img/resources/outscale/network/internet-service.png index 57e1380c..6033552f 100644 Binary files a/img/resources/outscale/network/internet-service.png and b/img/resources/outscale/network/internet-service.png differ diff --git a/img/resources/outscale/network/load-balancer.png b/img/resources/outscale/network/load-balancer.png index 7108bb91..d31ea0bb 100644 Binary files a/img/resources/outscale/network/load-balancer.png and b/img/resources/outscale/network/load-balancer.png differ diff --git a/img/resources/outscale/network/nat-service.png b/img/resources/outscale/network/nat-service.png index 083b43ab..c0ff3d23 100644 Binary files a/img/resources/outscale/network/nat-service.png and b/img/resources/outscale/network/nat-service.png differ diff --git a/img/resources/outscale/network/net.png b/img/resources/outscale/network/net.png index de955cfa..211dda04 100644 Binary files a/img/resources/outscale/network/net.png and b/img/resources/outscale/network/net.png differ diff --git a/img/resources/outscale/network/site-to-site-vpng.png b/img/resources/outscale/network/site-to-site-vpng.png index e2245af4..e3789c40 100644 Binary files a/img/resources/outscale/network/site-to-site-vpng.png and b/img/resources/outscale/network/site-to-site-vpng.png differ diff --git a/img/resources/outscale/outscale.png b/img/resources/outscale/outscale.png index 6c074ac4..526b7f04 100644 Binary files a/img/resources/outscale/outscale.png and b/img/resources/outscale/outscale.png differ diff --git a/img/resources/outscale/security/firewall.png b/img/resources/outscale/security/firewall.png index 7a08bd71..7ba23881 100644 Binary files a/img/resources/outscale/security/firewall.png and b/img/resources/outscale/security/firewall.png differ diff --git a/img/resources/outscale/security/identity-and-access-management.png b/img/resources/outscale/security/identity-and-access-management.png index d7e82e23..e9bd67ed 100644 Binary files a/img/resources/outscale/security/identity-and-access-management.png and b/img/resources/outscale/security/identity-and-access-management.png differ diff --git a/img/resources/outscale/storage/simple-storage-service.png b/img/resources/outscale/storage/simple-storage-service.png index 31b6150c..dcb291cb 100644 Binary files a/img/resources/outscale/storage/simple-storage-service.png and b/img/resources/outscale/storage/simple-storage-service.png differ diff --git a/img/resources/outscale/storage/storage.png b/img/resources/outscale/storage/storage.png index 9af510bf..55d931f1 100644 Binary files a/img/resources/outscale/storage/storage.png and b/img/resources/outscale/storage/storage.png differ diff --git a/img/resources/programming/flowchart/action.png b/img/resources/programming/flowchart/action.png index 25fb02a3..28205f4b 100644 Binary files a/img/resources/programming/flowchart/action.png and b/img/resources/programming/flowchart/action.png differ diff --git a/img/resources/programming/flowchart/collate.png b/img/resources/programming/flowchart/collate.png index abb16cec..2d5be1c8 100644 Binary files a/img/resources/programming/flowchart/collate.png and b/img/resources/programming/flowchart/collate.png differ diff --git a/img/resources/programming/flowchart/database.png b/img/resources/programming/flowchart/database.png index 8b8f1793..78eb1718 100644 Binary files a/img/resources/programming/flowchart/database.png and b/img/resources/programming/flowchart/database.png differ diff --git a/img/resources/programming/flowchart/decision.png b/img/resources/programming/flowchart/decision.png index 858f4574..40b9293d 100644 Binary files a/img/resources/programming/flowchart/decision.png and b/img/resources/programming/flowchart/decision.png differ diff --git a/img/resources/programming/flowchart/delay.png b/img/resources/programming/flowchart/delay.png index 3ff0d465..b859d173 100644 Binary files a/img/resources/programming/flowchart/delay.png and b/img/resources/programming/flowchart/delay.png differ diff --git a/img/resources/programming/flowchart/display.png b/img/resources/programming/flowchart/display.png index 291f9fd2..1d50abfc 100644 Binary files a/img/resources/programming/flowchart/display.png and b/img/resources/programming/flowchart/display.png differ diff --git a/img/resources/programming/flowchart/document.png b/img/resources/programming/flowchart/document.png index 24f12baf..02bb83c8 100644 Binary files a/img/resources/programming/flowchart/document.png and b/img/resources/programming/flowchart/document.png differ diff --git a/img/resources/programming/flowchart/input-output.png b/img/resources/programming/flowchart/input-output.png index 8b3d4a85..4211d0a7 100644 Binary files a/img/resources/programming/flowchart/input-output.png and b/img/resources/programming/flowchart/input-output.png differ diff --git a/img/resources/programming/flowchart/inspection.png b/img/resources/programming/flowchart/inspection.png index b621a20e..64fbdc0d 100644 Binary files a/img/resources/programming/flowchart/inspection.png and b/img/resources/programming/flowchart/inspection.png differ diff --git a/img/resources/programming/flowchart/internal-storage.png b/img/resources/programming/flowchart/internal-storage.png index c7895cdf..65baf6ef 100644 Binary files a/img/resources/programming/flowchart/internal-storage.png and b/img/resources/programming/flowchart/internal-storage.png differ diff --git a/img/resources/programming/flowchart/loop-limit.png b/img/resources/programming/flowchart/loop-limit.png index 7dc86533..29813f99 100644 Binary files a/img/resources/programming/flowchart/loop-limit.png and b/img/resources/programming/flowchart/loop-limit.png differ diff --git a/img/resources/programming/flowchart/manual-input.png b/img/resources/programming/flowchart/manual-input.png index 40911860..517786ac 100644 Binary files a/img/resources/programming/flowchart/manual-input.png and b/img/resources/programming/flowchart/manual-input.png differ diff --git a/img/resources/programming/flowchart/manual-loop.png b/img/resources/programming/flowchart/manual-loop.png index efcb9a46..13d1e9f0 100644 Binary files a/img/resources/programming/flowchart/manual-loop.png and b/img/resources/programming/flowchart/manual-loop.png differ diff --git a/img/resources/programming/flowchart/merge.png b/img/resources/programming/flowchart/merge.png index c99ac4a5..d6a5851b 100644 Binary files a/img/resources/programming/flowchart/merge.png and b/img/resources/programming/flowchart/merge.png differ diff --git a/img/resources/programming/flowchart/multiple-documents.png b/img/resources/programming/flowchart/multiple-documents.png index 21299dba..ed376aac 100644 Binary files a/img/resources/programming/flowchart/multiple-documents.png and b/img/resources/programming/flowchart/multiple-documents.png differ diff --git a/img/resources/programming/flowchart/off-page-connector-left.png b/img/resources/programming/flowchart/off-page-connector-left.png index 513b8250..afc8d5bb 100644 Binary files a/img/resources/programming/flowchart/off-page-connector-left.png and b/img/resources/programming/flowchart/off-page-connector-left.png differ diff --git a/img/resources/programming/flowchart/off-page-connector-right.png b/img/resources/programming/flowchart/off-page-connector-right.png index bde5bae0..a1282501 100644 Binary files a/img/resources/programming/flowchart/off-page-connector-right.png and b/img/resources/programming/flowchart/off-page-connector-right.png differ diff --git a/img/resources/programming/flowchart/or.png b/img/resources/programming/flowchart/or.png index a30f87bf..2cb2402f 100644 Binary files a/img/resources/programming/flowchart/or.png and b/img/resources/programming/flowchart/or.png differ diff --git a/img/resources/programming/flowchart/predefined-process.png b/img/resources/programming/flowchart/predefined-process.png index c9e87664..f052d7bf 100644 Binary files a/img/resources/programming/flowchart/predefined-process.png and b/img/resources/programming/flowchart/predefined-process.png differ diff --git a/img/resources/programming/flowchart/preparation.png b/img/resources/programming/flowchart/preparation.png index 6462a16a..50aab196 100644 Binary files a/img/resources/programming/flowchart/preparation.png and b/img/resources/programming/flowchart/preparation.png differ diff --git a/img/resources/programming/flowchart/sort.png b/img/resources/programming/flowchart/sort.png index 5eac8808..08718b4a 100644 Binary files a/img/resources/programming/flowchart/sort.png and b/img/resources/programming/flowchart/sort.png differ diff --git a/img/resources/programming/flowchart/start-end.png b/img/resources/programming/flowchart/start-end.png index 772c0d16..4772c367 100644 Binary files a/img/resources/programming/flowchart/start-end.png and b/img/resources/programming/flowchart/start-end.png differ diff --git a/img/resources/programming/flowchart/stored-data.png b/img/resources/programming/flowchart/stored-data.png index 77eb7601..972e5609 100644 Binary files a/img/resources/programming/flowchart/stored-data.png and b/img/resources/programming/flowchart/stored-data.png differ diff --git a/img/resources/programming/flowchart/summing-junction.png b/img/resources/programming/flowchart/summing-junction.png index 63aeb001..47e876b3 100644 Binary files a/img/resources/programming/flowchart/summing-junction.png and b/img/resources/programming/flowchart/summing-junction.png differ diff --git a/img/resources/programming/framework/angular.png b/img/resources/programming/framework/angular.png index d7136e5d..836a59be 100644 Binary files a/img/resources/programming/framework/angular.png and b/img/resources/programming/framework/angular.png differ diff --git a/img/resources/programming/framework/backbone.png b/img/resources/programming/framework/backbone.png index e71ba370..b0b80d9a 100644 Binary files a/img/resources/programming/framework/backbone.png and b/img/resources/programming/framework/backbone.png differ diff --git a/img/resources/programming/framework/camel.png b/img/resources/programming/framework/camel.png index ec4aae83..f71ba159 100644 Binary files a/img/resources/programming/framework/camel.png and b/img/resources/programming/framework/camel.png differ diff --git a/img/resources/programming/framework/django.png b/img/resources/programming/framework/django.png index b3325706..13fdc7ae 100644 Binary files a/img/resources/programming/framework/django.png and b/img/resources/programming/framework/django.png differ diff --git a/img/resources/programming/framework/dotnet.png b/img/resources/programming/framework/dotnet.png index 9b1d8e3c..851e1b76 100644 Binary files a/img/resources/programming/framework/dotnet.png and b/img/resources/programming/framework/dotnet.png differ diff --git a/img/resources/programming/framework/ember.png b/img/resources/programming/framework/ember.png index b07b69bf..88d0c89b 100644 Binary files a/img/resources/programming/framework/ember.png and b/img/resources/programming/framework/ember.png differ diff --git a/img/resources/programming/framework/fastapi.png b/img/resources/programming/framework/fastapi.png index 3c72fc75..d79d51bf 100644 Binary files a/img/resources/programming/framework/fastapi.png and b/img/resources/programming/framework/fastapi.png differ diff --git a/img/resources/programming/framework/flask.png b/img/resources/programming/framework/flask.png index c8781c75..18c396a6 100644 Binary files a/img/resources/programming/framework/flask.png and b/img/resources/programming/framework/flask.png differ diff --git a/img/resources/programming/framework/flutter.png b/img/resources/programming/framework/flutter.png index a48307a4..409896d4 100644 Binary files a/img/resources/programming/framework/flutter.png and b/img/resources/programming/framework/flutter.png differ diff --git a/img/resources/programming/framework/graphql.png b/img/resources/programming/framework/graphql.png index 3460f4f4..fe9e52d5 100644 Binary files a/img/resources/programming/framework/graphql.png and b/img/resources/programming/framework/graphql.png differ diff --git a/img/resources/programming/framework/hibernate.png b/img/resources/programming/framework/hibernate.png index 2fff1f44..35a60287 100644 Binary files a/img/resources/programming/framework/hibernate.png and b/img/resources/programming/framework/hibernate.png differ diff --git a/img/resources/programming/framework/jhipster.png b/img/resources/programming/framework/jhipster.png index 69850987..cde8aa9c 100644 Binary files a/img/resources/programming/framework/jhipster.png and b/img/resources/programming/framework/jhipster.png differ diff --git a/img/resources/programming/framework/laravel.png b/img/resources/programming/framework/laravel.png index 4d8c02b7..46d44da6 100644 Binary files a/img/resources/programming/framework/laravel.png and b/img/resources/programming/framework/laravel.png differ diff --git a/img/resources/programming/framework/micronaut.png b/img/resources/programming/framework/micronaut.png index 111dde86..9bdc9780 100644 Binary files a/img/resources/programming/framework/micronaut.png and b/img/resources/programming/framework/micronaut.png differ diff --git a/img/resources/programming/framework/nextjs.png b/img/resources/programming/framework/nextjs.png index ac4a9d04..3306955a 100644 Binary files a/img/resources/programming/framework/nextjs.png and b/img/resources/programming/framework/nextjs.png differ diff --git a/img/resources/programming/framework/phoenix.png b/img/resources/programming/framework/phoenix.png index b3a9569c..ca32175f 100644 Binary files a/img/resources/programming/framework/phoenix.png and b/img/resources/programming/framework/phoenix.png differ diff --git a/img/resources/programming/framework/rails.png b/img/resources/programming/framework/rails.png index ffeb9e01..a989a826 100644 Binary files a/img/resources/programming/framework/rails.png and b/img/resources/programming/framework/rails.png differ diff --git a/img/resources/programming/framework/react.png b/img/resources/programming/framework/react.png index a0c605c3..cc28869b 100644 Binary files a/img/resources/programming/framework/react.png and b/img/resources/programming/framework/react.png differ diff --git a/img/resources/programming/framework/spring.png b/img/resources/programming/framework/spring.png index 2576b6d5..575a8a03 100644 Binary files a/img/resources/programming/framework/spring.png and b/img/resources/programming/framework/spring.png differ diff --git a/img/resources/programming/framework/sqlpage.png b/img/resources/programming/framework/sqlpage.png index 45c07b13..1486241f 100644 Binary files a/img/resources/programming/framework/sqlpage.png and b/img/resources/programming/framework/sqlpage.png differ diff --git a/img/resources/programming/framework/starlette.png b/img/resources/programming/framework/starlette.png index 12f5a1f9..b04720c9 100644 Binary files a/img/resources/programming/framework/starlette.png and b/img/resources/programming/framework/starlette.png differ diff --git a/img/resources/programming/framework/svelte.png b/img/resources/programming/framework/svelte.png index 6eaf519d..463cc473 100644 Binary files a/img/resources/programming/framework/svelte.png and b/img/resources/programming/framework/svelte.png differ diff --git a/img/resources/programming/framework/vercel.png b/img/resources/programming/framework/vercel.png index e26c992b..6277be3f 100644 Binary files a/img/resources/programming/framework/vercel.png and b/img/resources/programming/framework/vercel.png differ diff --git a/img/resources/programming/framework/vue.png b/img/resources/programming/framework/vue.png index ffbb717a..69d44b09 100644 Binary files a/img/resources/programming/framework/vue.png and b/img/resources/programming/framework/vue.png differ diff --git a/img/resources/programming/language/bash.png b/img/resources/programming/language/bash.png index 2dc7d562..e817fcd4 100644 Binary files a/img/resources/programming/language/bash.png and b/img/resources/programming/language/bash.png differ diff --git a/img/resources/programming/language/c.png b/img/resources/programming/language/c.png index e7520705..7aeaf3ae 100644 Binary files a/img/resources/programming/language/c.png and b/img/resources/programming/language/c.png differ diff --git a/img/resources/programming/language/cpp.png b/img/resources/programming/language/cpp.png index 6f462f27..9843cd56 100644 Binary files a/img/resources/programming/language/cpp.png and b/img/resources/programming/language/cpp.png differ diff --git a/img/resources/programming/language/csharp.png b/img/resources/programming/language/csharp.png index 3d9062d4..01d9b7a4 100644 Binary files a/img/resources/programming/language/csharp.png and b/img/resources/programming/language/csharp.png differ diff --git a/img/resources/programming/language/dart.png b/img/resources/programming/language/dart.png index ece3c647..265af165 100644 Binary files a/img/resources/programming/language/dart.png and b/img/resources/programming/language/dart.png differ diff --git a/img/resources/programming/language/elixir.png b/img/resources/programming/language/elixir.png index 8e49066b..2ef4cafa 100644 Binary files a/img/resources/programming/language/elixir.png and b/img/resources/programming/language/elixir.png differ diff --git a/img/resources/programming/language/erlang.png b/img/resources/programming/language/erlang.png index 21b75308..389d5186 100644 Binary files a/img/resources/programming/language/erlang.png and b/img/resources/programming/language/erlang.png differ diff --git a/img/resources/programming/language/go.png b/img/resources/programming/language/go.png index 051f297e..cf6aa866 100644 Binary files a/img/resources/programming/language/go.png and b/img/resources/programming/language/go.png differ diff --git a/img/resources/programming/language/java.png b/img/resources/programming/language/java.png index 94375f0b..366793d3 100644 Binary files a/img/resources/programming/language/java.png and b/img/resources/programming/language/java.png differ diff --git a/img/resources/programming/language/javascript.png b/img/resources/programming/language/javascript.png index e8173f12..954077d8 100644 Binary files a/img/resources/programming/language/javascript.png and b/img/resources/programming/language/javascript.png differ diff --git a/img/resources/programming/language/kotlin.png b/img/resources/programming/language/kotlin.png index 7f204d32..f9c6f90b 100644 Binary files a/img/resources/programming/language/kotlin.png and b/img/resources/programming/language/kotlin.png differ diff --git a/img/resources/programming/language/latex.png b/img/resources/programming/language/latex.png index 54281014..c2243e7a 100644 Binary files a/img/resources/programming/language/latex.png and b/img/resources/programming/language/latex.png differ diff --git a/img/resources/programming/language/matlab.png b/img/resources/programming/language/matlab.png index d4b5c69c..2b4b82a2 100644 Binary files a/img/resources/programming/language/matlab.png and b/img/resources/programming/language/matlab.png differ diff --git a/img/resources/programming/language/nodejs.png b/img/resources/programming/language/nodejs.png index 91ae26f3..42c22b0b 100644 Binary files a/img/resources/programming/language/nodejs.png and b/img/resources/programming/language/nodejs.png differ diff --git a/img/resources/programming/language/php.png b/img/resources/programming/language/php.png index 542b6e4a..3e494672 100644 Binary files a/img/resources/programming/language/php.png and b/img/resources/programming/language/php.png differ diff --git a/img/resources/programming/language/python.png b/img/resources/programming/language/python.png index 8b5a2752..6b7e76de 100644 Binary files a/img/resources/programming/language/python.png and b/img/resources/programming/language/python.png differ diff --git a/img/resources/programming/language/r.png b/img/resources/programming/language/r.png index fb365d8a..1771a5de 100644 Binary files a/img/resources/programming/language/r.png and b/img/resources/programming/language/r.png differ diff --git a/img/resources/programming/language/ruby.png b/img/resources/programming/language/ruby.png index 4f8f4673..1253ae70 100644 Binary files a/img/resources/programming/language/ruby.png and b/img/resources/programming/language/ruby.png differ diff --git a/img/resources/programming/language/rust.png b/img/resources/programming/language/rust.png index 6ef1ae9c..a9f7fa15 100644 Binary files a/img/resources/programming/language/rust.png and b/img/resources/programming/language/rust.png differ diff --git a/img/resources/programming/language/sql.png b/img/resources/programming/language/sql.png index ffbb6bc5..aab80a12 100644 Binary files a/img/resources/programming/language/sql.png and b/img/resources/programming/language/sql.png differ diff --git a/img/resources/programming/language/swift.png b/img/resources/programming/language/swift.png index 000b8330..f1f79dfc 100644 Binary files a/img/resources/programming/language/swift.png and b/img/resources/programming/language/swift.png differ diff --git a/img/resources/programming/language/typescript.png b/img/resources/programming/language/typescript.png index e3ec54b3..8ad64799 100644 Binary files a/img/resources/programming/language/typescript.png and b/img/resources/programming/language/typescript.png differ diff --git a/img/resources/programming/programming.png b/img/resources/programming/programming.png index 83aab013..13b669ba 100644 Binary files a/img/resources/programming/programming.png and b/img/resources/programming/programming.png differ diff --git a/img/resources/programming/runtime/dapr.png b/img/resources/programming/runtime/dapr.png index ef42cf9c..7c5f1cff 100644 Binary files a/img/resources/programming/runtime/dapr.png and b/img/resources/programming/runtime/dapr.png differ diff --git a/img/resources/saas/alerting/newrelic.png b/img/resources/saas/alerting/newrelic.png index c629c978..908ccd08 100644 Binary files a/img/resources/saas/alerting/newrelic.png and b/img/resources/saas/alerting/newrelic.png differ diff --git a/img/resources/saas/alerting/opsgenie.png b/img/resources/saas/alerting/opsgenie.png index 397864c4..f67e6fc6 100644 Binary files a/img/resources/saas/alerting/opsgenie.png and b/img/resources/saas/alerting/opsgenie.png differ diff --git a/img/resources/saas/alerting/pagerduty.png b/img/resources/saas/alerting/pagerduty.png index 6e6a9742..4e369e30 100644 Binary files a/img/resources/saas/alerting/pagerduty.png and b/img/resources/saas/alerting/pagerduty.png differ diff --git a/img/resources/saas/alerting/pushover.png b/img/resources/saas/alerting/pushover.png index da55e830..fa22a98b 100644 Binary files a/img/resources/saas/alerting/pushover.png and b/img/resources/saas/alerting/pushover.png differ diff --git a/img/resources/saas/alerting/xmatters.png b/img/resources/saas/alerting/xmatters.png index add6806a..60363c39 100644 Binary files a/img/resources/saas/alerting/xmatters.png and b/img/resources/saas/alerting/xmatters.png differ diff --git a/img/resources/saas/analytics/dataform.png b/img/resources/saas/analytics/dataform.png index 1a54527a..c41f16fa 100644 Binary files a/img/resources/saas/analytics/dataform.png and b/img/resources/saas/analytics/dataform.png differ diff --git a/img/resources/saas/analytics/snowflake.png b/img/resources/saas/analytics/snowflake.png index 8c2faffb..b033c494 100644 Binary files a/img/resources/saas/analytics/snowflake.png and b/img/resources/saas/analytics/snowflake.png differ diff --git a/img/resources/saas/analytics/stitch.png b/img/resources/saas/analytics/stitch.png index 35f174f4..7c9e6578 100644 Binary files a/img/resources/saas/analytics/stitch.png and b/img/resources/saas/analytics/stitch.png differ diff --git a/img/resources/saas/automation/n8n.png b/img/resources/saas/automation/n8n.png index 236b5a28..c11098d5 100644 Binary files a/img/resources/saas/automation/n8n.png and b/img/resources/saas/automation/n8n.png differ diff --git a/img/resources/saas/cdn/akamai.png b/img/resources/saas/cdn/akamai.png index 726780d5..2c008ed2 100644 Binary files a/img/resources/saas/cdn/akamai.png and b/img/resources/saas/cdn/akamai.png differ diff --git a/img/resources/saas/cdn/cloudflare.png b/img/resources/saas/cdn/cloudflare.png index 26ce18d0..6b4122d0 100644 Binary files a/img/resources/saas/cdn/cloudflare.png and b/img/resources/saas/cdn/cloudflare.png differ diff --git a/img/resources/saas/cdn/fastly.png b/img/resources/saas/cdn/fastly.png index 0aaf1ca0..6fffd670 100644 Binary files a/img/resources/saas/cdn/fastly.png and b/img/resources/saas/cdn/fastly.png differ diff --git a/img/resources/saas/cdn/imperva.png b/img/resources/saas/cdn/imperva.png new file mode 100644 index 00000000..ee7055c8 Binary files /dev/null and b/img/resources/saas/cdn/imperva.png differ diff --git a/img/resources/saas/chat/line.png b/img/resources/saas/chat/line.png index 300bc7c9..ef77de1b 100644 Binary files a/img/resources/saas/chat/line.png and b/img/resources/saas/chat/line.png differ diff --git a/img/resources/saas/chat/mattermost.png b/img/resources/saas/chat/mattermost.png index 732afcc7..a308a648 100644 Binary files a/img/resources/saas/chat/mattermost.png and b/img/resources/saas/chat/mattermost.png differ diff --git a/img/resources/saas/chat/rocket-chat.png b/img/resources/saas/chat/rocket-chat.png index 70c90d77..0d86cd34 100644 Binary files a/img/resources/saas/chat/rocket-chat.png and b/img/resources/saas/chat/rocket-chat.png differ diff --git a/img/resources/saas/chat/slack.png b/img/resources/saas/chat/slack.png index 53751d50..b2cf219e 100644 Binary files a/img/resources/saas/chat/slack.png and b/img/resources/saas/chat/slack.png differ diff --git a/img/resources/saas/chat/teams.png b/img/resources/saas/chat/teams.png index 823e400b..1819cbe1 100644 Binary files a/img/resources/saas/chat/teams.png and b/img/resources/saas/chat/teams.png differ diff --git a/img/resources/saas/chat/telegram.png b/img/resources/saas/chat/telegram.png index 2b7dbd72..d52b904c 100644 Binary files a/img/resources/saas/chat/telegram.png and b/img/resources/saas/chat/telegram.png differ diff --git a/img/resources/saas/communication/twilio.png b/img/resources/saas/communication/twilio.png index 3b2dc05f..86cbbf53 100644 Binary files a/img/resources/saas/communication/twilio.png and b/img/resources/saas/communication/twilio.png differ diff --git a/img/resources/saas/crm/intercom.png b/img/resources/saas/crm/intercom.png index 9b454955..c49ab848 100644 Binary files a/img/resources/saas/crm/intercom.png and b/img/resources/saas/crm/intercom.png differ diff --git a/img/resources/saas/crm/zendesk.png b/img/resources/saas/crm/zendesk.png index 80d60964..f2b09840 100644 Binary files a/img/resources/saas/crm/zendesk.png and b/img/resources/saas/crm/zendesk.png differ diff --git a/img/resources/saas/filesharing/nextcloud.png b/img/resources/saas/filesharing/nextcloud.png index 1c6c1efc..4370ddfe 100644 Binary files a/img/resources/saas/filesharing/nextcloud.png and b/img/resources/saas/filesharing/nextcloud.png differ diff --git a/img/resources/saas/identity/auth0.png b/img/resources/saas/identity/auth0.png index 6705ca60..41a4d540 100644 Binary files a/img/resources/saas/identity/auth0.png and b/img/resources/saas/identity/auth0.png differ diff --git a/img/resources/saas/identity/okta.png b/img/resources/saas/identity/okta.png index 96f1b011..cfe43169 100644 Binary files a/img/resources/saas/identity/okta.png and b/img/resources/saas/identity/okta.png differ diff --git a/img/resources/saas/logging/datadog.png b/img/resources/saas/logging/datadog.png index 9bc30cb1..d7124bc7 100644 Binary files a/img/resources/saas/logging/datadog.png and b/img/resources/saas/logging/datadog.png differ diff --git a/img/resources/saas/logging/newrelic.png b/img/resources/saas/logging/newrelic.png index 55990ccd..98b5e928 100644 Binary files a/img/resources/saas/logging/newrelic.png and b/img/resources/saas/logging/newrelic.png differ diff --git a/img/resources/saas/logging/papertrail.png b/img/resources/saas/logging/papertrail.png index f9b6bfeb..a411f737 100644 Binary files a/img/resources/saas/logging/papertrail.png and b/img/resources/saas/logging/papertrail.png differ diff --git a/img/resources/saas/media/cloudinary.png b/img/resources/saas/media/cloudinary.png index e4daef59..a771d81e 100644 Binary files a/img/resources/saas/media/cloudinary.png and b/img/resources/saas/media/cloudinary.png differ diff --git a/img/resources/saas/payment/adyen.png b/img/resources/saas/payment/adyen.png new file mode 100644 index 00000000..766ca614 Binary files /dev/null and b/img/resources/saas/payment/adyen.png differ diff --git a/img/resources/saas/payment/amazon-pay.png b/img/resources/saas/payment/amazon-pay.png new file mode 100644 index 00000000..81052326 Binary files /dev/null and b/img/resources/saas/payment/amazon-pay.png differ diff --git a/img/resources/saas/payment/paypal.png b/img/resources/saas/payment/paypal.png new file mode 100644 index 00000000..f4df05a9 Binary files /dev/null and b/img/resources/saas/payment/paypal.png differ diff --git a/img/resources/saas/payment/stripe.png b/img/resources/saas/payment/stripe.png new file mode 100644 index 00000000..7c20e492 Binary files /dev/null and b/img/resources/saas/payment/stripe.png differ diff --git a/img/resources/saas/recommendation/recombee.png b/img/resources/saas/recommendation/recombee.png index 27b29009..866b722b 100644 Binary files a/img/resources/saas/recommendation/recombee.png and b/img/resources/saas/recommendation/recombee.png differ diff --git a/img/resources/saas/saas.png b/img/resources/saas/saas.png index 437ecef0..589c329d 100644 Binary files a/img/resources/saas/saas.png and b/img/resources/saas/saas.png differ diff --git a/img/resources/saas/security/crowdstrike.png b/img/resources/saas/security/crowdstrike.png index 8b5bcc1d..4b2dc92e 100644 Binary files a/img/resources/saas/security/crowdstrike.png and b/img/resources/saas/security/crowdstrike.png differ diff --git a/img/resources/saas/security/sonarqube.png b/img/resources/saas/security/sonarqube.png index 901652bd..b6070ae2 100644 Binary files a/img/resources/saas/security/sonarqube.png and b/img/resources/saas/security/sonarqube.png differ diff --git a/img/resources/saas/social/facebook.png b/img/resources/saas/social/facebook.png old mode 100644 new mode 100755 index 12d0cedc..3ffb63c6 Binary files a/img/resources/saas/social/facebook.png and b/img/resources/saas/social/facebook.png differ diff --git a/img/resources/saas/social/twitter.png b/img/resources/saas/social/twitter.png index f6c6b36a..8320d575 100644 Binary files a/img/resources/saas/social/twitter.png and b/img/resources/saas/social/twitter.png differ diff --git a/img/simple_web_service_with_db_cluster_diagram.png b/img/simple_web_service_with_db_cluster_diagram.png index 56499044..e92681c7 100644 Binary files a/img/simple_web_service_with_db_cluster_diagram.png and b/img/simple_web_service_with_db_cluster_diagram.png differ diff --git a/img/stateful_architecture_diagram.png b/img/stateful_architecture_diagram.png index e3c6c571..d0ad6ccc 100644 Binary files a/img/stateful_architecture_diagram.png and b/img/stateful_architecture_diagram.png differ diff --git a/img/web_service_diagram.png b/img/web_service_diagram.png index 578f59d8..4bd89735 100644 Binary files a/img/web_service_diagram.png and b/img/web_service_diagram.png differ diff --git a/img/web_services_diagram.png b/img/web_services_diagram.png index 95e777c2..c38a0fce 100644 Binary files a/img/web_services_diagram.png and b/img/web_services_diagram.png differ diff --git a/img/workers_diagram.png b/img/workers_diagram.png index c984040d..07591a40 100644 Binary files a/img/workers_diagram.png and b/img/workers_diagram.png differ