]> granicus.if.org Git - icinga2/blob - lib/db_ido_pgsql/idopgsqlconnection.ti
Add 'third-party/utf8cpp/' from commit '82344d605146dca6b19abc21578482cecda7f5d7'
[icinga2] / lib / db_ido_pgsql / idopgsqlconnection.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #include "db_ido/dbconnection.hpp"
4
5 library db_ido_pgsql;
6
7 namespace icinga
8 {
9
10 class IdoPgsqlConnection : DbConnection
11 {
12         activation_priority 100;
13
14         [config] String host {
15                 default {{{ return "localhost"; }}}
16         };
17         [config] String port {
18                 default {{{ return "5432"; }}}
19         };
20         [config] String user {
21                 default {{{ return "icinga"; }}}
22         };
23         [config] String password {
24                 default {{{ return "icinga"; }}}
25         };
26         [config] String database {
27                 default {{{ return "icinga"; }}}
28         };
29         [config] String instance_name {
30                 default {{{ return "default"; }}}
31         };
32         [config] String instance_description;
33         [config] String ssl_mode;
34         [config] String ssl_key;
35         [config] String ssl_cert;
36         [config] String ssl_ca;
37 };
38
39 }