summaryrefslogtreecommitdiffstats
path: root/lib/db_ido_mysql/idomysqlconnection.ti
blob: 681148fb3bbf822a8258d6aeb7f5a99061edc898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */

#include "db_ido/dbconnection.hpp"

library db_ido_mysql;

namespace icinga
{

class IdoMysqlConnection : DbConnection
{
	activation_priority 100;

	[config] String host {
		default {{{ return "localhost"; }}}
	};
	[config] int port {
		default {{{ return 3306; }}}
	};
	[config] String socket_path;
	[config] String user {
		default {{{ return "icinga"; }}}
	};
	[config, no_user_view, no_user_modify] String password {
		default {{{ return "icinga"; }}}
	};
	[config] String database {
		default {{{ return "icinga"; }}}
	};
	[config] bool enable_ssl;
	[config] String ssl_key;
	[config] String ssl_cert;
	[config] String ssl_ca;
	[config] String ssl_capath;
	[config] String ssl_cipher;
	[config] String instance_name {
		default {{{ return "default"; }}}
	};
	[config] String instance_description;
};

}