2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-06-22 17:51:11 +02:00
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configobject.hpp"
|
2015-09-28 08:57:25 +02:00
|
|
|
#include "base/function.hpp"
|
2015-06-22 17:51:11 +02:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library remote;
|
|
|
|
|
2015-06-22 17:51:11 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
class ApiUser : ConfigObject
|
2015-06-22 17:51:11 +02:00
|
|
|
{
|
2017-08-11 16:23:24 +02:00
|
|
|
/* No show config */
|
2020-10-09 20:15:44 +02:00
|
|
|
[config, no_user_view] String password;
|
2018-06-18 11:05:56 +02:00
|
|
|
[deprecated, config, no_user_view] String password_hash;
|
2015-07-09 15:25:51 +02:00
|
|
|
[config] String client_cn (ClientCN);
|
2015-09-28 08:57:25 +02:00
|
|
|
[config] array(Value) permissions;
|
|
|
|
};
|
|
|
|
|
|
|
|
validator ApiUser {
|
|
|
|
Array permissions {
|
|
|
|
String "*";
|
|
|
|
Dictionary "*" {
|
|
|
|
required permission;
|
|
|
|
String permission;
|
|
|
|
Function filter;
|
|
|
|
};
|
|
|
|
};
|
2015-06-22 17:51:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|