From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id D3C2D1FF0E0 for ; Thu, 09 Jul 2026 13:58:54 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 6E47B215E7; Thu, 09 Jul 2026 13:57:58 +0200 (CEST) From: Lukas Wagner To: pbs-devel@lists.proxmox.com, pve-devel@lists.proxmox.com Subject: [PATCH manager 28/29] api: notification: add 'expression' to matcher parameter schema Date: Thu, 9 Jul 2026 13:57:15 +0200 Message-ID: <20260709115716.299836-29-l.wagner@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260709115716.299836-1-l.wagner@proxmox.com> References: <20260709115716.299836-1-l.wagner@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1783598241042 X-SPAM-LEVEL: Spam detection results: 0 DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: W2UWZXPZTPA6LJH4JAPSFOHTBVD2YCRF X-Message-ID-Hash: W2UWZXPZTPA6LJH4JAPSFOHTBVD2YCRF X-MailFrom: l.wagner@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox Backup Server development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Signed-off-by: Lukas Wagner --- PVE/API2/Cluster/Notifications.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/PVE/API2/Cluster/Notifications.pm b/PVE/API2/Cluster/Notifications.pm index 80884af1..bd3c86cc 100644 --- a/PVE/API2/Cluster/Notifications.pm +++ b/PVE/API2/Cluster/Notifications.pm @@ -1480,6 +1480,13 @@ my $matcher_properties = { type => 'string', format => 'pve-configid', }, + 'expression' => { + type => 'string', + description => 'Match expression as inline JSON. This option is mutually exclusive with' + . ' the following options: match-field, match-calendar, match-severity, invert-match' + . ' and mode. All of these can be represented as (sub)-expressions of this expression', + optional => 1, + }, 'match-field' => { type => 'array', items => { -- 2.47.3