icinga2 0.9.2.1 → 0.9.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +25 -22
  3. data/doc/Array.html +4 -6
  4. data/doc/Boolean.html +4 -6
  5. data/doc/FalseClass.html +4 -6
  6. data/doc/Hash.html +126 -8
  7. data/doc/Icinga2.html +7 -9
  8. data/doc/Logging.html +5 -7
  9. data/doc/Object.html +8 -10
  10. data/doc/Time.html +4 -6
  11. data/doc/TrueClass.html +4 -6
  12. data/doc/_index.html +20 -7
  13. data/doc/class_list.html +1 -1
  14. data/doc/file.README.html +32 -30
  15. data/doc/frames.html +1 -1
  16. data/doc/index.html +32 -30
  17. data/doc/method_list.html +34 -2
  18. data/doc/services.md +45 -62
  19. data/doc/top-level-namespace.html +4 -6
  20. data/examples/_blank.rb +2 -2
  21. data/examples/config.rb +23 -0
  22. data/examples/downtimes.rb +4 -33
  23. data/examples/hostgroups.rb +4 -33
  24. data/examples/hosts.rb +18 -33
  25. data/examples/informations.rb +4 -33
  26. data/examples/notifications.rb +4 -33
  27. data/examples/servicegroups.rb +4 -25
  28. data/examples/services.rb +46 -67
  29. data/examples/statistics.rb +4 -33
  30. data/examples/test.rb +7 -28
  31. data/examples/usergroups.rb +4 -33
  32. data/examples/users.rb +4 -33
  33. data/lib/icinga2/client.rb +16 -42
  34. data/lib/icinga2/converts.rb +16 -54
  35. data/lib/icinga2/downtimes.rb +46 -44
  36. data/lib/icinga2/hostgroups.rb +35 -35
  37. data/lib/icinga2/hosts.rb +235 -228
  38. data/lib/icinga2/network.rb +53 -125
  39. data/lib/icinga2/notifications.rb +37 -46
  40. data/lib/icinga2/servicegroups.rb +31 -41
  41. data/lib/icinga2/services.rb +211 -236
  42. data/lib/icinga2/tools.rb +10 -9
  43. data/lib/icinga2/usergroups.rb +22 -32
  44. data/lib/icinga2/users.rb +64 -59
  45. data/lib/icinga2/validator.rb +59 -0
  46. data/lib/icinga2/version.rb +1 -1
  47. metadata +78 -7
  48. data/lib/icinga2/network.rb-SAVE +0 -1004
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db0fe25ebd8e946d7c604572bf519a42d07a9d82
4
- data.tar.gz: a903a6ec90465f9c77eaa435fd87fce351aa6993
3
+ metadata.gz: 7f33482da16075121f4e961b687fdb49458a197c
4
+ data.tar.gz: f3aba7b6edf26ae6bfe5b014a265e6a3a0ed4a59
5
5
  SHA512:
6
- metadata.gz: bae9836345523dcf3756967d14d54d19bd8b0b266f0883e01397bdaca52b05671e09266bbbbc3d384c903a6bc33f9177bc7ad76d8489ac9c88b44a7de75ed6ed
7
- data.tar.gz: f956ffb022e2fa3857646d8e1b1a2f366276c2945a478e4d5faac64b6747d86c653ede0202e358635a530405a55226659c58f10f28065cd9ef6efcafdaf82d68
6
+ metadata.gz: f5d780e4b7d7bb08dd97f87a75a4c0148a3e70b1439151bee9d18abe86503045455e9630d0caee5f5bef4680afb8c4a8b38dfe682960dfa1440066b66b4e46cc
7
+ data.tar.gz: 86dfdbd9573c2a55da7a57f0d1e2c2b1e13b43b5c0a63f8f7f11e32baeaaff826eaefffd40f482912fc99b4a52e1a5ee605d5e8b0a8aedffecfa05851ae6726f
data/README.md CHANGED
@@ -30,13 +30,15 @@ An enhanced ruby gem to communicate with Icinga2 API
30
30
 
31
31
  create an instance
32
32
 
33
+ require 'icinga2'
34
+
33
35
  config = {
34
- :icinga => {
35
- :host => icingaHost,
36
- :api => {
37
- :port => icingaApiPort,
38
- :user => icingaApiUser,
39
- :pass => icingaApiPass
36
+ icinga: {
37
+ host: icinga_host,
38
+ api: {
39
+ port: icinga_api_port,
40
+ username: icinga_api_user,
41
+ password: icinga_api_pass
40
42
  }
41
43
  }
42
44
  }
@@ -52,35 +54,37 @@ my own [Docker Container](https://hub.docker.com/r/bodsch/docker-icinga2/) as Da
52
54
 
53
55
  you can find many examples under the directory `examples`:
54
56
 
55
- #$ export ICINGA_HOST=localhost ; export ICINGA_API_USER=root ; export ICINGA_API_PASSWORD=icinga
56
- #$ ruby examples/informations.rb
57
- #$ ruby examples/statistics.rb
58
- #$ ruby examples/users.rb
57
+ $ export ICINGA_HOST=localhost ; export ICINGA_API_USER=root ; export ICINGA_API_PASSWORD=icinga
58
+ $ ruby examples/informations.rb
59
+ $ ruby examples/statistics.rb
60
+ $ ruby examples/users.rb
59
61
 
60
62
  and so on.
61
63
 
62
64
  ### Test via CLI
63
65
 
64
- #$ irb
65
- 2.3.0 :001 > require 'icinga2'
66
+ $ irb
67
+ irb(main):001:0> require 'icinga2'
66
68
  => true
67
- 2.3.0 :002 > config = { :icinga => { :host => 'localhost', :api => { :user => 'root', :pass => 'icinga' } } }
68
- => {:icinga=>{:host=>"localhost", :api=>{:user=>"root", :pass=>"icinga"}}}
69
- 2.3.0 :003 > i = Icinga2::Client.new( config )
70
-
69
+ irb(main):002:0> config = { icinga: { host: 'localhost', api: { username: 'root', password: 'icinga' } } }
70
+ => {:icinga=>{:host=>"localhost", :api=>{:username=>"root", :password=>"icinga"}}}
71
+ irb(main):003:0> i = Icinga2::Client.new( config )
72
+ irb(main):004:0> i.available?
73
+ => true
74
+ irb(main):005:0>
71
75
 
72
76
  ## Create a own gem file
73
77
 
74
- #$ gem build icinga2.gemspec
78
+ $ gem build icinga2.gemspec
75
79
  Successfully built RubyGem
76
80
  Name: icinga2
77
- Version: 0.9.0
78
- File: icinga2-0.9.0.gem
81
+ Version: 0.9.2.7
82
+ File: icinga2-0.9.2.7.gem
79
83
 
80
84
  ## Install local gem
81
85
 
82
- #$ gem install icinga2
83
- Successfully installed icinga2-0.9.0
86
+ $ gem install icinga2
87
+ Successfully installed icinga2-0.9.2.7
84
88
  1 gem installed
85
89
 
86
90
 
@@ -131,7 +135,6 @@ supports the following API Calls:
131
135
  * [count of all services](doc/services.md#count-all-services)
132
136
  * [count all services with handled problems](doc/services.md#count-all-services-handled)
133
137
  * calculate service severity (protected)
134
- * update host (private)
135
138
 
136
139
  - [Servicegroups](doc/servicegroups.md)
137
140
  * [add servicegroup](doc/servicegroups.md#add-servicegroup)
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Array
8
8
 
9
- &mdash; Documentation by YARD 0.9.4
9
+ &mdash; Documentation by YARD 0.9.11
10
10
 
11
11
  </title>
12
12
 
@@ -28,7 +28,7 @@
28
28
  </head>
29
29
  <body>
30
30
  <div class="nav_wrap">
31
- <iframe id="nav" src="class_list.html"></iframe>
31
+ <iframe id="nav" src="class_list.html?1"></iframe>
32
32
  <div id="resizer"></div>
33
33
  </div>
34
34
 
@@ -59,8 +59,6 @@
59
59
  <div class="clear"></div>
60
60
  </div>
61
61
 
62
- <iframe id="search_frame" src="class_list.html"></iframe>
63
-
64
62
  <div id="content"><h1>Class: Array
65
63
 
66
64
 
@@ -192,9 +190,9 @@
192
190
  </div>
193
191
 
194
192
  <div id="footer">
195
- Generated on Sun Nov 12 15:48:13 2017 by
193
+ Generated on Sat Dec 9 20:28:07 2017 by
196
194
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
197
- 0.9.4 (ruby-2.2.8).
195
+ 0.9.11 (ruby-2.2.8).
198
196
  </div>
199
197
 
200
198
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Boolean
8
8
 
9
- &mdash; Documentation by YARD 0.9.4
9
+ &mdash; Documentation by YARD 0.9.11
10
10
 
11
11
  </title>
12
12
 
@@ -28,7 +28,7 @@
28
28
  </head>
29
29
  <body>
30
30
  <div class="nav_wrap">
31
- <iframe id="nav" src="class_list.html"></iframe>
31
+ <iframe id="nav" src="class_list.html?1"></iframe>
32
32
  <div id="resizer"></div>
33
33
  </div>
34
34
 
@@ -59,8 +59,6 @@
59
59
  <div class="clear"></div>
60
60
  </div>
61
61
 
62
- <iframe id="search_frame" src="class_list.html"></iframe>
63
-
64
62
  <div id="content"><h1>Module: Boolean
65
63
 
66
64
 
@@ -114,9 +112,9 @@ href="https://stackoverflow.com/questions/3028243/check-if-ruby-object-is-a-bool
114
112
  </div>
115
113
 
116
114
  <div id="footer">
117
- Generated on Sun Nov 12 15:48:13 2017 by
115
+ Generated on Sat Dec 9 20:28:06 2017 by
118
116
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
119
- 0.9.4 (ruby-2.2.8).
117
+ 0.9.11 (ruby-2.2.8).
120
118
  </div>
121
119
 
122
120
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: FalseClass
8
8
 
9
- &mdash; Documentation by YARD 0.9.4
9
+ &mdash; Documentation by YARD 0.9.11
10
10
 
11
11
  </title>
12
12
 
@@ -28,7 +28,7 @@
28
28
  </head>
29
29
  <body>
30
30
  <div class="nav_wrap">
31
- <iframe id="nav" src="class_list.html"></iframe>
31
+ <iframe id="nav" src="class_list.html?1"></iframe>
32
32
  <div id="resizer"></div>
33
33
  </div>
34
34
 
@@ -59,8 +59,6 @@
59
59
  <div class="clear"></div>
60
60
  </div>
61
61
 
62
- <iframe id="search_frame" src="class_list.html"></iframe>
63
-
64
62
  <div id="content"><h1>Class: FalseClass
65
63
 
66
64
 
@@ -124,9 +122,9 @@
124
122
  </div>
125
123
 
126
124
  <div id="footer">
127
- Generated on Sun Nov 12 15:48:13 2017 by
125
+ Generated on Sat Dec 9 20:28:07 2017 by
128
126
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
129
- 0.9.4 (ruby-2.2.8).
127
+ 0.9.11 (ruby-2.2.8).
130
128
  </div>
131
129
 
132
130
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Hash
8
8
 
9
- &mdash; Documentation by YARD 0.9.4
9
+ &mdash; Documentation by YARD 0.9.11
10
10
 
11
11
  </title>
12
12
 
@@ -28,7 +28,7 @@
28
28
  </head>
29
29
  <body>
30
30
  <div class="nav_wrap">
31
- <iframe id="nav" src="class_list.html"></iframe>
31
+ <iframe id="nav" src="class_list.html?1"></iframe>
32
32
  <div id="resizer"></div>
33
33
  </div>
34
34
 
@@ -59,8 +59,6 @@
59
59
  <div class="clear"></div>
60
60
  </div>
61
61
 
62
- <iframe id="search_frame" src="class_list.html"></iframe>
63
-
64
62
  <div id="content"><h1>Class: Hash
65
63
 
66
64
 
@@ -96,7 +94,9 @@
96
94
 
97
95
  <dl>
98
96
  <dt>Defined in:</dt>
99
- <dd>lib/monkey_patches.rb</dd>
97
+ <dd>lib/monkey_patches.rb<span class="defines">,<br />
98
+ lib/icinga2/validator.rb</span>
99
+ </dd>
100
100
  </dl>
101
101
 
102
102
  </div>
@@ -131,6 +131,50 @@ useableTags = tags.filter( &#39;fii&#39; )</p>
131
131
  <li class="public ">
132
132
  <span class="summary_signature">
133
133
 
134
+ <a href="#assert_required_keys-instance_method" title="#assert_required_keys (instance method)">#<strong>assert_required_keys</strong>(*keys) &#x21d2; Object </a>
135
+
136
+
137
+
138
+ </span>
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+ <span class="summary_desc"><div class='inline'></div></span>
149
+
150
+ </li>
151
+
152
+
153
+ <li class="public ">
154
+ <span class="summary_signature">
155
+
156
+ <a href="#assert_valid_keys-instance_method" title="#assert_valid_keys (instance method)">#<strong>assert_valid_keys</strong>(params, *valid_keys) &#x21d2; Object </a>
157
+
158
+
159
+
160
+ </span>
161
+
162
+
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+ <span class="summary_desc"><div class='inline'></div></span>
171
+
172
+ </li>
173
+
174
+
175
+ <li class="public ">
176
+ <span class="summary_signature">
177
+
134
178
  <a href="#filter-instance_method" title="#filter (instance method)">#<strong>filter</strong>(*args) &#x21d2; Object </a>
135
179
 
136
180
 
@@ -160,7 +204,81 @@ useableTags = tags.filter( &#39;fii&#39; )</p>
160
204
 
161
205
 
162
206
  <div class="method_details first">
163
- <h3 class="signature first" id="filter-instance_method">
207
+ <h3 class="signature first" id="assert_required_keys-instance_method">
208
+
209
+ #<strong>assert_required_keys</strong>(*keys) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
210
+
211
+
212
+
213
+
214
+
215
+ </h3><table class="source_code">
216
+ <tr>
217
+ <td>
218
+ <pre class="lines">
219
+
220
+
221
+ 3
222
+ 4
223
+ 5
224
+ 6
225
+ 7</pre>
226
+ </td>
227
+ <td>
228
+ <pre class="code"><span class="info file"># File 'lib/icinga2/validator.rb', line 3</span>
229
+
230
+ <span class='kw'>def</span> <span class='id identifier rubyid_assert_required_keys'>assert_required_keys</span><span class='lparen'>(</span><span class='op'>*</span><span class='id identifier rubyid_keys'>keys</span><span class='rparen'>)</span>
231
+ <span class='id identifier rubyid_keys'>keys</span><span class='period'>.</span><span class='id identifier rubyid_flatten'>flatten</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_key'>key</span><span class='op'>|</span>
232
+ <span class='id identifier rubyid_raise'>raise</span> <span class='const'>ArgumentError</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Required key: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_key'>key</span><span class='period'>.</span><span class='id identifier rubyid_inspect'>inspect</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span> <span class='kw'>unless</span> <span class='id identifier rubyid_key?'>key?</span><span class='lparen'>(</span><span class='id identifier rubyid_key'>key</span><span class='rparen'>)</span>
233
+ <span class='kw'>end</span>
234
+ <span class='kw'>end</span></pre>
235
+ </td>
236
+ </tr>
237
+ </table>
238
+ </div>
239
+
240
+ <div class="method_details ">
241
+ <h3 class="signature " id="assert_valid_keys-instance_method">
242
+
243
+ #<strong>assert_valid_keys</strong>(params, *valid_keys) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
244
+
245
+
246
+
247
+
248
+
249
+ </h3><table class="source_code">
250
+ <tr>
251
+ <td>
252
+ <pre class="lines">
253
+
254
+
255
+ 9
256
+ 10
257
+ 11
258
+ 12
259
+ 13
260
+ 14
261
+ 15
262
+ 16</pre>
263
+ </td>
264
+ <td>
265
+ <pre class="code"><span class="info file"># File 'lib/icinga2/validator.rb', line 9</span>
266
+
267
+ <span class='kw'>def</span> <span class='id identifier rubyid_assert_valid_keys'>assert_valid_keys</span><span class='lparen'>(</span><span class='id identifier rubyid_params'>params</span><span class='comma'>,</span> <span class='op'>*</span><span class='id identifier rubyid_valid_keys'>valid_keys</span><span class='rparen'>)</span>
268
+ <span class='id identifier rubyid_valid_keys'>valid_keys</span><span class='period'>.</span><span class='id identifier rubyid_flatten!'>flatten!</span>
269
+ <span class='id identifier rubyid_params'>params</span><span class='period'>.</span><span class='id identifier rubyid_each_key'>each_key</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_k'>k</span><span class='op'>|</span>
270
+ <span class='kw'>unless</span> <span class='id identifier rubyid_valid_keys'>valid_keys</span><span class='period'>.</span><span class='id identifier rubyid_include?'>include?</span><span class='lparen'>(</span><span class='id identifier rubyid_k'>k</span><span class='rparen'>)</span>
271
+ <span class='id identifier rubyid_raise'>raise</span> <span class='const'>ArgumentError</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Unknown key: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_k'>k</span><span class='period'>.</span><span class='id identifier rubyid_inspect'>inspect</span><span class='embexpr_end'>}</span><span class='tstring_content'>. Valid keys are: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_valid_keys'>valid_keys</span><span class='period'>.</span><span class='id identifier rubyid_map'>map</span><span class='lparen'>(</span><span class='op'>&amp;</span><span class='symbol'>:inspect</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_join'>join</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>, </span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
272
+ <span class='kw'>end</span>
273
+ <span class='kw'>end</span>
274
+ <span class='kw'>end</span></pre>
275
+ </td>
276
+ </tr>
277
+ </table>
278
+ </div>
279
+
280
+ <div class="method_details ">
281
+ <h3 class="signature " id="filter-instance_method">
164
282
 
165
283
  #<strong>filter</strong>(*args) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
166
284
 
@@ -204,9 +322,9 @@ useableTags = tags.filter( &#39;fii&#39; )</p>
204
322
  </div>
205
323
 
206
324
  <div id="footer">
207
- Generated on Sun Nov 12 15:48:13 2017 by
325
+ Generated on Sat Dec 9 20:28:07 2017 by
208
326
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
209
- 0.9.4 (ruby-2.2.8).
327
+ 0.9.11 (ruby-2.2.8).
210
328
  </div>
211
329
 
212
330
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Icinga2
8
8
 
9
- &mdash; Documentation by YARD 0.9.4
9
+ &mdash; Documentation by YARD 0.9.11
10
10
 
11
11
  </title>
12
12
 
@@ -28,7 +28,7 @@
28
28
  </head>
29
29
  <body>
30
30
  <div class="nav_wrap">
31
- <iframe id="nav" src="class_list.html"></iframe>
31
+ <iframe id="nav" src="class_list.html?1"></iframe>
32
32
  <div id="resizer"></div>
33
33
  </div>
34
34
 
@@ -59,8 +59,6 @@
59
59
  <div class="clear"></div>
60
60
  </div>
61
61
 
62
- <iframe id="search_frame" src="class_list.html"></iframe>
63
-
64
62
  <div id="content"><h1>Module: Icinga2
65
63
 
66
64
 
@@ -81,7 +79,7 @@
81
79
  <dl>
82
80
  <dt>Defined in:</dt>
83
81
  <dd>lib/icinga2/tools.rb<span class="defines">,<br />
84
- lib/icinga2.rb,<br /> lib/icinga2/hosts.rb,<br /> lib/icinga2/users.rb,<br /> lib/icinga2/client.rb,<br /> lib/icinga2/version.rb,<br /> lib/icinga2/network.rb,<br /> lib/icinga2/services.rb,<br /> lib/icinga2/converts.rb,<br /> lib/icinga2/downtimes.rb,<br /> lib/icinga2/statistics.rb,<br /> lib/icinga2/usergroups.rb,<br /> lib/icinga2/hostgroups.rb,<br /> lib/icinga2/notifications.rb,<br /> lib/icinga2/servicegroups.rb</span>
82
+ lib/icinga2.rb,<br /> lib/icinga2/hosts.rb,<br /> lib/icinga2/users.rb,<br /> lib/icinga2/client.rb,<br /> lib/icinga2/network.rb,<br /> lib/icinga2/version.rb,<br /> lib/icinga2/converts.rb,<br /> lib/icinga2/services.rb,<br /> lib/icinga2/downtimes.rb,<br /> lib/icinga2/validator.rb,<br /> lib/icinga2/hostgroups.rb,<br /> lib/icinga2/statistics.rb,<br /> lib/icinga2/usergroups.rb,<br /> lib/icinga2/notifications.rb,<br /> lib/icinga2/servicegroups.rb</span>
85
83
  </dd>
86
84
  </dl>
87
85
 
@@ -102,7 +100,7 @@
102
100
  <p class="children">
103
101
 
104
102
 
105
- <strong class="modules">Modules:</strong> <span class='object_link'><a href="Icinga2/Converts.html" title="Icinga2::Converts (module)">Converts</a></span>, <span class='object_link'><a href="Icinga2/Downtimes.html" title="Icinga2::Downtimes (module)">Downtimes</a></span>, <span class='object_link'><a href="Icinga2/Hostgroups.html" title="Icinga2::Hostgroups (module)">Hostgroups</a></span>, <span class='object_link'><a href="Icinga2/Hosts.html" title="Icinga2::Hosts (module)">Hosts</a></span>, <span class='object_link'><a href="Icinga2/Network.html" title="Icinga2::Network (module)">Network</a></span>, <span class='object_link'><a href="Icinga2/Notifications.html" title="Icinga2::Notifications (module)">Notifications</a></span>, <span class='object_link'><a href="Icinga2/Servicegroups.html" title="Icinga2::Servicegroups (module)">Servicegroups</a></span>, <span class='object_link'><a href="Icinga2/Services.html" title="Icinga2::Services (module)">Services</a></span>, <span class='object_link'><a href="Icinga2/Statistics.html" title="Icinga2::Statistics (module)">Statistics</a></span>, <span class='object_link'><a href="Icinga2/Tools.html" title="Icinga2::Tools (module)">Tools</a></span>, <span class='object_link'><a href="Icinga2/Usergroups.html" title="Icinga2::Usergroups (module)">Usergroups</a></span>, <span class='object_link'><a href="Icinga2/Users.html" title="Icinga2::Users (module)">Users</a></span>
103
+ <strong class="modules">Modules:</strong> <span class='object_link'><a href="Icinga2/Converts.html" title="Icinga2::Converts (module)">Converts</a></span>, <span class='object_link'><a href="Icinga2/Downtimes.html" title="Icinga2::Downtimes (module)">Downtimes</a></span>, <span class='object_link'><a href="Icinga2/Hostgroups.html" title="Icinga2::Hostgroups (module)">Hostgroups</a></span>, <span class='object_link'><a href="Icinga2/Hosts.html" title="Icinga2::Hosts (module)">Hosts</a></span>, <span class='object_link'><a href="Icinga2/Network.html" title="Icinga2::Network (module)">Network</a></span>, <span class='object_link'><a href="Icinga2/Notifications.html" title="Icinga2::Notifications (module)">Notifications</a></span>, <span class='object_link'><a href="Icinga2/Servicegroups.html" title="Icinga2::Servicegroups (module)">Servicegroups</a></span>, <span class='object_link'><a href="Icinga2/Services.html" title="Icinga2::Services (module)">Services</a></span>, <span class='object_link'><a href="Icinga2/Statistics.html" title="Icinga2::Statistics (module)">Statistics</a></span>, <span class='object_link'><a href="Icinga2/Tools.html" title="Icinga2::Tools (module)">Tools</a></span>, <span class='object_link'><a href="Icinga2/Usergroups.html" title="Icinga2::Usergroups (module)">Usergroups</a></span>, <span class='object_link'><a href="Icinga2/Users.html" title="Icinga2::Users (module)">Users</a></span>, <span class='object_link'><a href="Icinga2/Validator.html" title="Icinga2::Validator (module)">Validator</a></span>
106
104
 
107
105
 
108
106
 
@@ -224,7 +222,7 @@
224
222
 
225
223
  </div>
226
224
  </dt>
227
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>1.0.0.pre3</span><span class='tstring_end'>&#39;</span></span></pre></dd>
225
+ <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>0.9.2.7</span><span class='tstring_end'>&#39;</span></span><span class='period'>.</span><span class='id identifier rubyid_freeze'>freeze</span></pre></dd>
228
226
 
229
227
  </dl>
230
228
 
@@ -239,9 +237,9 @@
239
237
  </div>
240
238
 
241
239
  <div id="footer">
242
- Generated on Sun Nov 12 15:48:13 2017 by
240
+ Generated on Sat Dec 9 20:28:06 2017 by
243
241
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
244
- 0.9.4 (ruby-2.2.8).
242
+ 0.9.11 (ruby-2.2.8).
245
243
  </div>
246
244
 
247
245
  </div>