feat(node): update all OCI nodes

pull/237/merge
mingrammer 5 years ago
parent 23b7a51656
commit 9e2fc38d6b

@ -34,7 +34,7 @@ FILE_PREFIXES = {
"firebase": ("Cloud-",), "firebase": ("Cloud-",),
"k8s": (), "k8s": (),
"alibabacloud": (), "alibabacloud": (),
"oci": ("OCI-",), "oci": ("OCI-icon-",),
"programming": (), "programming": (),
"saas": (), "saas": (),
"elastic": (), "elastic": (),
@ -63,7 +63,7 @@ UPPER_WORDS = {
"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",
"sa", "sc", "sts", "svc", "sa", "sc", "sts", "svc",
), ),
"oci": ("oci", "oke", "ocir"), "oci": ("oci", "ocid", "oke", "ocir", "ddos", "waf", "bm", "vm", "cdn", "vpn", "dns", "nat", "dms", "api", "id"),
"elastic": ("apm", "siem", "ece", "eck"), "elastic": ("apm", "siem", "ece", "eck"),
"generic": ("vpn", "ios", "xen"), "generic": ("vpn", "ios", "xen"),
"openstack": ("rpm", "loci", "nfv", "ec2api"), "openstack": ("rpm", "loci", "nfv", "ec2api"),

@ -8,19 +8,19 @@ class _Compute(_OCI):
_icon_dir = "resources/oci/compute" _icon_dir = "resources/oci/compute"
class AutoScaleWhite(_Compute): class AutoscaleWhite(_Compute):
_icon = "autoscale-white.png" _icon = "autoscale-white.png"
class AutoScale(_Compute): class Autoscale(_Compute):
_icon = "autoscale.png" _icon = "autoscale.png"
class BmWhite(_Compute): class BMWhite(_Compute):
_icon = "bm-white.png" _icon = "bm-white.png"
class Bm(_Compute): class BM(_Compute):
_icon = "bm.png" _icon = "bm.png"
@ -41,34 +41,34 @@ class Functions(_Compute):
class InstancePoolsWhite(_Compute): class InstancePoolsWhite(_Compute):
_icon = "instancepools.png" _icon = "instance-pools-white.png"
class InstancePools(_Compute): class InstancePools(_Compute):
_icon = "instancepools.png" _icon = "instance-pools.png"
class OCIRWhite(_Compute): class OCIRWhite(_Compute):
_icon = "ociregistry-white.png" _icon = "ocir-white.png"
class OCIR(_Compute): class OCIR(_Compute):
_icon = "ociregistry.png" _icon = "ocir.png"
class OKEWhite(_Compute): class OKEWhite(_Compute):
_icon = "containerengine-white.png" _icon = "oke-white.png"
class OKE(_Compute): class OKE(_Compute):
_icon = "containerengine.png" _icon = "oke.png"
class VmWhite(_Compute): class VMWhite(_Compute):
_icon = "vm-white.png" _icon = "vm-white.png"
class Vm(_Compute): class VM(_Compute):
_icon = "vm.png" _icon = "vm.png"
@ -78,3 +78,7 @@ VirtualMachine = Vm
VirtualMachineWhite = VmWhite VirtualMachineWhite = VmWhite
BareMetal = Bm BareMetal = Bm
BareMetalWhite = BmWhite BareMetalWhite = BmWhite
OCIRegistry = OCIR
OCIRegistryWhite = OCIRWhite
ContainerEngine = OKE
ContainerEngineWhite = OKEWhite

@ -16,35 +16,67 @@ class Backbone(_Connectivity):
_icon = "backbone.png" _icon = "backbone.png"
class CustomerdatacenterWhite(_Connectivity): class CDNWhite(_Connectivity):
_icon = "customerdatacenter-white.png" _icon = "cdn-white.png"
class Customerdatacenter(_Connectivity): class CDN(_Connectivity):
_icon = "customerdatacenter.png" _icon = "cdn.png"
class CustomerpremisesequipWhite(_Connectivity): class CustomerDatacenter(_Connectivity):
_icon = "customerpremisesequip-white.png" _icon = "customer-datacenter.png"
class Customerpremisesequip(_Connectivity): class CustomerDatacntrWhite(_Connectivity):
_icon = "customerpremisesequip.png" _icon = "customer-datacntr-white.png"
class FastconnectWhite(_Connectivity): class CustomerPremiseWhite(_Connectivity):
_icon = "fastconnect-white.png" _icon = "customer-premise-white.png"
class Fastconnect(_Connectivity): class CustomerPremise(_Connectivity):
_icon = "fastconnect.png" _icon = "customer-premise.png"
class VpnWhite(_Connectivity): class DisconnectedRegionsWhite(_Connectivity):
_icon = "disconnected-regions-white.png"
class DisconnectedRegions(_Connectivity):
_icon = "disconnected-regions.png"
class DNSWhite(_Connectivity):
_icon = "dns-white.png"
class DNS(_Connectivity):
_icon = "dns.png"
class FastConnectWhite(_Connectivity):
_icon = "fast-connect-white.png"
class FastConnect(_Connectivity):
_icon = "fast-connect.png"
class NATGatewayWhite(_Connectivity):
_icon = "nat-gateway-white.png"
class NATGateway(_Connectivity):
_icon = "nat-gateway.png"
class VPNWhite(_Connectivity):
_icon = "vpn-white.png" _icon = "vpn-white.png"
class Vpn(_Connectivity): class VPN(_Connectivity):
_icon = "vpn.png" _icon = "vpn.png"

@ -8,20 +8,76 @@ class _Database(_OCI):
_icon_dir = "resources/oci/database" _icon_dir = "resources/oci/database"
class AutonomousDatabaseWhite(_Database): class AutonomousWhite(_Database):
_icon = "autonomous-white.png" _icon = "autonomous-white.png"
class AutonomousDatabase(_Database): class Autonomous(_Database):
_icon = "autonomous.png" _icon = "autonomous.png"
class DatabaseserviceWhite(_Database): class BigdataServiceWhite(_Database):
_icon = "databaseservice-white.png" _icon = "bigdata-service-white.png"
class Databaseservice(_Database): class BigdataService(_Database):
_icon = "databaseservice.png" _icon = "bigdata-service.png"
class DatabaseServiceWhite(_Database):
_icon = "database-service-white.png"
class DatabaseService(_Database):
_icon = "database-service.png"
class DataflowApacheWhite(_Database):
_icon = "dataflow-apache-white.png"
class DataflowApache(_Database):
_icon = "dataflow-apache.png"
class DcatWhite(_Database):
_icon = "dcat-white.png"
class Dcat(_Database):
_icon = "dcat.png"
class DisWhite(_Database):
_icon = "dis-white.png"
class Dis(_Database):
_icon = "dis.png"
class DMSWhite(_Database):
_icon = "dms-white.png"
class DMS(_Database):
_icon = "dms.png"
class ScienceWhite(_Database):
_icon = "science-white.png"
class Science(_Database):
_icon = "science.png"
class StreamWhite(_Database):
_icon = "stream-white.png"
class Stream(_Database):
_icon = "stream.png"
# Aliases # Aliases

@ -8,28 +8,28 @@ class _Devops(_OCI):
_icon_dir = "resources/oci/devops" _icon_dir = "resources/oci/devops"
class ApigatewayWhite(_Devops): class APIGatewayWhite(_Devops):
_icon = "apigateway-white.png" _icon = "api-gateway-white.png"
class Apigateway(_Devops): class APIGateway(_Devops):
_icon = "apigateway.png" _icon = "api-gateway.png"
class ApiserviceWhite(_Devops): class APIServiceWhite(_Devops):
_icon = "apiservice-white.png" _icon = "api-service-white.png"
class Apiservice(_Devops): class APIService(_Devops):
_icon = "apiservice.png" _icon = "api-service.png"
class ResourcemgmtWhite(_Devops): class ResourceMgmtWhite(_Devops):
_icon = "resourcemgmt-white.png" _icon = "resource-mgmt-white.png"
class Resourcemgmt(_Devops): class ResourceMgmt(_Devops):
_icon = "resourcemgmt.png" _icon = "resource-mgmt.png"
# Aliases # Aliases

@ -1,43 +0,0 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _OCI
class _Edge(_OCI):
_type = "edge"
_icon_dir = "resources/oci/edge"
class CdnWhite(_Edge):
_icon = "cdn-white.png"
class Cdn(_Edge):
_icon = "cdn.png"
class DnsWhite(_Edge):
_icon = "dns-white.png"
class Dns(_Edge):
_icon = "dns.png"
class EmaildeliveryWhite(_Edge):
_icon = "emaildelivery-white.png"
class Emaildelivery(_Edge):
_icon = "emaildelivery.png"
class WafWhite(_Edge):
_icon = "waf-white.png"
class Waf(_Edge):
_icon = "waf.png"
# Aliases

@ -0,0 +1,67 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _OCI
class _Governance(_OCI):
_type = "governance"
_icon_dir = "resources/oci/governance"
class AuditWhite(_Governance):
_icon = "audit-white.png"
class Audit(_Governance):
_icon = "audit.png"
class CompartmentsWhite(_Governance):
_icon = "compartments-white.png"
class Compartments(_Governance):
_icon = "compartments.png"
class GroupsWhite(_Governance):
_icon = "groups-white.png"
class Groups(_Governance):
_icon = "groups.png"
class LoggingWhite(_Governance):
_icon = "logging-white.png"
class Logging(_Governance):
_icon = "logging.png"
class OCIDWhite(_Governance):
_icon = "ocid-white.png"
class OCID(_Governance):
_icon = "ocid.png"
class PoliciesWhite(_Governance):
_icon = "policies-white.png"
class Policies(_Governance):
_icon = "policies.png"
class TaggingWhite(_Governance):
_icon = "tagging-white.png"
class Tagging(_Governance):
_icon = "tagging.png"
# Aliases

@ -16,28 +16,28 @@ class Alarm(_Monitoring):
_icon = "alarm.png" _icon = "alarm.png"
class EventWhite(_Monitoring): class EmailWhite(_Monitoring):
_icon = "event-white.png" _icon = "email-white.png"
class Event(_Monitoring): class Email(_Monitoring):
_icon = "event.png" _icon = "email.png"
class HealthcheckWhite(_Monitoring): class EventsWhite(_Monitoring):
_icon = "healthcheck-white.png" _icon = "events-white.png"
class Healthcheck(_Monitoring): class Events(_Monitoring):
_icon = "healthcheck.png" _icon = "events.png"
class LoggingWhite(_Monitoring): class HealthCheckWhite(_Monitoring):
_icon = "logging-white.png" _icon = "health-check-white.png"
class Logging(_Monitoring): class HealthCheck(_Monitoring):
_icon = "logging.png" _icon = "health-check.png"
class NotificationsWhite(_Monitoring): class NotificationsWhite(_Monitoring):
@ -48,12 +48,12 @@ class Notifications(_Monitoring):
_icon = "notifications.png" _icon = "notifications.png"
class QueuingWhite(_Monitoring): class QueueWhite(_Monitoring):
_icon = "queuing-white.png" _icon = "queue-white.png"
class Queuing(_Monitoring): class Queue(_Monitoring):
_icon = "queuing.png" _icon = "queue.png"
class SearchWhite(_Monitoring): class SearchWhite(_Monitoring):
@ -64,14 +64,6 @@ class Search(_Monitoring):
_icon = "search.png" _icon = "search.png"
class StreamingWhite(_Monitoring):
_icon = "streaming-white.png"
class Streaming(_Monitoring):
_icon = "streaming.png"
class TelemetryWhite(_Monitoring): class TelemetryWhite(_Monitoring):
_icon = "telemetry-white.png" _icon = "telemetry-white.png"

@ -24,44 +24,36 @@ class Firewall(_Network):
_icon = "firewall.png" _icon = "firewall.png"
class InternetgatewayWhite(_Network): class InternetGatewayWhite(_Network):
_icon = "internetgateway-white.png" _icon = "internet-gateway-white.png"
class Internetgateway(_Network): class InternetGateway(_Network):
_icon = "internetgateway.png" _icon = "internet-gateway.png"
class LoadbalanceWhite(_Network): class LoadBalancerWhite(_Network):
_icon = "loadbalance-white.png" _icon = "load-balancer-white.png"
class Loadbalance(_Network): class LoadBalancer(_Network):
_icon = "loadbalance.png" _icon = "load-balancer.png"
class NATgatewayWhite(_Network): class RouteTableWhite(_Network):
_icon = "natgateway-white.png" _icon = "route-table-white.png"
class NATgateway(_Network): class RouteTable(_Network):
_icon = "natgateway.png" _icon = "route-table.png"
class RoutetableWhite(_Network): class SecurityListsWhite(_Network):
_icon = "routetable-white.png" _icon = "security-lists-white.png"
class Routetable(_Network): class SecurityLists(_Network):
_icon = "routetable.png" _icon = "security-lists.png"
class SecuritylistsWhite(_Network):
_icon = "securitylists-white.png"
class Securitylists(_Network):
_icon = "securitylists.png"
class ServiceGatewayWhite(_Network): class ServiceGatewayWhite(_Network):
@ -72,12 +64,12 @@ class ServiceGateway(_Network):
_icon = "service-gateway.png" _icon = "service-gateway.png"
class VcloudnetworkWhite(_Network): class VcnWhite(_Network):
_icon = "vcloudnetwork-white.png" _icon = "vcn-white.png"
class Vcloudnetwork(_Network): class Vcn(_Network):
_icon = "vcloudnetwork.png" _icon = "vcn.png"
# Aliases # Aliases

@ -8,35 +8,19 @@ class _Security(_OCI):
_icon_dir = "resources/oci/security" _icon_dir = "resources/oci/security"
class AuditWhite(_Security):
_icon = "audit-white.png"
class Audit(_Security):
_icon = "audit.png"
class CloudGuardWhite(_Security): class CloudGuardWhite(_Security):
_icon = "cloudguard-white.png" _icon = "cloud-guard-white.png"
class CloudGuard(_Security): class CloudGuard(_Security):
_icon = "cloudguard.png" _icon = "cloud-guard.png"
class CompartmentsWhite(_Security):
_icon = "compartments-white.png"
class Compartments(_Security): class DDOSWhite(_Security):
_icon = "compartments.png"
class DdosWhite(_Security):
_icon = "ddos-white.png" _icon = "ddos-white.png"
class Ddos(_Security): class DDOS(_Security):
_icon = "ddos.png" _icon = "ddos.png"
@ -48,52 +32,28 @@ class Encryption(_Security):
_icon = "encryption.png" _icon = "encryption.png"
class GroupsWhite(_Security): class IDAccessWhite(_Security):
_icon = "groups-white.png"
class Groups(_Security):
_icon = "groups.png"
class IdAccessWhite(_Security):
_icon = "id-access-white.png" _icon = "id-access-white.png"
class IdAccess(_Security): class IDAccess(_Security):
_icon = "id-access.png" _icon = "id-access.png"
class KeymgmtWhite(_Security): class KeyManagementWhite(_Security):
_icon = "keymgmt-white.png" _icon = "key-management-white.png"
class Keymgmt(_Security): class KeyManagement(_Security):
_icon = "keymgmt.png" _icon = "key-management.png"
class OcidWhite(_Security): class MaxSecurityZoneWhite(_Security):
_icon = "ocid-white.png" _icon = "max-security-zone-white.png"
class Ocid(_Security): class MaxSecurityZone(_Security):
_icon = "ocid.png" _icon = "max-security-zone.png"
class PoliciesWhite(_Security):
_icon = "policies-white.png"
class Policies(_Security):
_icon = "policies.png"
class TaggingWhite(_Security):
_icon = "tagging-white.png"
class Tagging(_Security):
_icon = "tagging.png"
class VaultWhite(_Security): class VaultWhite(_Security):
@ -104,4 +64,12 @@ class Vault(_Security):
_icon = "vault.png" _icon = "vault.png"
class WAFWhite(_Security):
_icon = "waf-white.png"
class WAF(_Security):
_icon = "waf.png"
# Aliases # Aliases

@ -8,20 +8,28 @@ class _Storage(_OCI):
_icon_dir = "resources/oci/storage" _icon_dir = "resources/oci/storage"
class BackuprestoreWhite(_Storage): class BackupRestoreWhite(_Storage):
_icon = "backuprestore-white.png" _icon = "backup-restore-white.png"
class Backuprestore(_Storage): class BackupRestore(_Storage):
_icon = "backuprestore.png" _icon = "backup-restore.png"
class BlockstorageWhite(_Storage): class BlockStorageCloneWhite(_Storage):
_icon = "blockstorage-white.png" _icon = "block-storage-clone-white.png"
class Blockstorage(_Storage): class BlockStorageClone(_Storage):
_icon = "blockstorage.png" _icon = "block-storage-clone.png"
class BlockStorageWhite(_Storage):
_icon = "block-storage-white.png"
class BlockStorage(_Storage):
_icon = "block-storage.png"
class BucketsWhite(_Storage): class BucketsWhite(_Storage):
@ -32,36 +40,44 @@ class Buckets(_Storage):
_icon = "buckets.png" _icon = "buckets.png"
class DatatransferWhite(_Storage): class DataTransferWhite(_Storage):
_icon = "datatransfer-white.png" _icon = "data-transfer-white.png"
class DataTransfer(_Storage):
_icon = "data-transfer.png"
class ElasticPerformanceWhite(_Storage):
_icon = "elastic-performance-white.png"
class Datatransfer(_Storage): class ElasticPerformance(_Storage):
_icon = "datatransfer.png" _icon = "elastic-performance.png"
class FilestorageWhite(_Storage): class FileStorageWhite(_Storage):
_icon = "filestorage-white.png" _icon = "file-storage-white.png"
class Filestorage(_Storage): class FileStorage(_Storage):
_icon = "filestorage.png" _icon = "file-storage.png"
class ObjectstorageWhite(_Storage): class ObjectStorageWhite(_Storage):
_icon = "objectstorage-white.png" _icon = "object-storage-white.png"
class Objectstorage(_Storage): class ObjectStorage(_Storage):
_icon = "objectstorage.png" _icon = "object-storage.png"
class StoragegatewayWhite(_Storage): class StorageGatewayWhite(_Storage):
_icon = "storagegateway-white.png" _icon = "storage-gateway-white.png"
class Storagegateway(_Storage): class StorageGateway(_Storage):
_icon = "storagegateway.png" _icon = "storage-gateway.png"
# Aliases # Aliases

@ -7,10 +7,10 @@ Node classes list of oci provider.
## oci.compute ## oci.compute
- **diagrams.oci.compute.AutoScaleWhite** - **diagrams.oci.compute.AutoscaleWhite**
- **diagrams.oci.compute.AutoScale** - **diagrams.oci.compute.Autoscale**
- **diagrams.oci.compute.BmWhite**, **BareMetalWhite** (alias) - **diagrams.oci.compute.BMWhite**
- **diagrams.oci.compute.Bm**, **BareMetal** (alias) - **diagrams.oci.compute.BM**
- **diagrams.oci.compute.ContainerWhite** - **diagrams.oci.compute.ContainerWhite**
- **diagrams.oci.compute.Container** - **diagrams.oci.compute.Container**
- **diagrams.oci.compute.FunctionsWhite** - **diagrams.oci.compute.FunctionsWhite**
@ -19,69 +19,95 @@ Node classes list of oci provider.
- **diagrams.oci.compute.InstancePools** - **diagrams.oci.compute.InstancePools**
- **diagrams.oci.compute.OCIRWhite**, **OCIRegistryWhite** (alias) - **diagrams.oci.compute.OCIRWhite**, **OCIRegistryWhite** (alias)
- **diagrams.oci.compute.OCIR**, **OCIRegistry** (alias) - **diagrams.oci.compute.OCIR**, **OCIRegistry** (alias)
- **diagrams.oci.compute.OKEWhite**, **ContainerEngineWhite** (aliass) - **diagrams.oci.compute.OKEWhite**, **ContainerEngineWhite** (alias)
- **diagrams.oci.compute.OKE**, **ContainerEngine** (alias) - **diagrams.oci.compute.OKE**, **ContainerEngine** (alias)
- **diagrams.oci.compute.VmWhite**, **VirtualMachineWhite** (alias) - **diagrams.oci.compute.VMWhite**
- **diagrams.oci.compute.Vm**, **VirtualMachine** (alias) - **diagrams.oci.compute.VM**
## oci.connectivity ## oci.connectivity
- **diagrams.oci.connectivity.BackboneWhite** - **diagrams.oci.connectivity.BackboneWhite**
- **diagrams.oci.connectivity.Backbone** - **diagrams.oci.connectivity.Backbone**
- **diagrams.oci.connectivity.CustomerdatacenterWhite** - **diagrams.oci.connectivity.CDNWhite**
- **diagrams.oci.connectivity.Customerdatacenter** - **diagrams.oci.connectivity.CDN**
- **diagrams.oci.connectivity.CustomerpremisesequipWhite** - **diagrams.oci.connectivity.CustomerDatacenter**
- **diagrams.oci.connectivity.Customerpremisesequip** - **diagrams.oci.connectivity.CustomerDatacntrWhite**
- **diagrams.oci.connectivity.FastconnectWhite** - **diagrams.oci.connectivity.CustomerPremiseWhite**
- **diagrams.oci.connectivity.Fastconnect** - **diagrams.oci.connectivity.CustomerPremise**
- **diagrams.oci.connectivity.VpnWhite** - **diagrams.oci.connectivity.DisconnectedRegionsWhite**
- **diagrams.oci.connectivity.Vpn** - **diagrams.oci.connectivity.DisconnectedRegions**
- **diagrams.oci.connectivity.DNSWhite**
- **diagrams.oci.connectivity.DNS**
- **diagrams.oci.connectivity.FastConnectWhite**
- **diagrams.oci.connectivity.FastConnect**
- **diagrams.oci.connectivity.NATGatewayWhite**
- **diagrams.oci.connectivity.NATGateway**
- **diagrams.oci.connectivity.VPNWhite**
- **diagrams.oci.connectivity.VPN**
## oci.database ## oci.database
- **diagrams.oci.database.AutonomousDatabaseWhite**, **ADBWhite** (alias) - **diagrams.oci.database.AutonomousWhite**
- **diagrams.oci.database.AutonomousDatabase**, **ADB** (alias) - **diagrams.oci.database.Autonomous**
- **diagrams.oci.database.DatabaseserviceWhite**, **DBServiceWhite** (alias) - **diagrams.oci.database.BigdataServiceWhite**
- **diagrams.oci.database.Databaseservice**, **DBService** (alias) - **diagrams.oci.database.BigdataService**
- **diagrams.oci.database.DatabaseServiceWhite**
- **diagrams.oci.database.DatabaseService**
- **diagrams.oci.database.DataflowApacheWhite**
- **diagrams.oci.database.DataflowApache**
- **diagrams.oci.database.DcatWhite**
- **diagrams.oci.database.Dcat**
- **diagrams.oci.database.DisWhite**
- **diagrams.oci.database.Dis**
- **diagrams.oci.database.DMSWhite**
- **diagrams.oci.database.DMS**
- **diagrams.oci.database.ScienceWhite**
- **diagrams.oci.database.Science**
- **diagrams.oci.database.StreamWhite**
- **diagrams.oci.database.Stream**
## oci.devops ## oci.devops
- **diagrams.oci.devops.ApigatewayWhite** - **diagrams.oci.devops.APIGatewayWhite**
- **diagrams.oci.devops.Apigateway** - **diagrams.oci.devops.APIGateway**
- **diagrams.oci.devops.ApiserviceWhite** - **diagrams.oci.devops.APIServiceWhite**
- **diagrams.oci.devops.Apiservice** - **diagrams.oci.devops.APIService**
- **diagrams.oci.devops.ResourcemgmtWhite** - **diagrams.oci.devops.ResourceMgmtWhite**
- **diagrams.oci.devops.Resourcemgmt** - **diagrams.oci.devops.ResourceMgmt**
## oci.edge ## oci.governance
- **diagrams.oci.edge.CdnWhite** - **diagrams.oci.governance.AuditWhite**
- **diagrams.oci.edge.Cdn** - **diagrams.oci.governance.Audit**
- **diagrams.oci.edge.DnsWhite** - **diagrams.oci.governance.CompartmentsWhite**
- **diagrams.oci.edge.Dns** - **diagrams.oci.governance.Compartments**
- **diagrams.oci.edge.EmaildeliveryWhite** - **diagrams.oci.governance.GroupsWhite**
- **diagrams.oci.edge.Emaildelivery** - **diagrams.oci.governance.Groups**
- **diagrams.oci.edge.WafWhite** - **diagrams.oci.governance.LoggingWhite**
- **diagrams.oci.edge.Waf** - **diagrams.oci.governance.Logging**
- **diagrams.oci.governance.OCIDWhite**
- **diagrams.oci.governance.OCID**
- **diagrams.oci.governance.PoliciesWhite**
- **diagrams.oci.governance.Policies**
- **diagrams.oci.governance.TaggingWhite**
- **diagrams.oci.governance.Tagging**
## oci.monitoring ## oci.monitoring
- **diagrams.oci.monitoring.AlarmWhite** - **diagrams.oci.monitoring.AlarmWhite**
- **diagrams.oci.monitoring.Alarm** - **diagrams.oci.monitoring.Alarm**
- **diagrams.oci.monitoring.EventWhite** - **diagrams.oci.monitoring.EmailWhite**
- **diagrams.oci.monitoring.Event** - **diagrams.oci.monitoring.Email**
- **diagrams.oci.monitoring.HealthcheckWhite** - **diagrams.oci.monitoring.EventsWhite**
- **diagrams.oci.monitoring.Healthcheck** - **diagrams.oci.monitoring.Events**
- **diagrams.oci.monitoring.LoggingWhite** - **diagrams.oci.monitoring.HealthCheckWhite**
- **diagrams.oci.monitoring.Logging** - **diagrams.oci.monitoring.HealthCheck**
- **diagrams.oci.monitoring.NotificationsWhite** - **diagrams.oci.monitoring.NotificationsWhite**
- **diagrams.oci.monitoring.Notifications** - **diagrams.oci.monitoring.Notifications**
- **diagrams.oci.monitoring.QueuingWhite** - **diagrams.oci.monitoring.QueueWhite**
- **diagrams.oci.monitoring.Queuing** - **diagrams.oci.monitoring.Queue**
- **diagrams.oci.monitoring.SearchWhite** - **diagrams.oci.monitoring.SearchWhite**
- **diagrams.oci.monitoring.Search** - **diagrams.oci.monitoring.Search**
- **diagrams.oci.monitoring.StreamingWhite**
- **diagrams.oci.monitoring.Streaming**
- **diagrams.oci.monitoring.TelemetryWhite** - **diagrams.oci.monitoring.TelemetryWhite**
- **diagrams.oci.monitoring.Telemetry** - **diagrams.oci.monitoring.Telemetry**
- **diagrams.oci.monitoring.WorkflowWhite** - **diagrams.oci.monitoring.WorkflowWhite**
@ -93,61 +119,55 @@ Node classes list of oci provider.
- **diagrams.oci.network.Drg** - **diagrams.oci.network.Drg**
- **diagrams.oci.network.FirewallWhite** - **diagrams.oci.network.FirewallWhite**
- **diagrams.oci.network.Firewall** - **diagrams.oci.network.Firewall**
- **diagrams.oci.network.InternetgatewayWhite** - **diagrams.oci.network.InternetGatewayWhite**
- **diagrams.oci.network.Internetgateway** - **diagrams.oci.network.InternetGateway**
- **diagrams.oci.network.LoadbalanceWhite** - **diagrams.oci.network.LoadBalancerWhite**
- **diagrams.oci.network.Loadbalance** - **diagrams.oci.network.LoadBalancer**
- **diagrams.oci.network.NATgatewayWhite** - **diagrams.oci.network.RouteTableWhite**
- **diagrams.oci.network.NATgateway** - **diagrams.oci.network.RouteTable**
- **diagrams.oci.network.RoutetableWhite** - **diagrams.oci.network.SecurityListsWhite**
- **diagrams.oci.network.Routetable** - **diagrams.oci.network.SecurityLists**
- **diagrams.oci.network.SecuritylistsWhite**
- **diagrams.oci.network.Securitylists**
- **diagrams.oci.network.ServiceGatewayWhite** - **diagrams.oci.network.ServiceGatewayWhite**
- **diagrams.oci.network.ServiceGateway** - **diagrams.oci.network.ServiceGateway**
- **diagrams.oci.network.VcloudnetworkWhite** - **diagrams.oci.network.VcnWhite**
- **diagrams.oci.network.Vcloudnetwork** - **diagrams.oci.network.Vcn**
## oci.security ## oci.security
- **diagrams.oci.security.AuditWhite**
- **diagrams.oci.security.Audit**
- **diagrams.oci.security.CompartmentsWhite**
- **diagrams.oci.security.Compartments**
- **diagrams.oci.security.CloudGuardWhite** - **diagrams.oci.security.CloudGuardWhite**
- **diagrams.oci.security.CloudGuard** - **diagrams.oci.security.CloudGuard**
- **diagrams.oci.security.DdosWhite** - **diagrams.oci.security.DDOSWhite**
- **diagrams.oci.security.Ddos** - **diagrams.oci.security.DDOS**
- **diagrams.oci.security.EncryptionWhite** - **diagrams.oci.security.EncryptionWhite**
- **diagrams.oci.security.Encryption** - **diagrams.oci.security.Encryption**
- **diagrams.oci.security.GroupsWhite** - **diagrams.oci.security.IDAccessWhite**
- **diagrams.oci.security.Groups** - **diagrams.oci.security.IDAccess**
- **diagrams.oci.security.IdAccessWhite** - **diagrams.oci.security.KeyManagementWhite**
- **diagrams.oci.security.IdAccess** - **diagrams.oci.security.KeyManagement**
- **diagrams.oci.security.KeymgmtWhite** - **diagrams.oci.security.MaxSecurityZoneWhite**
- **diagrams.oci.security.Keymgmt** - **diagrams.oci.security.MaxSecurityZone**
- **diagrams.oci.security.OcidWhite**
- **diagrams.oci.security.Ocid**
- **diagrams.oci.security.PoliciesWhite**
- **diagrams.oci.security.Policies**
- **diagrams.oci.security.TaggingWhite**
- **diagrams.oci.security.Tagging**
- **diagrams.oci.security.VaultWhite** - **diagrams.oci.security.VaultWhite**
- **diagrams.oci.security.Vault** - **diagrams.oci.security.Vault**
- **diagrams.oci.security.WAFWhite**
- **diagrams.oci.security.WAF**
## oci.storage ## oci.storage
- **diagrams.oci.storage.BackuprestoreWhite** - **diagrams.oci.storage.BackupRestoreWhite**
- **diagrams.oci.storage.Backuprestore** - **diagrams.oci.storage.BackupRestore**
- **diagrams.oci.storage.BlockstorageWhite** - **diagrams.oci.storage.BlockStorageCloneWhite**
- **diagrams.oci.storage.Blockstorage** - **diagrams.oci.storage.BlockStorageClone**
- **diagrams.oci.storage.BlockStorageWhite**
- **diagrams.oci.storage.BlockStorage**
- **diagrams.oci.storage.BucketsWhite** - **diagrams.oci.storage.BucketsWhite**
- **diagrams.oci.storage.Buckets** - **diagrams.oci.storage.Buckets**
- **diagrams.oci.storage.DatatransferWhite** - **diagrams.oci.storage.DataTransferWhite**
- **diagrams.oci.storage.Datatransfer** - **diagrams.oci.storage.DataTransfer**
- **diagrams.oci.storage.FilestorageWhite** - **diagrams.oci.storage.ElasticPerformanceWhite**
- **diagrams.oci.storage.Filestorage** - **diagrams.oci.storage.ElasticPerformance**
- **diagrams.oci.storage.ObjectstorageWhite** - **diagrams.oci.storage.FileStorageWhite**
- **diagrams.oci.storage.Objectstorage** - **diagrams.oci.storage.FileStorage**
- **diagrams.oci.storage.StoragegatewayWhite** - **diagrams.oci.storage.ObjectStorageWhite**
- **diagrams.oci.storage.Storagegateway** - **diagrams.oci.storage.ObjectStorage**
- **diagrams.oci.storage.StorageGatewayWhite**
- **diagrams.oci.storage.StorageGateway**

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 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: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save