2015-06-22 17:51:11 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2015-06-22 17:51:11 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
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
|
|
|
{
|
2015-10-20 08:20:35 +02:00
|
|
|
[config, no_user_view] String password;
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|