Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for Tenable AD Syslog APIs #538

Merged
merged 2 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/api/ad/syslog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. automodule:: tenable.ad.syslog.api
1 change: 1 addition & 0 deletions tenable/ad/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
roles
saml_configuration
score
syslog
topology
users
widget
Expand Down
9 changes: 9 additions & 0 deletions tenable/ad/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
from .roles.api import RolesAPI
from .saml_configuration.api import SAMLConfigurationAPI
from .score.api import ScoreAPI
from .syslog.api import SyslogAPI
from .topology.api import TopologyAPI
from .users.api import UsersAPI
from .widget.api import WidgetsAPI
Expand Down Expand Up @@ -188,6 +189,14 @@ def score(self):
'''
return ScoreAPI(self)

@property
def syslog(self):
'''
The interface object for the
:doc:`Tenable.ad Syslog APIs <syslog>`.
'''
return SyslogAPI(self)

@property
def topology(self):
'''
Expand Down
Empty file added tenable/ad/syslog/__init__.py
Empty file.
Loading