{
"type": "object",
"properties": {
"roleId": {
"description": "the id of the role to run",
"type": "string"
},
"hosts": {
"description": "an array of hosts to run the role on",
"type": "array"
},
"params": {
"description": "an object containing the parameters to pass into the role",
"type": "object",
"properties": {},
"required": [
"params"
],
"additionalProperties": false
}
},
"required": [
"roleId",
"hosts",
"params"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name
Type
Description
result
object
the status of running the role on each host
Copied to Clipboard
{
"result": true
}
Copied to Clipboard
{
"description": "the status of running the role on each host",
"type": "object",
"properties": {
"result": true
},
"required": [
"result"
],
"additionalProperties": false
}