mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-10-31 19:24:25 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			534 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			534 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 | |
| 
 | |
| #include "base/configobject.hpp"
 | |
| #include "base/function.hpp"
 | |
| 
 | |
| library remote;
 | |
| 
 | |
| namespace icinga
 | |
| {
 | |
| 
 | |
| class ApiUser : ConfigObject
 | |
| {
 | |
| 	/* No show config */
 | |
| 	[config, no_user_view] String password;
 | |
| 	[deprecated, config, no_user_view] String password_hash;
 | |
| 	[config] String client_cn (ClientCN);
 | |
| 	[config] array(Value) permissions;
 | |
| };
 | |
| 
 | |
| validator ApiUser {
 | |
| 	Array permissions {
 | |
| 		String "*";
 | |
| 		Dictionary "*" {
 | |
| 			required permission;
 | |
| 			String permission;
 | |
| 			Function filter;
 | |
| 		};
 | |
| 	};
 | |
| };
 | |
| 
 | |
| }
 |