This is the base class for users to own resources. Many classes extend this class
name | data type | description |
---|---|---|
host | string | |
result | AnsibleResult | |
vmType | string | |
cloudDeploymentDomain | string | |
provisionID | string | |
Properties inherited from OwnedObject |
||
owner | string | The owner (username) for the particular object. This value is set when the DAO saves the object based on the principal how made the call |
id | string | The UID of this object. This value is auto generated by the DAO when the object is saved. |
Example
{ "host" : "...", "result" : { "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" : { }, "cache_update_time" : 12345, "_ansible_no_log" : true }, { "_ansible_parsed" : true, "changed" : true, "cache_updated" : true, "_ansible_item_result" : true, "item" : [ "...", "..." ], "invocation" : { }, "cache_update_time" : 12345, "_ansible_no_log" : true } ] }, "vmType" : "...", "cloudDeploymentDomain" : "...", "provisionID" : "...", "owner" : "user1", "id" : "58e3946e0fb4f562d84ba1ad" }