Add additional GCP icons, aliases

pull/1174/head
Zack 1 week ago
parent 1e26cfedaa
commit fab715967a

@ -78,7 +78,7 @@ TMPL_MODULE = "module.tmpl"
UPPER_WORDS = { UPPER_WORDS = {
"aws": ("aws", "api", "ebs", "ec2", "efs", "emr", "rds", "ml", "mq", "nat", "vpc", "waf", "sdk"), "aws": ("aws", "api", "ebs", "ec2", "efs", "emr", "rds", "ml", "mq", "nat", "vpc", "waf", "sdk"),
"azure": ("ad", "b2c", "ai", "api", "cdn", "ddos", "dns", "fxt", "hana", "hd", "id", "sap", "sql", "vm", "vpn", "vpc"), "azure": ("ad", "b2c", "ai", "api", "cdn", "ddos", "dns", "fxt", "hana", "hd", "id", "sap", "sql", "vm", "vpn", "vpc"),
"gcp": ("gcp", "ai", "api", "cdn", "dns", "gke", "gpu", "iap", "ml", "nat", "os", "sdk", "sql", "tpu", "vpn"), "gcp": ("gcp", "ai", "api", "cdn", "dns", "gke", "gpu", "iap", "ids", "ml", "nat", "os", "sdk", "sql", "ssd", "tpu", "vpn"),
"firebase": ("ab", "fcm", "ml"), "firebase": ("ab", "fcm", "ml"),
"k8s": ( "k8s": (
"api", "cm", "ccm", "crb", "crd", "ds", "etcd", "hpa", "k8s", "ns", "psp", "pv", "pvc", "rb", "rs", "api", "cm", "ccm", "crb", "crd", "ds", "etcd", "hpa", "k8s", "ns", "psp", "pv", "pvc", "rb", "rs",
@ -289,9 +289,10 @@ ALIASES = {
}, },
"compute": { "compute": {
"AppEngine": "GAE", "AppEngine": "GAE",
"Functions": "GCF",
"ComputeEngine": "GCE", "ComputeEngine": "GCE",
"Functions": "GCF",
"KubernetesEngine": "GKE", "KubernetesEngine": "GKE",
"Run": "CloudRun",
}, },
"database": { "database": {
"Bigtable": "BigTable", "Bigtable": "BigTable",
@ -299,6 +300,9 @@ ALIASES = {
"devtools": { "devtools": {
"ContainerRegistry": "GCR", "ContainerRegistry": "GCR",
}, },
"migration": {
"MigrateComputeEngine": "CE",
},
"ml": { "ml": {
"Automl": "AutoML", "Automl": "AutoML",
"NaturalLanguageAPI": "NLAPI", "NaturalLanguageAPI": "NLAPI",
@ -306,13 +310,17 @@ ALIASES = {
"TextToSpeech": "TTS", "TextToSpeech": "TTS",
}, },
"network": { "network": {
"VirtualPrivateCloud": "VPC" "CloudIDS": "IDS",
"PrivateServiceConnect": "PSC",
"VirtualPrivateCloud": "VPC",
}, },
"security": { "security": {
"AccessContextManager": "ACM",
"KeyManagementService": "KMS", "KeyManagementService": "KMS",
"SecurityCommandCenter": "SCC", "SecurityCommandCenter": "SCC",
}, },
"storage": { "storage": {
"LocalSSD": "SSD",
"Storage": "GCS", "Storage": "GCS",
}, },
}, },

@ -44,6 +44,10 @@ class Genomics(_Analytics):
_icon = "genomics.png" _icon = "genomics.png"
class Looker(_Analytics):
_icon = "looker.png"
class Pubsub(_Analytics): class Pubsub(_Analytics):
_icon = "pubsub.png" _icon = "pubsub.png"

@ -12,6 +12,10 @@ class AppEngine(_Compute):
_icon = "app-engine.png" _icon = "app-engine.png"
class BinaryAuthorization(_Compute):
_icon = "binary-authorization.png"
class ComputeEngine(_Compute): class ComputeEngine(_Compute):
_icon = "compute-engine.png" _icon = "compute-engine.png"
@ -36,6 +40,18 @@ class KubernetesEngine(_Compute):
_icon = "kubernetes-engine.png" _icon = "kubernetes-engine.png"
class OSConfigurationManagement(_Compute):
_icon = "os-configuration-management.png"
class OSInventoryManagement(_Compute):
_icon = "os-inventory-management.png"
class OSPatchManagement(_Compute):
_icon = "os-patch-management.png"
class Run(_Compute): class Run(_Compute):
_icon = "run.png" _icon = "run.png"
@ -43,6 +59,7 @@ class Run(_Compute):
# Aliases # Aliases
GAE = AppEngine GAE = AppEngine
GCF = Functions
GCE = ComputeEngine GCE = ComputeEngine
GCF = Functions
GKE = KubernetesEngine GKE = KubernetesEngine
CloudRun = Run

@ -12,6 +12,10 @@ class Build(_Devtools):
_icon = "build.png" _icon = "build.png"
class CloudShell(_Devtools):
_icon = "cloud-shell.png"
class CodeForIntellij(_Devtools): class CodeForIntellij(_Devtools):
_icon = "code-for-intellij.png" _icon = "code-for-intellij.png"
@ -44,6 +48,10 @@ class SDK(_Devtools):
_icon = "sdk.png" _icon = "sdk.png"
class ServiceCatalog(_Devtools):
_icon = "service-catalog.png"
class SourceRepositories(_Devtools): class SourceRepositories(_Devtools):
_icon = "source-repositories.png" _icon = "source-repositories.png"

@ -0,0 +1,27 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _GCP
class _Management(_GCP):
_type = "management"
_icon_dir = "resources/gcp/management"
class Billing(_Management):
_icon = "billing.png"
class Project(_Management):
_icon = "project.png"
class Quotas(_Management):
_icon = "quotas.png"
class Support(_Management):
_icon = "support.png"
# Aliases

@ -8,8 +8,14 @@ class _Migration(_GCP):
_icon_dir = "resources/gcp/migration" _icon_dir = "resources/gcp/migration"
class MigrateComputeEngine(_Migration):
_icon = "migrate-compute-engine.png"
class TransferAppliance(_Migration): class TransferAppliance(_Migration):
_icon = "transfer-appliance.png" _icon = "transfer-appliance.png"
# Aliases # Aliases
CE = MigrateComputeEngine

@ -84,6 +84,10 @@ class TranslationAPI(_ML):
_icon = "translation-api.png" _icon = "translation-api.png"
class VertexAI(_ML):
_icon = "vertex-ai.png"
class VideoIntelligenceAPI(_ML): class VideoIntelligenceAPI(_ML):
_icon = "video-intelligence-api.png" _icon = "video-intelligence-api.png"

@ -16,6 +16,10 @@ class CDN(_Network):
_icon = "cdn.png" _icon = "cdn.png"
class CloudIDS(_Network):
_icon = "cloud-ids.png"
class DedicatedInterconnect(_Network): class DedicatedInterconnect(_Network):
_icon = "dedicated-interconnect.png" _icon = "dedicated-interconnect.png"
@ -40,6 +44,26 @@ class NAT(_Network):
_icon = "nat.png" _icon = "nat.png"
class NetworkConnectivityCenter(_Network):
_icon = "network-connectivity-center.png"
class NetworkIntelligenceCenter(_Network):
_icon = "network-intelligence-center.png"
class NetworkSecurity(_Network):
_icon = "network-security.png"
class NetworkTiers(_Network):
_icon = "network-tiers.png"
class NetworkTopology(_Network):
_icon = "network-topology.png"
class Network(_Network): class Network(_Network):
_icon = "network.png" _icon = "network.png"
@ -52,6 +76,10 @@ class PremiumNetworkTier(_Network):
_icon = "premium-network-tier.png" _icon = "premium-network-tier.png"
class PrivateServiceConnect(_Network):
_icon = "private-service-connect.png"
class Router(_Network): class Router(_Network):
_icon = "router.png" _icon = "router.png"
@ -60,6 +88,10 @@ class Routes(_Network):
_icon = "routes.png" _icon = "routes.png"
class ServiceMesh(_Network):
_icon = "service-mesh.png"
class StandardNetworkTier(_Network): class StandardNetworkTier(_Network):
_icon = "standard-network-tier.png" _icon = "standard-network-tier.png"
@ -78,4 +110,6 @@ class VPN(_Network):
# Aliases # Aliases
IDS = CloudIDS
PSC = PrivateServiceConnect
VPC = VirtualPrivateCloud VPC = VirtualPrivateCloud

@ -8,6 +8,26 @@ class _Security(_GCP):
_icon_dir = "resources/gcp/security" _icon_dir = "resources/gcp/security"
class AccessContextManager(_Security):
_icon = "access-context-manager.png"
class AssuredWorkloads(_Security):
_icon = "assured-workloads.png"
class CertificateAuthorityService(_Security):
_icon = "certificate-authority-service.png"
class CertificateManager(_Security):
_icon = "certificate-manager.png"
class CloudAssetInventory(_Security):
_icon = "cloud-asset-inventory.png"
class Iam(_Security): class Iam(_Security):
_icon = "iam.png" _icon = "iam.png"
@ -24,15 +44,24 @@ class ResourceManager(_Security):
_icon = "resource-manager.png" _icon = "resource-manager.png"
class SecretManager(_Security):
_icon = "secret-manager.png"
class SecurityCommandCenter(_Security): class SecurityCommandCenter(_Security):
_icon = "security-command-center.png" _icon = "security-command-center.png"
class SecurityHealthAdvisor(_Security):
_icon = "security-health-advisor.png"
class SecurityScanner(_Security): class SecurityScanner(_Security):
_icon = "security-scanner.png" _icon = "security-scanner.png"
# Aliases # Aliases
ACM = AccessContextManager
KMS = KeyManagementService KMS = KeyManagementService
SCC = SecurityCommandCenter SCC = SecurityCommandCenter

@ -12,6 +12,10 @@ class Filestore(_Storage):
_icon = "filestore.png" _icon = "filestore.png"
class LocalSSD(_Storage):
_icon = "local-ssd.png"
class PersistentDisk(_Storage): class PersistentDisk(_Storage):
_icon = "persistent-disk.png" _icon = "persistent-disk.png"
@ -22,4 +26,5 @@ class Storage(_Storage):
# Aliases # Aliases
SSD = LocalSSD
GCS = Storage GCS = Storage

@ -35,6 +35,9 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/analytics/genomics.png" alt="Genomics" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/analytics/genomics.png" alt="Genomics" style="float: left; padding-right: 5px;" >
**diagrams.gcp.analytics.Genomics** **diagrams.gcp.analytics.Genomics**
<img width="30" src="/img/resources/gcp/analytics/looker.png" alt="Looker" style="float: left; padding-right: 5px;" >
**diagrams.gcp.analytics.Looker**
<img width="30" src="/img/resources/gcp/analytics/pubsub.png" alt="Pubsub" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/analytics/pubsub.png" alt="Pubsub" style="float: left; padding-right: 5px;" >
**diagrams.gcp.analytics.Pubsub**, **PubSub** (alias) **diagrams.gcp.analytics.Pubsub**, **PubSub** (alias)
@ -56,6 +59,9 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/compute/app-engine.png" alt="AppEngine" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/compute/app-engine.png" alt="AppEngine" style="float: left; padding-right: 5px;" >
**diagrams.gcp.compute.AppEngine**, **GAE** (alias) **diagrams.gcp.compute.AppEngine**, **GAE** (alias)
<img width="30" src="/img/resources/gcp/compute/binary-authorization.png" alt="BinaryAuthorization" style="float: left; padding-right: 5px;" >
**diagrams.gcp.compute.BinaryAuthorization**
<img width="30" src="/img/resources/gcp/compute/compute-engine.png" alt="ComputeEngine" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/compute/compute-engine.png" alt="ComputeEngine" style="float: left; padding-right: 5px;" >
**diagrams.gcp.compute.ComputeEngine**, **GCE** (alias) **diagrams.gcp.compute.ComputeEngine**, **GCE** (alias)
@ -74,8 +80,17 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/compute/kubernetes-engine.png" alt="KubernetesEngine" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/compute/kubernetes-engine.png" alt="KubernetesEngine" style="float: left; padding-right: 5px;" >
**diagrams.gcp.compute.KubernetesEngine**, **GKE** (alias) **diagrams.gcp.compute.KubernetesEngine**, **GKE** (alias)
<img width="30" src="/img/resources/gcp/compute/os-configuration-management.png" alt="OSConfigurationManagement" style="float: left; padding-right: 5px;" >
**diagrams.gcp.compute.OSConfigurationManagement**
<img width="30" src="/img/resources/gcp/compute/os-inventory-management.png" alt="OSInventoryManagement" style="float: left; padding-right: 5px;" >
**diagrams.gcp.compute.OSInventoryManagement**
<img width="30" src="/img/resources/gcp/compute/os-patch-management.png" alt="OSPatchManagement" style="float: left; padding-right: 5px;" >
**diagrams.gcp.compute.OSPatchManagement**
<img width="30" src="/img/resources/gcp/compute/run.png" alt="Run" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/compute/run.png" alt="Run" style="float: left; padding-right: 5px;" >
**diagrams.gcp.compute.Run** **diagrams.gcp.compute.Run**, **CloudRun** (alias)
## gcp.database ## gcp.database
@ -104,6 +119,9 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/devtools/build.png" alt="Build" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/devtools/build.png" alt="Build" style="float: left; padding-right: 5px;" >
**diagrams.gcp.devtools.Build** **diagrams.gcp.devtools.Build**
<img width="30" src="/img/resources/gcp/devtools/cloud-shell.png" alt="CloudShell" style="float: left; padding-right: 5px;" >
**diagrams.gcp.devtools.CloudShell**
<img width="30" src="/img/resources/gcp/devtools/code-for-intellij.png" alt="CodeForIntellij" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/devtools/code-for-intellij.png" alt="CodeForIntellij" style="float: left; padding-right: 5px;" >
**diagrams.gcp.devtools.CodeForIntellij** **diagrams.gcp.devtools.CodeForIntellij**
@ -128,6 +146,9 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/devtools/sdk.png" alt="SDK" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/devtools/sdk.png" alt="SDK" style="float: left; padding-right: 5px;" >
**diagrams.gcp.devtools.SDK** **diagrams.gcp.devtools.SDK**
<img width="30" src="/img/resources/gcp/devtools/service-catalog.png" alt="ServiceCatalog" style="float: left; padding-right: 5px;" >
**diagrams.gcp.devtools.ServiceCatalog**
<img width="30" src="/img/resources/gcp/devtools/source-repositories.png" alt="SourceRepositories" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/devtools/source-repositories.png" alt="SourceRepositories" style="float: left; padding-right: 5px;" >
**diagrams.gcp.devtools.SourceRepositories** **diagrams.gcp.devtools.SourceRepositories**
@ -152,9 +173,27 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/iot/iot-core.png" alt="IotCore" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/iot/iot-core.png" alt="IotCore" style="float: left; padding-right: 5px;" >
**diagrams.gcp.iot.IotCore** **diagrams.gcp.iot.IotCore**
## gcp.management
<img width="30" src="/img/resources/gcp/management/billing.png" alt="Billing" style="float: left; padding-right: 5px;" >
**diagrams.gcp.management.Billing**
<img width="30" src="/img/resources/gcp/management/project.png" alt="Project" style="float: left; padding-right: 5px;" >
**diagrams.gcp.management.Project**
<img width="30" src="/img/resources/gcp/management/quotas.png" alt="Quotas" style="float: left; padding-right: 5px;" >
**diagrams.gcp.management.Quotas**
<img width="30" src="/img/resources/gcp/management/support.png" alt="Support" style="float: left; padding-right: 5px;" >
**diagrams.gcp.management.Support**
## gcp.migration ## gcp.migration
<img width="30" src="/img/resources/gcp/migration/migrate-compute-engine.png" alt="MigrateComputeEngine" style="float: left; padding-right: 5px;" >
**diagrams.gcp.migration.MigrateComputeEngine**, **CE** (alias)
<img width="30" src="/img/resources/gcp/migration/transfer-appliance.png" alt="TransferAppliance" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/migration/transfer-appliance.png" alt="TransferAppliance" style="float: left; padding-right: 5px;" >
**diagrams.gcp.migration.TransferAppliance** **diagrams.gcp.migration.TransferAppliance**
@ -218,6 +257,9 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/ml/translation-api.png" alt="TranslationAPI" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/ml/translation-api.png" alt="TranslationAPI" style="float: left; padding-right: 5px;" >
**diagrams.gcp.ml.TranslationAPI** **diagrams.gcp.ml.TranslationAPI**
<img width="30" src="/img/resources/gcp/ml/vertex-ai.png" alt="VertexAI" style="float: left; padding-right: 5px;" >
**diagrams.gcp.ml.VertexAI**
<img width="30" src="/img/resources/gcp/ml/video-intelligence-api.png" alt="VideoIntelligenceAPI" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/ml/video-intelligence-api.png" alt="VideoIntelligenceAPI" style="float: left; padding-right: 5px;" >
**diagrams.gcp.ml.VideoIntelligenceAPI** **diagrams.gcp.ml.VideoIntelligenceAPI**
@ -233,6 +275,9 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/network/cdn.png" alt="CDN" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/network/cdn.png" alt="CDN" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.CDN** **diagrams.gcp.network.CDN**
<img width="30" src="/img/resources/gcp/network/cloud-ids.png" alt="CloudIDS" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.CloudIDS**, **IDS** (alias)
<img width="30" src="/img/resources/gcp/network/dedicated-interconnect.png" alt="DedicatedInterconnect" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/network/dedicated-interconnect.png" alt="DedicatedInterconnect" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.DedicatedInterconnect** **diagrams.gcp.network.DedicatedInterconnect**
@ -251,6 +296,21 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/network/nat.png" alt="NAT" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/network/nat.png" alt="NAT" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.NAT** **diagrams.gcp.network.NAT**
<img width="30" src="/img/resources/gcp/network/network-connectivity-center.png" alt="NetworkConnectivityCenter" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.NetworkConnectivityCenter**
<img width="30" src="/img/resources/gcp/network/network-intelligence-center.png" alt="NetworkIntelligenceCenter" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.NetworkIntelligenceCenter**
<img width="30" src="/img/resources/gcp/network/network-security.png" alt="NetworkSecurity" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.NetworkSecurity**
<img width="30" src="/img/resources/gcp/network/network-tiers.png" alt="NetworkTiers" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.NetworkTiers**
<img width="30" src="/img/resources/gcp/network/network-topology.png" alt="NetworkTopology" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.NetworkTopology**
<img width="30" src="/img/resources/gcp/network/network.png" alt="Network" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/network/network.png" alt="Network" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.Network** **diagrams.gcp.network.Network**
@ -260,12 +320,18 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/network/premium-network-tier.png" alt="PremiumNetworkTier" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/network/premium-network-tier.png" alt="PremiumNetworkTier" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.PremiumNetworkTier** **diagrams.gcp.network.PremiumNetworkTier**
<img width="30" src="/img/resources/gcp/network/private-service-connect.png" alt="PrivateServiceConnect" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.PrivateServiceConnect**, **PSC** (alias)
<img width="30" src="/img/resources/gcp/network/router.png" alt="Router" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/network/router.png" alt="Router" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.Router** **diagrams.gcp.network.Router**
<img width="30" src="/img/resources/gcp/network/routes.png" alt="Routes" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/network/routes.png" alt="Routes" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.Routes** **diagrams.gcp.network.Routes**
<img width="30" src="/img/resources/gcp/network/service-mesh.png" alt="ServiceMesh" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.ServiceMesh**
<img width="30" src="/img/resources/gcp/network/standard-network-tier.png" alt="StandardNetworkTier" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/network/standard-network-tier.png" alt="StandardNetworkTier" style="float: left; padding-right: 5px;" >
**diagrams.gcp.network.StandardNetworkTier** **diagrams.gcp.network.StandardNetworkTier**
@ -290,6 +356,21 @@ Node classes list of the gcp provider.
## gcp.security ## gcp.security
<img width="30" src="/img/resources/gcp/security/access-context-manager.png" alt="AccessContextManager" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.AccessContextManager**, **ACM** (alias)
<img width="30" src="/img/resources/gcp/security/assured-workloads.png" alt="AssuredWorkloads" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.AssuredWorkloads**
<img width="30" src="/img/resources/gcp/security/certificate-authority-service.png" alt="CertificateAuthorityService" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.CertificateAuthorityService**
<img width="30" src="/img/resources/gcp/security/certificate-manager.png" alt="CertificateManager" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.CertificateManager**
<img width="30" src="/img/resources/gcp/security/cloud-asset-inventory.png" alt="CloudAssetInventory" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.CloudAssetInventory**
<img width="30" src="/img/resources/gcp/security/iam.png" alt="Iam" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/security/iam.png" alt="Iam" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.Iam** **diagrams.gcp.security.Iam**
@ -302,9 +383,15 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/security/resource-manager.png" alt="ResourceManager" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/security/resource-manager.png" alt="ResourceManager" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.ResourceManager** **diagrams.gcp.security.ResourceManager**
<img width="30" src="/img/resources/gcp/security/secret-manager.png" alt="SecretManager" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.SecretManager**
<img width="30" src="/img/resources/gcp/security/security-command-center.png" alt="SecurityCommandCenter" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/security/security-command-center.png" alt="SecurityCommandCenter" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.SecurityCommandCenter**, **SCC** (alias) **diagrams.gcp.security.SecurityCommandCenter**, **SCC** (alias)
<img width="30" src="/img/resources/gcp/security/security-health-advisor.png" alt="SecurityHealthAdvisor" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.SecurityHealthAdvisor**
<img width="30" src="/img/resources/gcp/security/security-scanner.png" alt="SecurityScanner" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/security/security-scanner.png" alt="SecurityScanner" style="float: left; padding-right: 5px;" >
**diagrams.gcp.security.SecurityScanner** **diagrams.gcp.security.SecurityScanner**
@ -314,6 +401,9 @@ Node classes list of the gcp provider.
<img width="30" src="/img/resources/gcp/storage/filestore.png" alt="Filestore" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/storage/filestore.png" alt="Filestore" style="float: left; padding-right: 5px;" >
**diagrams.gcp.storage.Filestore** **diagrams.gcp.storage.Filestore**
<img width="30" src="/img/resources/gcp/storage/local-ssd.png" alt="LocalSSD" style="float: left; padding-right: 5px;" >
**diagrams.gcp.storage.LocalSSD**, **SSD** (alias)
<img width="30" src="/img/resources/gcp/storage/persistent-disk.png" alt="PersistentDisk" style="float: left; padding-right: 5px;" > <img width="30" src="/img/resources/gcp/storage/persistent-disk.png" alt="PersistentDisk" style="float: left; padding-right: 5px;" >
**diagrams.gcp.storage.PersistentDisk** **diagrams.gcp.storage.PersistentDisk**

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Loading…
Cancel
Save