127 lines
4.4 KiB
Python
127 lines
4.4 KiB
Python
from typing import Tuple, Union
|
|
|
|
none_or_str = Union[None, str]
|
|
|
|
|
|
class SOAPCommands:
|
|
def debug_commands(self) -> dict:
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def AddPortMapping(NewRemoteHost: str, NewExternalPort: int, NewProtocol: str, NewInternalPort: int,
|
|
NewInternalClient: str, NewEnabled: bool, NewPortMappingDescription: str,
|
|
NewLeaseDuration: str = '') -> None:
|
|
"""Returns None"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetNATRSIPStatus() -> Tuple[bool, bool]:
|
|
"""Returns (NewRSIPAvailable, NewNATEnabled)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetGenericPortMappingEntry(NewPortMappingIndex: int) -> Tuple[none_or_str, int, str, int, str,
|
|
bool, str, int]:
|
|
"""
|
|
Returns (NewRemoteHost, NewExternalPort, NewProtocol, NewInternalPort, NewInternalClient, NewEnabled,
|
|
NewPortMappingDescription, NewLeaseDuration)
|
|
"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetSpecificPortMappingEntry(NewRemoteHost: str, NewExternalPort: int,
|
|
NewProtocol: str) -> Tuple[int, str, bool, str, int]:
|
|
"""Returns (NewInternalPort, NewInternalClient, NewEnabled, NewPortMappingDescription, NewLeaseDuration)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def SetConnectionType(NewConnectionType: str) -> None:
|
|
"""Returns None"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetExternalIPAddress() -> str:
|
|
"""Returns (NewExternalIPAddress)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetConnectionTypeInfo() -> Tuple[str, str]:
|
|
"""Returns (NewConnectionType, NewPossibleConnectionTypes)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetStatusInfo() -> Tuple[str, str, int]:
|
|
"""Returns (NewConnectionStatus, NewLastConnectionError, NewUptime)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def ForceTermination() -> None:
|
|
"""Returns None"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def DeletePortMapping(NewRemoteHost: str, NewExternalPort: int, NewProtocol: str) -> None:
|
|
"""Returns None"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def RequestConnection() -> None:
|
|
"""Returns None"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetCommonLinkProperties():
|
|
"""Returns (NewWANAccessType, NewLayer1UpstreamMaxBitRate, NewLayer1DownstreamMaxBitRate, NewPhysicalLinkStatus)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetTotalBytesSent():
|
|
"""Returns (NewTotalBytesSent)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetTotalBytesReceived():
|
|
"""Returns (NewTotalBytesReceived)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetTotalPacketsSent():
|
|
"""Returns (NewTotalPacketsSent)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
def GetTotalPacketsReceived():
|
|
"""Returns (NewTotalPacketsReceived)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def X_GetICSStatistics() -> Tuple[int, int, int, int, str, str]:
|
|
"""Returns (TotalBytesSent, TotalBytesReceived, TotalPacketsSent, TotalPacketsReceived, Layer1DownstreamMaxBitRate, Uptime)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetDefaultConnectionService():
|
|
"""Returns (NewDefaultConnectionService)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def SetDefaultConnectionService(NewDefaultConnectionService: str) -> None:
|
|
"""Returns (None)"""
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def SetEnabledForInternet(NewEnabledForInternet: bool) -> None:
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetEnabledForInternet() -> bool:
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetMaximumActiveConnections(NewActiveConnectionIndex: int):
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
async def GetActiveConnections() -> Tuple[str, str]:
|
|
"""Returns (NewActiveConnDeviceContainer, NewActiveConnectionServiceID"""
|
|
raise NotImplementedError()
|