Get Guest Processes
Returns the status of a process running in the guest operating system, including those started by Processes.create that may have recently completed.
if you do not have all of the privileges described as follows: - The resource VirtualMachine referenced by the parameter vm requires VirtualMachine.GuestOperations.Query.
Request
URLURL
Path Parameters
Path Parameters
Header Parameters
Header Parameters
Request Body
This is a request body class for an operation.
{
"credentials": {
"interactive_session": false,
"type": "enum"
}
}
Response
Response BodyResponse Body
The #Info for the process with id pid.
{
"command": "string",
"exit_code": 0,
"finished": "string",
"name": "string",
"owner": "string",
"started": "string"
}
The full command line of the process.
The process name.
The process owner.
The start time of the process.
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.
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.