AnsibleResult Data Type

This class represents an ansible execution result. This can be used as a archive / log of ansible executions for example how much time it took for execution, errors etc.

Properties
name data type description
msg string
changed boolean
end string
start string
delta string
stdout string
stderr string
cmd array of string

Example

{
  "msg" : "...",
  "changed" : true,
  "end" : "...",
  "start" : "...",
  "delta" : "...",
  "stdout" : "...",
  "stderr" : "...",
  "cmd" : [ "...", "..." ]
}