Source code for tenable.ad.about

'''
About
=====

Methods described in this section relate to the About API.
These methods can be accessed at ``TenableAD.about``.

.. rst-class:: hide-signature
.. autoclass:: AboutAPI
    :members:
'''
from tenable.base.endpoint import APIEndpoint


[docs]class AboutAPI(APIEndpoint): _path = 'about'
[docs] def version(self) -> str: ''' Returns the version of the connected Tenable Identity Exposure instance. Examples: >>> tad.about.version() ''' return self._get(box=True).version