Fetch service information including parsed TCB info.
(self)
| 441 | return AttestResponse(**result) |
| 442 | |
| 443 | async def info(self) -> InfoResponse[TcbInfo]: |
| 444 | """Fetch service information including parsed TCB info.""" |
| 445 | result = await self._send_rpc_request("Info", {}) |
| 446 | return InfoResponse.parse_response(result, TcbInfoV05x) |
| 447 | |
| 448 | async def emit_event( |
| 449 | self, |