name | data type | description |
---|---|---|
msg | string | |
changed | boolean | |
end | string | |
start | string | |
delta | string | |
stdout | string | |
stderr | string | |
cmd | array of string | |
stdout_lines | array of string | |
results | array of AnsibleResult_ |
Example
{ "msg" : "...", "changed" : true, "end" : "...", "start" : "...", "delta" : "...", "stdout" : "...", "stderr" : "...", "cmd" : [ "...", "..." ], "stdout_lines" : [ "...", "..." ], "results" : [ { "_ansible_parsed" : true, "changed" : true, "cache_updated" : true, "_ansible_item_result" : true, "item" : [ "...", "..." ], "invocation" : { "module_args" : { }, "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_args" : { }, "module_name" : "..." }, "cache_update_time" : 12345, "_ansible_no_log" : true } ] }