'''Container Security==================The following sub-package allows for interaction with the Tenable Vulnerability ManagementContainer Security APIs... rst-class:: hide-signature.. autoclass:: ContainerSecurity :members:.. toctree:: :hidden: :glob: images reports repositories'''fromtenable.base.endpointimportAPIEndpointfromtenable.io.cs.imagesimportImagesAPIfromtenable.io.cs.reportsimportReportsAPIfromtenable.io.cs.repositoriesimportRepositoriesAPI
[docs]classContainerSecurity(APIEndpoint):@propertydefimages(self):''' The interface object for the :doc:`Tenable Vulnerability Management Container Security Images APIs <images>`. '''returnImagesAPI(self._api)@propertydefreports(self):''' The interface object for the :doc:`Tenable Vulnerability Management Container Security Reports APIs <reports>`. '''returnReportsAPI(self._api)@propertydefrepositories(self):''' The interface object for the :doc:`Tenable Vulnerability Management Container Security Repository APIs <repositories>`. '''returnRepositoriesAPI(self._api)