Result of issuing an AgentIdentity from a CSR. Returned to the agent for secure storage.
| 497 | |
| 498 | |
| 499 | class AgentIdentityIssueResult(BaseModel): |
| 500 | """ |
| 501 | Result of issuing an AgentIdentity from a CSR. |
| 502 | Returned to the agent for secure storage. |
| 503 | """ |
| 504 | identity: AgentIdentity |
| 505 | certificate: AgentCertificate |
| 506 | ca_fingerprint: str |
| 507 | private_key_pem: str = Field( |
| 508 | description="PKCS8 PEM private key. MUST be stored securely by the agent — NEVER sent to server.", |
| 509 | ) |