Summary
Update a device group in Ansible Manager
Description
This method will update a device group in Ansible Manager
Route
No Northbound API Available
Roles
admin
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| group |
string |
yes |
the name of a device group |
| groupVars |
object |
yes |
the information for the device group |
Copied to Clipboard
{
"group": "elit fugiat nulla reprehenderit",
"groupVars": null
}
Copied to Clipboard
{
"type": "object",
"properties": {
"group": {
"description": "the name of a device group",
"type": "string"
},
"groupVars": {
"description": "the information for the device group",
"type": "object",
"properties": {},
"required": [
"groupVars"
],
"additionalProperties": false
}
},
"required": [
"group",
"groupVars"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| result |
object |
the status of the update |
Copied to Clipboard
{
"result": true
}
Copied to Clipboard
{
"description": "the status of the update",
"type": "object",
"properties": {
"result": true
},
"required": [
"result"
],
"additionalProperties": false
}