Werk #17250: notifications: add emergency as a Pushover priority option

Component REST API
Title notifications: add emergency as a Pushover priority option
Date Nov 13, 2024
Level Trivial Change
Class Bug Fix
Compatibility Incompatible - Manual interaction might be required
Checkmk versions & editions
2.4.0b1 Checkmk Raw (CRE), Checkmk Enterprise (CEE), Checkmk Cloud (CCE), Checkmk MSP (CME)

For notification plugins, the priority option was missing from available options in the rest-api. This werk fixes this issue by adding it as an option. However, this means that the schema also changes to accomodate for this new option.

Previously, you could set one of the priority options like this.

''' "priority": "low" # "lowest", "high", "normal"

'''

However, the "emergency" priority level adds a few more options, so now, the schema looks like this

''' "priority": { "level": "low" # "lowest", "high", "normal" } '''

or

''' "prioriy": { "level": "emergency", "retry": 60, "expire": 360, "receipt": "your receipt" } '''

To the list of all Werks