wazuh-ruby-client 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/docs/Wazuh.html +4 -4
  4. data/docs/Wazuh/Api.html +2 -2
  5. data/docs/Wazuh/Api/Endpoints.html +3 -3
  6. data/docs/Wazuh/Api/Endpoints/ActiveResponse.html +1 -1
  7. data/docs/Wazuh/Api/Endpoints/Agents.html +3218 -594
  8. data/docs/Wazuh/Api/Endpoints/Cache.html +1 -1
  9. data/docs/Wazuh/Api/Endpoints/Ciscat.html +5 -3
  10. data/docs/Wazuh/Api/Endpoints/Cluster.html +48 -44
  11. data/docs/Wazuh/Api/Endpoints/Decoders.html +25 -17
  12. data/docs/Wazuh/Api/Endpoints/Experimental.html +60 -42
  13. data/docs/Wazuh/Api/Endpoints/Lists.html +15 -11
  14. data/docs/Wazuh/Api/Endpoints/Manager.html +26 -24
  15. data/docs/Wazuh/Api/Endpoints/Rootcheck.html +26 -20
  16. data/docs/Wazuh/Api/Endpoints/Rules.html +60 -42
  17. data/docs/Wazuh/Api/Endpoints/SecurityConfigurationAssessment.html +11 -7
  18. data/docs/Wazuh/Api/Endpoints/Summary.html +1 -1
  19. data/docs/Wazuh/Api/Endpoints/Syscheck.html +29 -30
  20. data/docs/Wazuh/Api/Endpoints/Syscollector.html +43 -31
  21. data/docs/Wazuh/Api/Errors.html +3 -5
  22. data/docs/Wazuh/Api/Errors/WazuhError.html +79 -7
  23. data/docs/Wazuh/Client.html +6 -6
  24. data/docs/Wazuh/Config.html +1 -1
  25. data/docs/Wazuh/Logger.html +1 -1
  26. data/docs/Wazuh/{Faraday.html → Sawyer.html} +9 -9
  27. data/docs/Wazuh/{Faraday → Sawyer}/Connection.html +6 -6
  28. data/docs/Wazuh/{Faraday → Sawyer}/Request.html +10 -10
  29. data/docs/WazuhRubyClient.html +2 -2
  30. data/docs/_index.html +15 -52
  31. data/docs/class_list.html +1 -1
  32. data/docs/file.README.html +138 -2
  33. data/docs/index.html +138 -2
  34. data/docs/method_list.html +219 -83
  35. data/docs/top-level-namespace.html +1 -1
  36. data/lib/wazuh-ruby-client/version.rb +1 -1
  37. data/lib/wazuh/api/endpoints/agents.rb +2 -1
  38. data/lib/wazuh/version.rb +1 -1
  39. metadata +6 -11
  40. data/docs/.nojekyll +0 -0
  41. data/docs/Wazuh/Api/Errors/TooManyRequestsError.html +0 -398
  42. data/docs/Wazuh/Faraday/Response.html +0 -115
  43. data/docs/Wazuh/Faraday/Response/RaiseError.html +0 -191
data/docs/index.html CHANGED
@@ -59,6 +59,10 @@
59
59
 
60
60
  <div id="content"><div id='filecontents'><h1>Wazuh Ruby Client</h1>
61
61
 
62
+ <p><a href="https://github.com/mrtc0/wazuh-ruby-client/blob/master/LICENSE.txt"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a>
63
+ <img src="https://github.com/mrtc0/wazuh-ruby-client/workflows/GitHub%20Workflow/badge.svg" alt="">
64
+ <a href="https://mrtc0.github.io/wazuh-ruby-client"><img src="http://img.shields.io/badge/yard-docs-blue.svg" alt="Yard Docs"></a></p>
65
+
62
66
  <p>A Ruby client for the wazuh APIs.</p>
63
67
 
64
68
  <h2>Installation</h2>
@@ -106,7 +110,126 @@ If you using self-signed certificate, <code>verify_ssl</code> must be set to <co
106
110
  <span class='kw'>end</span>
107
111
  </code></pre>
108
112
 
109
- <h2>Support API</h2>
113
+ <h3>Global Settings</h3>
114
+
115
+ <p>The following global settings are supported via <code>Wazuh.configure</code> .</p>
116
+
117
+ <table><thead>
118
+ <tr>
119
+ <th style="text-align: left">setting</th>
120
+ <th style="text-align: left">description</th>
121
+ </tr>
122
+ </thead><tbody>
123
+ <tr>
124
+ <td style="text-align: left">user_agent</td>
125
+ <td style="text-align: left">User-Agent</td>
126
+ </tr>
127
+ <tr>
128
+ <td style="text-align: left">client_cert</td>
129
+ <td style="text-align: left">Client certificate (if use Client Certificate Authentication)</td>
130
+ </tr>
131
+ <tr>
132
+ <td style="text-align: left">client_key</td>
133
+ <td style="text-align: left">Client Key (if use Client Certificate Authentication)</td>
134
+ </tr>
135
+ <tr>
136
+ <td style="text-align: left">basic_user</td>
137
+ <td style="text-align: left">Basic Authentication user name</td>
138
+ </tr>
139
+ <tr>
140
+ <td style="text-align: left">basic_password</td>
141
+ <td style="text-align: left">Basic Authentication password</td>
142
+ </tr>
143
+ <tr>
144
+ <td style="text-align: left">verify_ssl</td>
145
+ <td style="text-align: left">Skip the SSL/TLS verify</td>
146
+ </tr>
147
+ <tr>
148
+ <td style="text-align: left">logger</td>
149
+ <td style="text-align: left">loggeer object</td>
150
+ </tr>
151
+ <tr>
152
+ <td style="text-align: left">endpoint</td>
153
+ <td style="text-align: left">Wazuh API endpoint URL</td>
154
+ </tr>
155
+ </tbody></table>
156
+
157
+ <h3>Agents</h3>
158
+
159
+ <p>Get all agents list.</p>
160
+
161
+ <pre class="code ruby"><code class="ruby">&gt; client.all_agents
162
+ =&gt; [
163
+ {
164
+ :os=&gt;{
165
+ :arch=&gt;&quot;x86_64&quot;,
166
+ :codename=&gt;&quot;Xenial Xerus&quot;,
167
+ :major=&gt;&quot;16&quot;,
168
+ :minor=&gt;&quot;04&quot;,
169
+ :name=&gt;&quot;Ubuntu&quot;,
170
+ :platform=&gt;&quot;ubuntu&quot;,
171
+ :uname=&gt;&quot;Linux |wazuh-manager |4.15.0-60-generic |#67-Ubuntu SMP Thu Aug 22 16:55:30 UTC 2019 |x86_64&quot;,
172
+ :version=&gt;&quot;16.04.6 LTS&quot;
173
+ },
174
+ :manager=&gt;&quot;wazuh-manager&quot;,
175
+ :id=&gt;&quot;000&quot;,
176
+ :registerIP=&gt;&quot;127.0.0.1&quot;,
177
+ :name=&gt;&quot;wazuh-manager&quot;,
178
+ :version=&gt;&quot;Wazuh v3.11.0&quot;,
179
+ :ip=&gt;&quot;127.0.0.1&quot;,
180
+ :dateAdd=&gt;&quot;2020-01-27 17:02:18&quot;,
181
+ :status=&gt;&quot;Active&quot;,
182
+ :lastKeepAlive=&gt;&quot;9999-12-31 23:59:59&quot;,
183
+ :node_name=&gt;&quot;wazuh-master-1&quot;
184
+ },
185
+ ...
186
+ ]
187
+
188
+ &gt; agents.first.os.name
189
+ =&gt; &quot;Ubuntu&quot;
190
+
191
+ &gt; agents.first.id
192
+ =&gt; &quot;000&quot;
193
+ </code></pre>
194
+
195
+ <p>filter by options. (see <a href="https://mrtc0.github.io/wazuh-ruby-client/Wazuh/Api/Endpoints/Agents.html#all_agents-instance_method">https://mrtc0.github.io/wazuh-ruby-client/Wazuh/Api/Endpoints/Agents.html#all_agents-instance_method</a> )</p>
196
+
197
+ <pre class="code ruby"><code class="ruby"># Filter by status is active
198
+ &gt; client.all_agents({ status: &#39;active&#39; })
199
+ # Filter by agent os.name is ubuntu
200
+ &gt; client.all_agents({ &#39;os.name&#39; =&gt; &#39;ubuntu&#39; })
201
+ </code></pre>
202
+
203
+ <h3>Syscollector</h3>
204
+
205
+ <p>List agent&#39;s packages.</p>
206
+
207
+ <pre class="code ruby"><code class="ruby">&gt; client.packages(&#39;000&#39;).map { |package| package.name }
208
+ =&gt; [&quot;python-apt-common&quot;,
209
+ &quot;python-idna&quot;,
210
+ &quot;libedit2&quot;,
211
+ &quot;libncurses5&quot;,
212
+ &quot;libpam-runtime&quot;,
213
+ &quot;python3.5&quot;,
214
+ &quot;libgsasl7&quot;,
215
+ &quot;vim-tiny&quot;,
216
+ ...
217
+ </code></pre>
218
+
219
+ <p>List agents&#39; processes.</p>
220
+
221
+ <pre class="code ruby"><code class="ruby">&gt; client.packages(&#39;000&#39;).map { |package| package.name }
222
+ =&gt; [&quot;entrypoint.sh&quot;,
223
+ &quot;my_init&quot;,
224
+ &quot;syslog-ng&quot;,
225
+ &quot;runsvdir&quot;,
226
+ &quot;runsv&quot;,
227
+ ...
228
+ </code></pre>
229
+
230
+ <h3>Other</h3>
231
+
232
+ <p>wazuh-ruby-client is support to all Wazuh API. </p>
110
233
 
111
234
  <ul>
112
235
  <li>[x] Active Response</li>
@@ -126,13 +249,26 @@ If you using self-signed certificate, <code>verify_ssl</code> must be set to <co
126
249
  <li>[x] Syscollector</li>
127
250
  </ul>
128
251
 
252
+ <p>Refer to the document of wazuh-ruby-client and Wazuh API Reference for the list of all available methods.</p>
253
+
254
+ <ul>
255
+ <li><a href="https://mrtc0.github.io/wazuh-ruby-client/Wazuh/Api/Endpoints.html">https://mrtc0.github.io/wazuh-ruby-client/Wazuh/Api/Endpoints.html</a></li>
256
+ <li><a href="https://documentation.wazuh.com/3.10/user-manual/api/reference.html">https://documentation.wazuh.com/3.10/user-manual/api/reference.html</a></li>
257
+ </ul>
258
+
129
259
  <h2>Contributing</h2>
130
260
 
131
261
  <p>Bug reports and pull requests are welcome on GitHub at <a href="https://github.com/mrtc0/wazuh-ruby-client">https://github.com/mrtc0/wazuh-ruby-client</a>.</p>
262
+
263
+ <h2>Copyright and License</h2>
264
+
265
+ <p>Copyright (c) 2015-2019, <a href="https://blog.ssrf.in">Kohei Morita</a></p>
266
+
267
+ <p>This project is licensed under the <a href="https://github.com/mrtc0/wazuh-ruby-client/blob/master/LICENSE">MIT License</a> .</p>
132
268
  </div></div>
133
269
 
134
270
  <div id="footer">
135
- Generated on Sat Jan 25 00:19:39 2020 by
271
+ Generated on Tue Feb 18 20:12:27 2020 by
136
272
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
137
273
  0.9.16 (ruby-2.5.1).
138
274
  </div>
@@ -60,6 +60,22 @@
60
60
  </li>
61
61
 
62
62
 
63
+ <li class="odd ">
64
+ <div class="item">
65
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#add_agent_to_group-instance_method" title="Wazuh::Api::Endpoints::Agents#add_agent_to_group (method)">#add_agent_to_group</a></span>
66
+ <small>Wazuh::Api::Endpoints::Agents</small>
67
+ </div>
68
+ </li>
69
+
70
+
71
+ <li class="even ">
72
+ <div class="item">
73
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#add_agents_to_group-instance_method" title="Wazuh::Api::Endpoints::Agents#add_agents_to_group (method)">#add_agents_to_group</a></span>
74
+ <small>Wazuh::Api::Endpoints::Agents</small>
75
+ </div>
76
+ </li>
77
+
78
+
63
79
  <li class="odd ">
64
80
  <div class="item">
65
81
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#agent-instance_method" title="Wazuh::Api::Endpoints::Agents#agent (method)">#agent</a></span>
@@ -77,6 +93,14 @@
77
93
 
78
94
 
79
95
  <li class="odd ">
96
+ <div class="item">
97
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#agent_config-instance_method" title="Wazuh::Api::Endpoints::Agents#agent_config (method)">#agent_config</a></span>
98
+ <small>Wazuh::Api::Endpoints::Agents</small>
99
+ </div>
100
+ </li>
101
+
102
+
103
+ <li class="even ">
80
104
  <div class="item">
81
105
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#agent_key-instance_method" title="Wazuh::Api::Endpoints::Agents#agent_key (method)">#agent_key</a></span>
82
106
  <small>Wazuh::Api::Endpoints::Agents</small>
@@ -84,6 +108,46 @@
84
108
  </li>
85
109
 
86
110
 
111
+ <li class="odd ">
112
+ <div class="item">
113
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#agent_os_summary-instance_method" title="Wazuh::Api::Endpoints::Agents#agent_os_summary (method)">#agent_os_summary</a></span>
114
+ <small>Wazuh::Api::Endpoints::Agents</small>
115
+ </div>
116
+ </li>
117
+
118
+
119
+ <li class="even ">
120
+ <div class="item">
121
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#agent_summary-instance_method" title="Wazuh::Api::Endpoints::Agents#agent_summary (method)">#agent_summary</a></span>
122
+ <small>Wazuh::Api::Endpoints::Agents</small>
123
+ </div>
124
+ </li>
125
+
126
+
127
+ <li class="odd ">
128
+ <div class="item">
129
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#agent_sync_status-instance_method" title="Wazuh::Api::Endpoints::Agents#agent_sync_status (method)">#agent_sync_status</a></span>
130
+ <small>Wazuh::Api::Endpoints::Agents</small>
131
+ </div>
132
+ </li>
133
+
134
+
135
+ <li class="even ">
136
+ <div class="item">
137
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#agents_by_group-instance_method" title="Wazuh::Api::Endpoints::Agents#agents_by_group (method)">#agents_by_group</a></span>
138
+ <small>Wazuh::Api::Endpoints::Agents</small>
139
+ </div>
140
+ </li>
141
+
142
+
143
+ <li class="odd ">
144
+ <div class="item">
145
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#agents_by_no_group-instance_method" title="Wazuh::Api::Endpoints::Agents#agents_by_no_group (method)">#agents_by_no_group</a></span>
146
+ <small>Wazuh::Api::Endpoints::Agents</small>
147
+ </div>
148
+ </li>
149
+
150
+
87
151
  <li class="even ">
88
152
  <div class="item">
89
153
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#all_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#all_agents (method)">#all_agents</a></span>
@@ -150,7 +214,7 @@
150
214
 
151
215
  <li class="even ">
152
216
  <div class="item">
153
- <span class='object_link'><a href="Wazuh/Api/Endpoints/Lists.html#cdb_files-instance_method" title="Wazuh::Api::Endpoints::Lists#cdb_files (method)">#cdb_files</a></span>
217
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Lists.html#cdb_files_path-instance_method" title="Wazuh::Api::Endpoints::Lists#cdb_files_path (method)">#cdb_files_path</a></span>
154
218
  <small>Wazuh::Api::Endpoints::Lists</small>
155
219
  </div>
156
220
  </li>
@@ -294,16 +358,16 @@
294
358
 
295
359
  <li class="even ">
296
360
  <div class="item">
297
- <span class='object_link'><a href="Wazuh/Client.html#config-class_method" title="Wazuh::Client.config (method)">config</a></span>
298
- <small>Wazuh::Client</small>
361
+ <span class='object_link'><a href="Wazuh.html#config-class_method" title="Wazuh.config (method)">config</a></span>
362
+ <small>Wazuh</small>
299
363
  </div>
300
364
  </li>
301
365
 
302
366
 
303
367
  <li class="odd ">
304
368
  <div class="item">
305
- <span class='object_link'><a href="Wazuh.html#config-class_method" title="Wazuh.config (method)">config</a></span>
306
- <small>Wazuh</small>
369
+ <span class='object_link'><a href="Wazuh/Client.html#config-class_method" title="Wazuh::Client.config (method)">config</a></span>
370
+ <small>Wazuh::Client</small>
307
371
  </div>
308
372
  </li>
309
373
 
@@ -318,21 +382,29 @@
318
382
 
319
383
  <li class="odd ">
320
384
  <div class="item">
321
- <span class='object_link'><a href="Wazuh.html#configure-class_method" title="Wazuh.configure (method)">configure</a></span>
322
- <small>Wazuh</small>
385
+ <span class='object_link'><a href="Wazuh/Client.html#configure-class_method" title="Wazuh::Client.configure (method)">configure</a></span>
386
+ <small>Wazuh::Client</small>
323
387
  </div>
324
388
  </li>
325
389
 
326
390
 
327
391
  <li class="even ">
328
392
  <div class="item">
329
- <span class='object_link'><a href="Wazuh/Client.html#configure-class_method" title="Wazuh::Client.configure (method)">configure</a></span>
330
- <small>Wazuh::Client</small>
393
+ <span class='object_link'><a href="Wazuh.html#configure-class_method" title="Wazuh.configure (method)">configure</a></span>
394
+ <small>Wazuh</small>
331
395
  </div>
332
396
  </li>
333
397
 
334
398
 
335
399
  <li class="odd ">
400
+ <div class="item">
401
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#create_group-instance_method" title="Wazuh::Api::Endpoints::Agents#create_group (method)">#create_group</a></span>
402
+ <small>Wazuh::Api::Endpoints::Agents</small>
403
+ </div>
404
+ </li>
405
+
406
+
407
+ <li class="even ">
336
408
  <div class="item">
337
409
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Decoders.html#decoders_by_name-instance_method" title="Wazuh::Api::Endpoints::Decoders#decoders_by_name (method)">#decoders_by_name</a></span>
338
410
  <small>Wazuh::Api::Endpoints::Decoders</small>
@@ -340,7 +412,7 @@
340
412
  </li>
341
413
 
342
414
 
343
- <li class="even ">
415
+ <li class="odd ">
344
416
  <div class="item">
345
417
  <span class='object_link'><a href="Wazuh/Logger.html#default-class_method" title="Wazuh::Logger.default (method)">default</a></span>
346
418
  <small>Wazuh::Logger</small>
@@ -348,10 +420,34 @@
348
420
  </li>
349
421
 
350
422
 
423
+ <li class="even ">
424
+ <div class="item">
425
+ <span class='object_link'><a href="Wazuh/Sawyer/Request.html#delete-instance_method" title="Wazuh::Sawyer::Request#delete (method)">#delete</a></span>
426
+ <small>Wazuh::Sawyer::Request</small>
427
+ </div>
428
+ </li>
429
+
430
+
351
431
  <li class="odd ">
352
432
  <div class="item">
353
- <span class='object_link'><a href="Wazuh/Faraday/Request.html#delete-instance_method" title="Wazuh::Faraday::Request#delete (method)">#delete</a></span>
354
- <small>Wazuh::Faraday::Request</small>
433
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#delete_agent-instance_method" title="Wazuh::Api::Endpoints::Agents#delete_agent (method)">#delete_agent</a></span>
434
+ <small>Wazuh::Api::Endpoints::Agents</small>
435
+ </div>
436
+ </li>
437
+
438
+
439
+ <li class="even ">
440
+ <div class="item">
441
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#delete_agent_by_group-instance_method" title="Wazuh::Api::Endpoints::Agents#delete_agent_by_group (method)">#delete_agent_by_group</a></span>
442
+ <small>Wazuh::Api::Endpoints::Agents</small>
443
+ </div>
444
+ </li>
445
+
446
+
447
+ <li class="odd ">
448
+ <div class="item">
449
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#delete_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#delete_agents (method)">#delete_agents</a></span>
450
+ <small>Wazuh::Api::Endpoints::Agents</small>
355
451
  </div>
356
452
  </li>
357
453
 
@@ -470,13 +566,21 @@
470
566
 
471
567
  <li class="even ">
472
568
  <div class="item">
473
- <span class='object_link'><a href="Wazuh/Faraday/Request.html#get-instance_method" title="Wazuh::Faraday::Request#get (method)">#get</a></span>
474
- <small>Wazuh::Faraday::Request</small>
569
+ <span class='object_link'><a href="Wazuh/Sawyer/Request.html#get-instance_method" title="Wazuh::Sawyer::Request#get (method)">#get</a></span>
570
+ <small>Wazuh::Sawyer::Request</small>
475
571
  </div>
476
572
  </li>
477
573
 
478
574
 
479
575
  <li class="odd ">
576
+ <div class="item">
577
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#get_file_in_group-instance_method" title="Wazuh::Api::Endpoints::Agents#get_file_in_group (method)">#get_file_in_group</a></span>
578
+ <small>Wazuh::Api::Endpoints::Agents</small>
579
+ </div>
580
+ </li>
581
+
582
+
583
+ <li class="even ">
480
584
  <div class="item">
481
585
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#get_manager_local_file-instance_method" title="Wazuh::Api::Endpoints::Manager#get_manager_local_file (method)">#get_manager_local_file</a></span>
482
586
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -484,7 +588,7 @@
484
588
  </li>
485
589
 
486
590
 
487
- <li class="even ">
591
+ <li class="odd ">
488
592
  <div class="item">
489
593
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#get_remote_file-instance_method" title="Wazuh::Api::Endpoints::Cluster#get_remote_file (method)">#get_remote_file</a></span>
490
594
  <small>Wazuh::Api::Endpoints::Cluster</small>
@@ -492,7 +596,7 @@
492
596
  </li>
493
597
 
494
598
 
495
- <li class="odd ">
599
+ <li class="even ">
496
600
  <div class="item">
497
601
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Rules.html#gpg13_rules-instance_method" title="Wazuh::Api::Endpoints::Rules#gpg13_rules (method)">#gpg13_rules</a></span>
498
602
  <small>Wazuh::Api::Endpoints::Rules</small>
@@ -500,39 +604,55 @@
500
604
  </li>
501
605
 
502
606
 
607
+ <li class="odd ">
608
+ <div class="item">
609
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#group_configuration-instance_method" title="Wazuh::Api::Endpoints::Agents#group_configuration (method)">#group_configuration</a></span>
610
+ <small>Wazuh::Api::Endpoints::Agents</small>
611
+ </div>
612
+ </li>
613
+
614
+
503
615
  <li class="even ">
504
616
  <div class="item">
505
- <span class='object_link'><a href="Wazuh/Api/Endpoints/Syscollector.html#hardware-instance_method" title="Wazuh::Api::Endpoints::Syscollector#hardware (method)">#hardware</a></span>
506
- <small>Wazuh::Api::Endpoints::Syscollector</small>
617
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#group_files-instance_method" title="Wazuh::Api::Endpoints::Agents#group_files (method)">#group_files</a></span>
618
+ <small>Wazuh::Api::Endpoints::Agents</small>
507
619
  </div>
508
620
  </li>
509
621
 
510
622
 
511
623
  <li class="odd ">
512
624
  <div class="item">
513
- <span class='object_link'><a href="Wazuh/Api/Endpoints/Rules.html#hipaa_rules-instance_method" title="Wazuh::Api::Endpoints::Rules#hipaa_rules (method)">#hipaa_rules</a></span>
514
- <small>Wazuh::Api::Endpoints::Rules</small>
625
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#groups-instance_method" title="Wazuh::Api::Endpoints::Agents#groups (method)">#groups</a></span>
626
+ <small>Wazuh::Api::Endpoints::Agents</small>
515
627
  </div>
516
628
  </li>
517
629
 
518
630
 
519
631
  <li class="even ">
520
632
  <div class="item">
521
- <span class='object_link'><a href="Wazuh/Api/Errors/WazuhError.html#initialize-instance_method" title="Wazuh::Api::Errors::WazuhError#initialize (method)">#initialize</a></span>
522
- <small>Wazuh::Api::Errors::WazuhError</small>
633
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Syscollector.html#hardware-instance_method" title="Wazuh::Api::Endpoints::Syscollector#hardware (method)">#hardware</a></span>
634
+ <small>Wazuh::Api::Endpoints::Syscollector</small>
523
635
  </div>
524
636
  </li>
525
637
 
526
638
 
527
639
  <li class="odd ">
528
640
  <div class="item">
529
- <span class='object_link'><a href="Wazuh/Api/Errors/TooManyRequestsError.html#initialize-instance_method" title="Wazuh::Api::Errors::TooManyRequestsError#initialize (method)">#initialize</a></span>
530
- <small>Wazuh::Api::Errors::TooManyRequestsError</small>
641
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Rules.html#hipaa_rules-instance_method" title="Wazuh::Api::Endpoints::Rules#hipaa_rules (method)">#hipaa_rules</a></span>
642
+ <small>Wazuh::Api::Endpoints::Rules</small>
531
643
  </div>
532
644
  </li>
533
645
 
534
646
 
535
647
  <li class="even ">
648
+ <div class="item">
649
+ <span class='object_link'><a href="Wazuh/Api/Errors/WazuhError.html#initialize-instance_method" title="Wazuh::Api::Errors::WazuhError#initialize (method)">#initialize</a></span>
650
+ <small>Wazuh::Api::Errors::WazuhError</small>
651
+ </div>
652
+ </li>
653
+
654
+
655
+ <li class="odd ">
536
656
  <div class="item">
537
657
  <span class='object_link'><a href="Wazuh/Client.html#initialize-instance_method" title="Wazuh::Client#initialize (method)">#initialize</a></span>
538
658
  <small>Wazuh::Client</small>
@@ -540,7 +660,7 @@
540
660
  </li>
541
661
 
542
662
 
543
- <li class="odd ">
663
+ <li class="even ">
544
664
  <div class="item">
545
665
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#insert_agent-instance_method" title="Wazuh::Api::Endpoints::Agents#insert_agent (method)">#insert_agent</a></span>
546
666
  <small>Wazuh::Api::Endpoints::Agents</small>
@@ -548,7 +668,7 @@
548
668
  </li>
549
669
 
550
670
 
551
- <li class="even ">
671
+ <li class="odd ">
552
672
  <div class="item">
553
673
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Syscheck.html#last_syscheck_scan-instance_method" title="Wazuh::Api::Endpoints::Syscheck#last_syscheck_scan (method)">#last_syscheck_scan</a></span>
554
674
  <small>Wazuh::Api::Endpoints::Syscheck</small>
@@ -556,7 +676,7 @@
556
676
  </li>
557
677
 
558
678
 
559
- <li class="odd ">
679
+ <li class="even ">
560
680
  <div class="item">
561
681
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#local_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#local_node (method)">#local_node</a></span>
562
682
  <small>Wazuh::Api::Endpoints::Cluster</small>
@@ -564,7 +684,7 @@
564
684
  </li>
565
685
 
566
686
 
567
- <li class="even ">
687
+ <li class="odd ">
568
688
  <div class="item">
569
689
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_active_configuration-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_active_configuration (method)">#manager_active_configuration</a></span>
570
690
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -572,7 +692,7 @@
572
692
  </li>
573
693
 
574
694
 
575
- <li class="odd ">
695
+ <li class="even ">
576
696
  <div class="item">
577
697
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_analysisd_stats-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_analysisd_stats (method)">#manager_analysisd_stats</a></span>
578
698
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -580,7 +700,7 @@
580
700
  </li>
581
701
 
582
702
 
583
- <li class="even ">
703
+ <li class="odd ">
584
704
  <div class="item">
585
705
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_configuration-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_configuration (method)">#manager_configuration</a></span>
586
706
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -588,7 +708,7 @@
588
708
  </li>
589
709
 
590
710
 
591
- <li class="odd ">
711
+ <li class="even ">
592
712
  <div class="item">
593
713
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_information-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_information (method)">#manager_information</a></span>
594
714
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -596,7 +716,7 @@
596
716
  </li>
597
717
 
598
718
 
599
- <li class="even ">
719
+ <li class="odd ">
600
720
  <div class="item">
601
721
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_log-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_log (method)">#manager_log</a></span>
602
722
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -604,7 +724,7 @@
604
724
  </li>
605
725
 
606
726
 
607
- <li class="odd ">
727
+ <li class="even ">
608
728
  <div class="item">
609
729
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_remoted_stats-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_remoted_stats (method)">#manager_remoted_stats</a></span>
610
730
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -612,7 +732,7 @@
612
732
  </li>
613
733
 
614
734
 
615
- <li class="even ">
735
+ <li class="odd ">
616
736
  <div class="item">
617
737
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_stats-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_stats (method)">#manager_stats</a></span>
618
738
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -620,7 +740,7 @@
620
740
  </li>
621
741
 
622
742
 
623
- <li class="odd ">
743
+ <li class="even ">
624
744
  <div class="item">
625
745
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_stats_by_hour-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_stats_by_hour (method)">#manager_stats_by_hour</a></span>
626
746
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -628,7 +748,7 @@
628
748
  </li>
629
749
 
630
750
 
631
- <li class="even ">
751
+ <li class="odd ">
632
752
  <div class="item">
633
753
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_stats_by_weekly-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_stats_by_weekly (method)">#manager_stats_by_weekly</a></span>
634
754
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -636,7 +756,7 @@
636
756
  </li>
637
757
 
638
758
 
639
- <li class="odd ">
759
+ <li class="even ">
640
760
  <div class="item">
641
761
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_status-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_status (method)">#manager_status</a></span>
642
762
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -644,7 +764,7 @@
644
764
  </li>
645
765
 
646
766
 
647
- <li class="even ">
767
+ <li class="odd ">
648
768
  <div class="item">
649
769
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#manager_summary_log-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_summary_log (method)">#manager_summary_log</a></span>
650
770
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -652,15 +772,15 @@
652
772
  </li>
653
773
 
654
774
 
655
- <li class="odd ">
775
+ <li class="even ">
656
776
  <div class="item">
657
- <span class='object_link'><a href="Wazuh/Api/Errors/TooManyRequestsError.html#message-instance_method" title="Wazuh::Api::Errors::TooManyRequestsError#message (method)">#message</a></span>
658
- <small>Wazuh::Api::Errors::TooManyRequestsError</small>
777
+ <span class='object_link'><a href="Wazuh/Api/Errors/WazuhError.html#message-instance_method" title="Wazuh::Api::Errors::WazuhError#message (method)">#message</a></span>
778
+ <small>Wazuh::Api::Errors::WazuhError</small>
659
779
  </div>
660
780
  </li>
661
781
 
662
782
 
663
- <li class="even ">
783
+ <li class="odd ">
664
784
  <div class="item">
665
785
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Syscollector.html#netaddr-instance_method" title="Wazuh::Api::Endpoints::Syscollector#netaddr (method)">#netaddr</a></span>
666
786
  <small>Wazuh::Api::Endpoints::Syscollector</small>
@@ -668,7 +788,7 @@
668
788
  </li>
669
789
 
670
790
 
671
- <li class="odd ">
791
+ <li class="even ">
672
792
  <div class="item">
673
793
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Syscollector.html#netiface-instance_method" title="Wazuh::Api::Endpoints::Syscollector#netiface (method)">#netiface</a></span>
674
794
  <small>Wazuh::Api::Endpoints::Syscollector</small>
@@ -676,7 +796,7 @@
676
796
  </li>
677
797
 
678
798
 
679
- <li class="even ">
799
+ <li class="odd ">
680
800
  <div class="item">
681
801
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Syscollector.html#netproto-instance_method" title="Wazuh::Api::Endpoints::Syscollector#netproto (method)">#netproto</a></span>
682
802
  <small>Wazuh::Api::Endpoints::Syscollector</small>
@@ -684,7 +804,7 @@
684
804
  </li>
685
805
 
686
806
 
687
- <li class="odd ">
807
+ <li class="even ">
688
808
  <div class="item">
689
809
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Rules.html#nist_800_53_rules-instance_method" title="Wazuh::Api::Endpoints::Rules#nist_800_53_rules (method)">#nist_800_53_rules</a></span>
690
810
  <small>Wazuh::Api::Endpoints::Rules</small>
@@ -692,7 +812,7 @@
692
812
  </li>
693
813
 
694
814
 
695
- <li class="even ">
815
+ <li class="odd ">
696
816
  <div class="item">
697
817
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#node-instance_method" title="Wazuh::Api::Endpoints::Cluster#node (method)">#node</a></span>
698
818
  <small>Wazuh::Api::Endpoints::Cluster</small>
@@ -700,7 +820,7 @@
700
820
  </li>
701
821
 
702
822
 
703
- <li class="odd ">
823
+ <li class="even ">
704
824
  <div class="item">
705
825
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#node_info-instance_method" title="Wazuh::Api::Endpoints::Cluster#node_info (method)">#node_info</a></span>
706
826
  <small>Wazuh::Api::Endpoints::Cluster</small>
@@ -708,7 +828,7 @@
708
828
  </li>
709
829
 
710
830
 
711
- <li class="even ">
831
+ <li class="odd ">
712
832
  <div class="item">
713
833
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#node_status-instance_method" title="Wazuh::Api::Endpoints::Cluster#node_status (method)">#node_status</a></span>
714
834
  <small>Wazuh::Api::Endpoints::Cluster</small>
@@ -716,7 +836,7 @@
716
836
  </li>
717
837
 
718
838
 
719
- <li class="odd ">
839
+ <li class="even ">
720
840
  <div class="item">
721
841
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#nodes-instance_method" title="Wazuh::Api::Endpoints::Cluster#nodes (method)">#nodes</a></span>
722
842
  <small>Wazuh::Api::Endpoints::Cluster</small>
@@ -724,7 +844,7 @@
724
844
  </li>
725
845
 
726
846
 
727
- <li class="even ">
847
+ <li class="odd ">
728
848
  <div class="item">
729
849
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#nodes_stats-instance_method" title="Wazuh::Api::Endpoints::Cluster#nodes_stats (method)">#nodes_stats</a></span>
730
850
  <small>Wazuh::Api::Endpoints::Cluster</small>
@@ -732,7 +852,7 @@
732
852
  </li>
733
853
 
734
854
 
735
- <li class="odd ">
855
+ <li class="even ">
736
856
  <div class="item">
737
857
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#nodes_stats_by_hourly-instance_method" title="Wazuh::Api::Endpoints::Cluster#nodes_stats_by_hourly (method)">#nodes_stats_by_hourly</a></span>
738
858
  <small>Wazuh::Api::Endpoints::Cluster</small>
@@ -740,7 +860,7 @@
740
860
  </li>
741
861
 
742
862
 
743
- <li class="even ">
863
+ <li class="odd ">
744
864
  <div class="item">
745
865
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#nodes_stats_by_weekly-instance_method" title="Wazuh::Api::Endpoints::Cluster#nodes_stats_by_weekly (method)">#nodes_stats_by_weekly</a></span>
746
866
  <small>Wazuh::Api::Endpoints::Cluster</small>
@@ -748,14 +868,6 @@
748
868
  </li>
749
869
 
750
870
 
751
- <li class="odd ">
752
- <div class="item">
753
- <span class='object_link'><a href="Wazuh/Faraday/Response/RaiseError.html#on_complete-instance_method" title="Wazuh::Faraday::Response::RaiseError#on_complete (method)">#on_complete</a></span>
754
- <small>Wazuh::Faraday::Response::RaiseError</small>
755
- </div>
756
- </li>
757
-
758
-
759
871
  <li class="even ">
760
872
  <div class="item">
761
873
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Syscollector.html#os-instance_method" title="Wazuh::Api::Endpoints::Syscollector#os (method)">#os</a></span>
@@ -798,8 +910,8 @@
798
910
 
799
911
  <li class="odd ">
800
912
  <div class="item">
801
- <span class='object_link'><a href="Wazuh/Faraday/Request.html#post-instance_method" title="Wazuh::Faraday::Request#post (method)">#post</a></span>
802
- <small>Wazuh::Faraday::Request</small>
913
+ <span class='object_link'><a href="Wazuh/Sawyer/Request.html#post-instance_method" title="Wazuh::Sawyer::Request#post (method)">#post</a></span>
914
+ <small>Wazuh::Sawyer::Request</small>
803
915
  </div>
804
916
  </li>
805
917
 
@@ -814,8 +926,8 @@
814
926
 
815
927
  <li class="odd ">
816
928
  <div class="item">
817
- <span class='object_link'><a href="Wazuh/Faraday/Request.html#put-instance_method" title="Wazuh::Faraday::Request#put (method)">#put</a></span>
818
- <small>Wazuh::Faraday::Request</small>
929
+ <span class='object_link'><a href="Wazuh/Sawyer/Request.html#put-instance_method" title="Wazuh::Sawyer::Request#put (method)">#put</a></span>
930
+ <small>Wazuh::Sawyer::Request</small>
819
931
  </div>
820
932
  </li>
821
933
 
@@ -830,31 +942,31 @@
830
942
 
831
943
  <li class="odd ">
832
944
  <div class="item">
833
- <span class='object_link'><a href="Wazuh/Config.html#reset-instance_method" title="Wazuh::Config#reset (method)">#reset</a></span>
834
- <small>Wazuh::Config</small>
945
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#remove_agent_of_group-instance_method" title="Wazuh::Api::Endpoints::Agents#remove_agent_of_group (method)">#remove_agent_of_group</a></span>
946
+ <small>Wazuh::Api::Endpoints::Agents</small>
835
947
  </div>
836
948
  </li>
837
949
 
838
950
 
839
951
  <li class="even ">
840
952
  <div class="item">
841
- <span class='object_link'><a href="Wazuh/Api/Errors/WazuhError.html#response-instance_method" title="Wazuh::Api::Errors::WazuhError#response (method)">#response</a></span>
842
- <small>Wazuh::Api::Errors::WazuhError</small>
953
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#remove_agents_of_group-instance_method" title="Wazuh::Api::Endpoints::Agents#remove_agents_of_group (method)">#remove_agents_of_group</a></span>
954
+ <small>Wazuh::Api::Endpoints::Agents</small>
843
955
  </div>
844
956
  </li>
845
957
 
846
958
 
847
959
  <li class="odd ">
848
960
  <div class="item">
849
- <span class='object_link'><a href="Wazuh/Api/Errors/TooManyRequestsError.html#response-instance_method" title="Wazuh::Api::Errors::TooManyRequestsError#response (method)">#response</a></span>
850
- <small>Wazuh::Api::Errors::TooManyRequestsError</small>
961
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#remove_all_agent_of_group-instance_method" title="Wazuh::Api::Endpoints::Agents#remove_all_agent_of_group (method)">#remove_all_agent_of_group</a></span>
962
+ <small>Wazuh::Api::Endpoints::Agents</small>
851
963
  </div>
852
964
  </li>
853
965
 
854
966
 
855
967
  <li class="even ">
856
968
  <div class="item">
857
- <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#restart_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#restart_agents (method)">#restart_agents</a></span>
969
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#remove_group-instance_method" title="Wazuh::Api::Endpoints::Agents#remove_group (method)">#remove_group</a></span>
858
970
  <small>Wazuh::Api::Endpoints::Agents</small>
859
971
  </div>
860
972
  </li>
@@ -862,23 +974,23 @@
862
974
 
863
975
  <li class="odd ">
864
976
  <div class="item">
865
- <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#restart_all_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#restart_all_agents (method)">#restart_all_agents</a></span>
866
- <small>Wazuh::Api::Endpoints::Agents</small>
977
+ <span class='object_link'><a href="Wazuh/Config.html#reset-instance_method" title="Wazuh::Config#reset (method)">#reset</a></span>
978
+ <small>Wazuh::Config</small>
867
979
  </div>
868
980
  </li>
869
981
 
870
982
 
871
983
  <li class="even ">
872
984
  <div class="item">
873
- <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#restart_all_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#restart_all_node (method)">#restart_all_node</a></span>
874
- <small>Wazuh::Api::Endpoints::Cluster</small>
985
+ <span class='object_link'><a href="Wazuh/Api/Errors/WazuhError.html#response-instance_method" title="Wazuh::Api::Errors::WazuhError#response (method)">#response</a></span>
986
+ <small>Wazuh::Api::Errors::WazuhError</small>
875
987
  </div>
876
988
  </li>
877
989
 
878
990
 
879
991
  <li class="odd ">
880
992
  <div class="item">
881
- <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#restart_an_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#restart_an_agents (method)">#restart_an_agents</a></span>
993
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#restart_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#restart_agents (method)">#restart_agents</a></span>
882
994
  <small>Wazuh::Api::Endpoints::Agents</small>
883
995
  </div>
884
996
  </li>
@@ -886,15 +998,15 @@
886
998
 
887
999
  <li class="even ">
888
1000
  <div class="item">
889
- <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#restart_manager-instance_method" title="Wazuh::Api::Endpoints::Manager#restart_manager (method)">#restart_manager</a></span>
890
- <small>Wazuh::Api::Endpoints::Manager</small>
1001
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#restart_all_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#restart_all_agents (method)">#restart_all_agents</a></span>
1002
+ <small>Wazuh::Api::Endpoints::Agents</small>
891
1003
  </div>
892
1004
  </li>
893
1005
 
894
1006
 
895
1007
  <li class="odd ">
896
1008
  <div class="item">
897
- <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#restart_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#restart_node (method)">#restart_node</a></span>
1009
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#restart_all_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#restart_all_node (method)">#restart_all_node</a></span>
898
1010
  <small>Wazuh::Api::Endpoints::Cluster</small>
899
1011
  </div>
900
1012
  </li>
@@ -902,8 +1014,24 @@
902
1014
 
903
1015
  <li class="even ">
904
1016
  <div class="item">
905
- <span class='object_link'><a href="Wazuh/Api/Errors/TooManyRequestsError.html#retry_after-instance_method" title="Wazuh::Api::Errors::TooManyRequestsError#retry_after (method)">#retry_after</a></span>
906
- <small>Wazuh::Api::Errors::TooManyRequestsError</small>
1017
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#restart_an_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#restart_an_agents (method)">#restart_an_agents</a></span>
1018
+ <small>Wazuh::Api::Endpoints::Agents</small>
1019
+ </div>
1020
+ </li>
1021
+
1022
+
1023
+ <li class="odd ">
1024
+ <div class="item">
1025
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#restart_manager-instance_method" title="Wazuh::Api::Endpoints::Manager#restart_manager (method)">#restart_manager</a></span>
1026
+ <small>Wazuh::Api::Endpoints::Manager</small>
1027
+ </div>
1028
+ </li>
1029
+
1030
+
1031
+ <li class="even ">
1032
+ <div class="item">
1033
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#restart_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#restart_node (method)">#restart_node</a></span>
1034
+ <small>Wazuh::Api::Endpoints::Cluster</small>
907
1035
  </div>
908
1036
  </li>
909
1037
 
@@ -1029,6 +1157,14 @@
1029
1157
 
1030
1158
 
1031
1159
  <li class="even ">
1160
+ <div class="item">
1161
+ <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#update_group_ossec_configuration-instance_method" title="Wazuh::Api::Endpoints::Agents#update_group_ossec_configuration (method)">#update_group_ossec_configuration</a></span>
1162
+ <small>Wazuh::Api::Endpoints::Agents</small>
1163
+ </div>
1164
+ </li>
1165
+
1166
+
1167
+ <li class="odd ">
1032
1168
  <div class="item">
1033
1169
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Manager.html#update_manager_local_file-instance_method" title="Wazuh::Api::Endpoints::Manager#update_manager_local_file (method)">#update_manager_local_file</a></span>
1034
1170
  <small>Wazuh::Api::Endpoints::Manager</small>
@@ -1036,7 +1172,7 @@
1036
1172
  </li>
1037
1173
 
1038
1174
 
1039
- <li class="odd ">
1175
+ <li class="even ">
1040
1176
  <div class="item">
1041
1177
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Cluster.html#update_remote_file-instance_method" title="Wazuh::Api::Endpoints::Cluster#update_remote_file (method)">#update_remote_file</a></span>
1042
1178
  <small>Wazuh::Api::Endpoints::Cluster</small>
@@ -1044,7 +1180,7 @@
1044
1180
  </li>
1045
1181
 
1046
1182
 
1047
- <li class="even ">
1183
+ <li class="odd ">
1048
1184
  <div class="item">
1049
1185
  <span class='object_link'><a href="Wazuh/Api/Endpoints/Agents.html#upgrade_result_from_agent-instance_method" title="Wazuh::Api::Endpoints::Agents#upgrade_result_from_agent (method)">#upgrade_result_from_agent</a></span>
1050
1186
  <small>Wazuh::Api::Endpoints::Agents</small>