AnsibleResult Data Type

Properties
name data type description
_ansible_parsed boolean
changed boolean
results array of Result_
_ansible_verbose_always boolean
end string
_ansible_no_log boolean
stdout string
msg string
cmd array of string
rc number
start string
stderr string
delta string
invocation Invocation
stdout_lines array of string
warnings array of string
_ansible_parsed boolean
_ansible_no_log boolean

Example

{
  "_ansible_parsed" : true,
  "changed" : true,
  "results" : [ {
    "_ansible_parsed" : true,
    "changed" : true,
    "cache_updated" : true,
    "_ansible_item_result" : true,
    "item" : [ "...", "..." ],
    "invocation" : {
      "module_name" : "..."
    },
    "cache_update_time" : 12345,
    "_ansible_no_log" : true
  }, {
    "_ansible_parsed" : true,
    "changed" : true,
    "cache_updated" : true,
    "_ansible_item_result" : true,
    "item" : [ "...", "..." ],
    "invocation" : {
      "module_name" : "..."
    },
    "cache_update_time" : 12345,
    "_ansible_no_log" : true
  } ],
  "_ansible_verbose_always" : true,
  "end" : "...",
  "_ansible_no_log" : true,
  "stdout" : "...",
  "msg" : "...",
  "cmd" : [ "...", "..." ],
  "rc" : 12345,
  "start" : "...",
  "stderr" : "...",
  "delta" : "...",
  "invocation" : {
    "module_name" : "..."
  },
  "stdout_lines" : [ "...", "..." ],
  "warnings" : [ "...", "..." ]
}