1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# 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
|