From: Marcin Haba Date: Tue, 26 Sep 2023 12:47:39 +0000 (+0200) Subject: baculum: Add documentation for os and version filters in clients endpoint X-Git-Tag: Beta-15.0.0~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8828afa3d5f8d8e193a91cef4d08b2db10e0477f;p=thirdparty%2Fbacula.git baculum: Add documentation for os and version filters in clients endpoint --- diff --git a/gui/baculum/protected/API/openapi_baculum.json b/gui/baculum/protected/API/openapi_baculum.json index adc7dd326..f6d751a71 100644 --- a/gui/baculum/protected/API/openapi_baculum.json +++ b/gui/baculum/protected/API/openapi_baculum.json @@ -497,6 +497,24 @@ "schema": { "type": "boolean" } + }, + { + "name": "os", + "in": "query", + "required": false, + "description": "Operating system filter. Value provided here is sourrunded by regex .* and .* so there is possible to provide only a part of the operating system info. This parameter supports regexp and it is case insensitive.", + "schema": { + "type": "string" + } + }, + { + "name": "version", + "in": "query", + "required": false, + "description": "Client version filter. Value provided here is sourrunded by regex .* and .* so there is possible to provide only a part of the version. This parameter supports regexp and it is case insensitive.", + "schema": { + "type": "string" + } } ] }