File: idopgsqlconnection.ti

package info (click to toggle)
icinga2 2.15.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,036 kB
  • sloc: cpp: 97,877; sql: 3,261; cs: 1,636; yacc: 1,584; sh: 1,009; ansic: 890; lex: 420; python: 80; makefile: 62; javascript: 12
file content (39 lines) | stat: -rw-r--r-- 773 bytes parent folder | download | duplicates (3)
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
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */

#include "db_ido/dbconnection.hpp"

library db_ido_pgsql;

namespace icinga
{

class IdoPgsqlConnection : DbConnection
{
	activation_priority 100;

	[config] String host {
		default {{{ return "localhost"; }}}
	};
	[config] String port {
		default {{{ return "5432"; }}}
	};
	[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] String instance_name {
		default {{{ return "default"; }}}
	};
	[config] String instance_description;
	[config] String ssl_mode;
	[config] String ssl_key;
	[config] String ssl_cert;
	[config] String ssl_ca;
};

}