'''Reports=======The following methods allow for interaction into the Tenable Vulnerability ManagementContainer Security :devportal:`report <cs-v2-reports>` API endpoints.Methods available on ``tio.cs.reports``:.. rst-class:: hide-signature.. autoclass:: ReportsAPI :members:'''fromtypingimportDictfromtenable.base.endpointimportAPIEndpoint
[docs]defreport(self,repository:str,image:str,tag:str)->Dict:''' Returns the report for the specified image. :devportal:`API Documentation <container-security-v2-get-image-report>` Args: repository (str): The repository name. image (str): The image name. tag (str): The tag name. Examples: >>> tio.cs.reports.report('centos', '7', 'latest') '''returnself._get(f'{repository}/{image}/{tag}')