"""PCI-ASV=======The following methods allow for interaction into the TVM PCI-ASV API endpoints.Methods available on ``tio.pci``:.. rst-class:: hide-signature.. autoclass:: PCIASVAPI :members:.. toctree:: :hidden: :glob: attestations scans"""fromtypingimportAny,Literal,Typefrom..baseimportTIOEndpointfrom.attestationsimportAttestationsAPIfrom.scansimportScansAPI
[docs]classPCIASVAPI(TIOEndpoint):@propertydefattestations(self)->AttestationsAPI:""" The interface for :doc:`TVM PCI-ASV Attestations APIs <attestations>`. """returnAttestationsAPI(self._api)@propertydefscans(self)->ScansAPI:""" The interface for :doc:`TVM PCI-ASV Scans APIs <scans>`. """returnScansAPI(self._api)