37 lines
1002 B
Python
37 lines
1002 B
Python
"""SQLAlchemy models for mGuard VPN Endpoint Server."""
|
|
|
|
from .tenant import Tenant
|
|
from .user import User
|
|
from .gateway import Gateway, RouterType
|
|
from .endpoint import Endpoint, ApplicationTemplate
|
|
from .access import UserGatewayAccess, UserEndpointAccess, ConnectionLog
|
|
from .certificate_authority import CertificateAuthority, CAStatus, CAAlgorithm
|
|
from .vpn_server import VPNServer, VPNProtocol, VPNCipher, VPNAuth, VPNCompression, VPNServerStatus
|
|
from .vpn_profile import VPNProfile, VPNProfileStatus
|
|
from .vpn_connection_log import VPNConnectionLog
|
|
|
|
__all__ = [
|
|
"Tenant",
|
|
"User",
|
|
"Gateway",
|
|
"RouterType",
|
|
"Endpoint",
|
|
"ApplicationTemplate",
|
|
"UserGatewayAccess",
|
|
"UserEndpointAccess",
|
|
"ConnectionLog",
|
|
# PKI & VPN
|
|
"CertificateAuthority",
|
|
"CAStatus",
|
|
"CAAlgorithm",
|
|
"VPNServer",
|
|
"VPNProtocol",
|
|
"VPNCipher",
|
|
"VPNAuth",
|
|
"VPNCompression",
|
|
"VPNServerStatus",
|
|
"VPNProfile",
|
|
"VPNProfileStatus",
|
|
"VPNConnectionLog",
|
|
]
|