Werk #15888: folder_config: update endpoint now requires which update option you want
Komponente | REST API | ||||
Titel | folder_config: update endpoint now requires which update option you want | ||||
Datum | 07.06.2023 | ||||
Level | Kleine Änderung | ||||
Klasse | Bugfix | ||||
Kompatibilität | Inkompatibel - Manuelle Interaktion könnte erforderlich sein | ||||
Checkmk versions & editions |
|
Previously when calling update folder, you could pass any combination of
replace all attributes update some attributes delete some attributes
Some of these combinations didn't make much sense and could lead to errors. This werk simplifies this by only allowing one of the options when calling update folder or bulk update folders.
For update_folder, previously you could do the following
{
"title": "Virtual Servers.",
"attributes": {"tag_networking": "wan"},
"update_attributes": {"tag_criticality": "prod"},
"remove_attributes": ["tag_foobar"],
}
This werk modifies this behaviour by forcing the client to select only one action.
{
"title": "Virtual Servers.",
"attributes": {"tag_networking": "wan"},
}
OR
{
"title": "Virtual Servers.",
"update_attributes": {"tag_criticality": "prod"},
}
OR
{
"title": "Virtual Servers.",
"remove_attributes": ["tag_foobar"],
}