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