Is your feature request related to a problem? Please describe.
When we use vim.vm.guest.ProcessManager.ListProcesses to get the status of a list of PIDs, we get the following attributes:
- name: str
- pid: long
- owner: str
- cmdLine: str
- startTime: datetime
- endTime: Optional[datetime] = None
- exitCode: Optional[int] = None
However, if the exitCode is not 0, we don't have information about stderr/stdout.
Describe the solution you'd like
Add two attributes:
Describe alternatives you've considered
No response
Additional context
No response