Source code for tenable.tenableone.exposure_view.api
"""Exposure View=============The following sub-package allows for interaction with the Tenable Exposure ManagementExposure View APIs... rst-class:: hide-signature.. autoclass:: ExposureViewAPI :members:.. toctree:: :hidden: :glob: cards/index"""fromrestflyimportAPIEndpointfromtenable.tenableone.exposure_view.cards.apiimportCardsAPI
[docs]classExposureViewAPI(APIEndpoint):@propertydefcards(self):""" The interface object for the :doc:`Tenable Exposure Management Exposure view Cards APIs <cards/index>`. """returnCardsAPI(self._api)