From aa97a7c957d269842595c9e5672c97e881d39ca5 Mon Sep 17 00:00:00 2001 From: mingrammer Date: Mon, 24 Aug 2020 19:34:59 +0900 Subject: [PATCH] fix: missing outscale nodes --- diagrams/outscale/compute.py | 19 +++++++++++++++++++ diagrams/outscale/network.py | 35 +++++++++++++++++++++++++++++++++++ diagrams/outscale/security.py | 19 +++++++++++++++++++ diagrams/outscale/storage.py | 19 +++++++++++++++++++ 4 files changed, 92 insertions(+) create mode 100644 diagrams/outscale/compute.py create mode 100644 diagrams/outscale/network.py create mode 100644 diagrams/outscale/security.py create mode 100644 diagrams/outscale/storage.py diff --git a/diagrams/outscale/compute.py b/diagrams/outscale/compute.py new file mode 100644 index 00000000..35a09619 --- /dev/null +++ b/diagrams/outscale/compute.py @@ -0,0 +1,19 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Outscale + + +class _Compute(_Outscale): + _type = "compute" + _icon_dir = "resources/outscale/compute" + + +class Compute(_Compute): + _icon = "compute.png" + + +class DirectConnect(_Compute): + _icon = "direct-connect.png" + + +# Aliases diff --git a/diagrams/outscale/network.py b/diagrams/outscale/network.py new file mode 100644 index 00000000..f5a18376 --- /dev/null +++ b/diagrams/outscale/network.py @@ -0,0 +1,35 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Outscale + + +class _Network(_Outscale): + _type = "network" + _icon_dir = "resources/outscale/network" + + +class ClientVpn(_Network): + _icon = "client-vpn.png" + + +class InternetService(_Network): + _icon = "internet-service.png" + + +class LoadBalancer(_Network): + _icon = "load-balancer.png" + + +class NatService(_Network): + _icon = "nat-service.png" + + +class Net(_Network): + _icon = "net.png" + + +class SiteToSiteVpng(_Network): + _icon = "site-to-site-vpng.png" + + +# Aliases diff --git a/diagrams/outscale/security.py b/diagrams/outscale/security.py new file mode 100644 index 00000000..8e79df51 --- /dev/null +++ b/diagrams/outscale/security.py @@ -0,0 +1,19 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Outscale + + +class _Security(_Outscale): + _type = "security" + _icon_dir = "resources/outscale/security" + + +class Firewall(_Security): + _icon = "firewall.png" + + +class IdentityAndAccessManagement(_Security): + _icon = "identity-and-access-management.png" + + +# Aliases diff --git a/diagrams/outscale/storage.py b/diagrams/outscale/storage.py new file mode 100644 index 00000000..1a8f3171 --- /dev/null +++ b/diagrams/outscale/storage.py @@ -0,0 +1,19 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _Outscale + + +class _Storage(_Outscale): + _type = "storage" + _icon_dir = "resources/outscale/storage" + + +class SimpleStorageService(_Storage): + _icon = "simple-storage-service.png" + + +class Storage(_Storage): + _icon = "storage.png" + + +# Aliases