Feature added: Unifi. #79
This commit is contained in:
parent
9774a02131
commit
5ba5e6eda1
9 changed files with 137 additions and 38 deletions
|
@ -86,6 +86,17 @@ class CiscoASAFirewall(NamedTuple):
|
|||
verify_ssl: bool = False
|
||||
|
||||
|
||||
class UniFiServer(NamedTuple):
|
||||
get_usg_stats_run_seconds: int = 30
|
||||
id: int = None
|
||||
password: str = 'ubnt'
|
||||
site: str = None
|
||||
url: str = 'unifi.domain.tld:8443'
|
||||
username: str = 'ubnt'
|
||||
usg_name: str = None
|
||||
verify_ssl: bool = False
|
||||
|
||||
|
||||
# Shared
|
||||
class Queue(NamedTuple):
|
||||
downloadId: str = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue