VmGuestProcessesInfo
The Processes.Info structure describes the state of a guest process.
Properties
string
command
Required
The full command line of the process.
string
name
Required
The process name.
string
owner
Required
The process owner.
string as date-time
started
Required
The start time of the process.
integer as int64
exit_code
Optional
If the process was started using Processes.create then the process exit code will be available if queried within 5 minutes after it completes. Set if the process was started with Processes.create and has recently exited.
string as date-time
finished
Optional
If the process was started using Processes.create then the process completion time will be available if queried within 5 minutes after it completes. Set if the process was started with Processes.create and has recently exited.
JSON Example
{
"command": "string",
"name": "string",
"owner": "string",
"started": "string"
}