wazuh-ruby-client 0.1.0
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.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CHANGELOG.md +0 -0
- data/Gemfile +5 -0
- data/LICENSE +21 -0
- data/README.md +74 -0
- data/Rakefile +6 -0
- data/docs/.nojekyll +0 -0
- data/docs/Wazuh/Api/Endpoints/ActiveResponse.html +278 -0
- data/docs/Wazuh/Api/Endpoints/Agents.html +1877 -0
- data/docs/Wazuh/Api/Endpoints/Cache.html +415 -0
- data/docs/Wazuh/Api/Endpoints/Ciscat.html +418 -0
- data/docs/Wazuh/Api/Endpoints/Cluster.html +2270 -0
- data/docs/Wazuh/Api/Endpoints/Decoders.html +860 -0
- data/docs/Wazuh/Api/Endpoints/Experimental.html +2610 -0
- data/docs/Wazuh/Api/Endpoints/Lists.html +452 -0
- data/docs/Wazuh/Api/Endpoints/Manager.html +1596 -0
- data/docs/Wazuh/Api/Endpoints/Rootcheck.html +1025 -0
- data/docs/Wazuh/Api/Endpoints/Rules.html +872 -0
- data/docs/Wazuh/Api/Endpoints/SecurityConfigurationAssessment.html +680 -0
- data/docs/Wazuh/Api/Endpoints/Summary.html +199 -0
- data/docs/Wazuh/Api/Endpoints/Syscheck.html +755 -0
- data/docs/Wazuh/Api/Endpoints/Syscollector.html +2069 -0
- data/docs/Wazuh/Api/Endpoints.html +292 -0
- data/docs/Wazuh/Api/Errors/TooManyRequestsError.html +398 -0
- data/docs/Wazuh/Api/Errors/WazuhError.html +290 -0
- data/docs/Wazuh/Api/Errors.html +117 -0
- data/docs/Wazuh/Api.html +133 -0
- data/docs/Wazuh/Client.html +521 -0
- data/docs/Wazuh/Config.html +223 -0
- data/docs/Wazuh/Faraday/Connection.html +110 -0
- data/docs/Wazuh/Faraday/Request.html +335 -0
- data/docs/Wazuh/Faraday/Response/RaiseError.html +191 -0
- data/docs/Wazuh/Faraday/Response.html +115 -0
- data/docs/Wazuh/Faraday.html +117 -0
- data/docs/Wazuh/Logger.html +201 -0
- data/docs/Wazuh.html +256 -0
- data/docs/WazuhRubyClient.html +121 -0
- data/docs/_index.html +391 -0
- data/docs/class_list.html +51 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +496 -0
- data/docs/file.README.html +142 -0
- data/docs/file_list.html +56 -0
- data/docs/frames.html +17 -0
- data/docs/index.html +142 -0
- data/docs/js/app.js +292 -0
- data/docs/js/full_list.js +216 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +1059 -0
- data/docs/top-level-namespace.html +110 -0
- data/lib/tasks/api.rake +78 -0
- data/lib/wazuh/api/endpoints/active_response.rb +22 -0
- data/lib/wazuh/api/endpoints/agents.rb +175 -0
- data/lib/wazuh/api/endpoints/cache.rb +38 -0
- data/lib/wazuh/api/endpoints/ciscat.rb +43 -0
- data/lib/wazuh/api/endpoints/cluster.rb +199 -0
- data/lib/wazuh/api/endpoints/decoders.rb +91 -0
- data/lib/wazuh/api/endpoints/experimental.rb +309 -0
- data/lib/wazuh/api/endpoints/lists.rb +42 -0
- data/lib/wazuh/api/endpoints/manager.rb +156 -0
- data/lib/wazuh/api/endpoints/rootcheck.rb +93 -0
- data/lib/wazuh/api/endpoints/rules.rb +80 -0
- data/lib/wazuh/api/endpoints/security_configuration_assessment.rb +73 -0
- data/lib/wazuh/api/endpoints/summary.rb +15 -0
- data/lib/wazuh/api/endpoints/syscheck.rb +75 -0
- data/lib/wazuh/api/endpoints/syscollector.rb +227 -0
- data/lib/wazuh/api/endpoints.rb +37 -0
- data/lib/wazuh/api/error.rb +6 -0
- data/lib/wazuh/api/errors/too_many_requests_error.rb +22 -0
- data/lib/wazuh/api/errors/wazuh_error.rb +14 -0
- data/lib/wazuh/client.rb +27 -0
- data/lib/wazuh/config.rb +42 -0
- data/lib/wazuh/faraday/connection.rb +38 -0
- data/lib/wazuh/faraday/request.rb +38 -0
- data/lib/wazuh/faraday/response/raise_error.rb +11 -0
- data/lib/wazuh/logger.rb +13 -0
- data/lib/wazuh/version.rb +4 -0
- data/lib/wazuh-ruby-client/version.rb +3 -0
- data/lib/wazuh-ruby-client.rb +17 -0
- data/lib/wazuh_ruby_client.rb +2 -0
- data/wazuh-ruby-client.gemspec +43 -0
- metadata +200 -0
@@ -0,0 +1,292 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
+
<title>
|
7
|
+
Module: Wazuh::Api::Endpoints
|
8
|
+
|
9
|
+
— Documentation by YARD 0.9.16
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="../../css/style.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="../../css/common.css" type="text/css" charset="utf-8" />
|
16
|
+
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
18
|
+
pathId = "Wazuh::Api::Endpoints";
|
19
|
+
relpath = '../../';
|
20
|
+
</script>
|
21
|
+
|
22
|
+
|
23
|
+
<script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
|
24
|
+
|
25
|
+
<script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
|
26
|
+
|
27
|
+
|
28
|
+
</head>
|
29
|
+
<body>
|
30
|
+
<div class="nav_wrap">
|
31
|
+
<iframe id="nav" src="../../class_list.html?1"></iframe>
|
32
|
+
<div id="resizer"></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="main" tabindex="-1">
|
36
|
+
<div id="header">
|
37
|
+
<div id="menu">
|
38
|
+
|
39
|
+
<a href="../../_index.html">Index (E)</a> »
|
40
|
+
<span class='title'><span class='object_link'><a href="../../Wazuh.html" title="Wazuh (module)">Wazuh</a></span></span> » <span class='title'><span class='object_link'><a href="../Api.html" title="Wazuh::Api (module)">Api</a></span></span>
|
41
|
+
»
|
42
|
+
<span class="title">Endpoints</span>
|
43
|
+
|
44
|
+
</div>
|
45
|
+
|
46
|
+
<div id="search">
|
47
|
+
|
48
|
+
<a class="full_list_link" id="class_list_link"
|
49
|
+
href="../../class_list.html">
|
50
|
+
|
51
|
+
<svg width="24" height="24">
|
52
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
53
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
54
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
55
|
+
</svg>
|
56
|
+
</a>
|
57
|
+
|
58
|
+
</div>
|
59
|
+
<div class="clear"></div>
|
60
|
+
</div>
|
61
|
+
|
62
|
+
<div id="content"><h1>Module: Wazuh::Api::Endpoints
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
</h1>
|
67
|
+
<div class="box_info">
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
<dl>
|
75
|
+
<dt>Includes:</dt>
|
76
|
+
<dd><span class='object_link'><a href="Endpoints/ActiveResponse.html" title="Wazuh::Api::Endpoints::ActiveResponse (module)">ActiveResponse</a></span>, <span class='object_link'><a href="Endpoints/Agents.html" title="Wazuh::Api::Endpoints::Agents (module)">Agents</a></span>, <span class='object_link'><a href="Endpoints/Cache.html" title="Wazuh::Api::Endpoints::Cache (module)">Cache</a></span>, <span class='object_link'><a href="Endpoints/Ciscat.html" title="Wazuh::Api::Endpoints::Ciscat (module)">Ciscat</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html" title="Wazuh::Api::Endpoints::Cluster (module)">Cluster</a></span>, <span class='object_link'><a href="Endpoints/Decoders.html" title="Wazuh::Api::Endpoints::Decoders (module)">Decoders</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html" title="Wazuh::Api::Endpoints::Experimental (module)">Experimental</a></span>, <span class='object_link'><a href="Endpoints/Lists.html" title="Wazuh::Api::Endpoints::Lists (module)">Lists</a></span>, <span class='object_link'><a href="Endpoints/Manager.html" title="Wazuh::Api::Endpoints::Manager (module)">Manager</a></span>, <span class='object_link'><a href="Endpoints/Rootcheck.html" title="Wazuh::Api::Endpoints::Rootcheck (module)">Rootcheck</a></span>, <span class='object_link'><a href="Endpoints/Rules.html" title="Wazuh::Api::Endpoints::Rules (module)">Rules</a></span>, <span class='object_link'><a href="Endpoints/SecurityConfigurationAssessment.html" title="Wazuh::Api::Endpoints::SecurityConfigurationAssessment (module)">SecurityConfigurationAssessment</a></span>, <span class='object_link'><a href="Endpoints/Summary.html" title="Wazuh::Api::Endpoints::Summary (module)">Summary</a></span>, <span class='object_link'><a href="Endpoints/Syscheck.html" title="Wazuh::Api::Endpoints::Syscheck (module)">Syscheck</a></span>, <span class='object_link'><a href="Endpoints/Syscollector.html" title="Wazuh::Api::Endpoints::Syscollector (module)">Syscollector</a></span></dd>
|
77
|
+
</dl>
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
<dl>
|
83
|
+
<dt>Included in:</dt>
|
84
|
+
<dd><span class='object_link'><a href="../Client.html" title="Wazuh::Client (class)">Client</a></span></dd>
|
85
|
+
</dl>
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
<dl>
|
90
|
+
<dt>Defined in:</dt>
|
91
|
+
<dd>lib/wazuh/api/endpoints.rb<span class="defines">,<br />
|
92
|
+
lib/wazuh/api/endpoints/cache.rb,<br /> lib/wazuh/api/endpoints/lists.rb,<br /> lib/wazuh/api/endpoints/rules.rb,<br /> lib/wazuh/api/endpoints/agents.rb,<br /> lib/wazuh/api/endpoints/ciscat.rb,<br /> lib/wazuh/api/endpoints/cluster.rb,<br /> lib/wazuh/api/endpoints/manager.rb,<br /> lib/wazuh/api/endpoints/summary.rb,<br /> lib/wazuh/api/endpoints/decoders.rb,<br /> lib/wazuh/api/endpoints/syscheck.rb,<br /> lib/wazuh/api/endpoints/rootcheck.rb,<br /> lib/wazuh/api/endpoints/experimental.rb,<br /> lib/wazuh/api/endpoints/syscollector.rb,<br /> lib/wazuh/api/endpoints/active_response.rb,<br /> lib/wazuh/api/endpoints/security_configuration_assessment.rb</span>
|
93
|
+
</dd>
|
94
|
+
</dl>
|
95
|
+
|
96
|
+
</div>
|
97
|
+
|
98
|
+
<h2>Defined Under Namespace</h2>
|
99
|
+
<p class="children">
|
100
|
+
|
101
|
+
|
102
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Endpoints/ActiveResponse.html" title="Wazuh::Api::Endpoints::ActiveResponse (module)">ActiveResponse</a></span>, <span class='object_link'><a href="Endpoints/Agents.html" title="Wazuh::Api::Endpoints::Agents (module)">Agents</a></span>, <span class='object_link'><a href="Endpoints/Cache.html" title="Wazuh::Api::Endpoints::Cache (module)">Cache</a></span>, <span class='object_link'><a href="Endpoints/Ciscat.html" title="Wazuh::Api::Endpoints::Ciscat (module)">Ciscat</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html" title="Wazuh::Api::Endpoints::Cluster (module)">Cluster</a></span>, <span class='object_link'><a href="Endpoints/Decoders.html" title="Wazuh::Api::Endpoints::Decoders (module)">Decoders</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html" title="Wazuh::Api::Endpoints::Experimental (module)">Experimental</a></span>, <span class='object_link'><a href="Endpoints/Lists.html" title="Wazuh::Api::Endpoints::Lists (module)">Lists</a></span>, <span class='object_link'><a href="Endpoints/Manager.html" title="Wazuh::Api::Endpoints::Manager (module)">Manager</a></span>, <span class='object_link'><a href="Endpoints/Rootcheck.html" title="Wazuh::Api::Endpoints::Rootcheck (module)">Rootcheck</a></span>, <span class='object_link'><a href="Endpoints/Rules.html" title="Wazuh::Api::Endpoints::Rules (module)">Rules</a></span>, <span class='object_link'><a href="Endpoints/SecurityConfigurationAssessment.html" title="Wazuh::Api::Endpoints::SecurityConfigurationAssessment (module)">SecurityConfigurationAssessment</a></span>, <span class='object_link'><a href="Endpoints/Summary.html" title="Wazuh::Api::Endpoints::Summary (module)">Summary</a></span>, <span class='object_link'><a href="Endpoints/Syscheck.html" title="Wazuh::Api::Endpoints::Syscheck (module)">Syscheck</a></span>, <span class='object_link'><a href="Endpoints/Syscollector.html" title="Wazuh::Api::Endpoints::Syscollector (module)">Syscollector</a></span>
|
103
|
+
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
</p>
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
<h2>Method Summary</h2>
|
123
|
+
|
124
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/SecurityConfigurationAssessment.html" title="Wazuh::Api::Endpoints::SecurityConfigurationAssessment (module)">SecurityConfigurationAssessment</a></span></h3>
|
125
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/SecurityConfigurationAssessment.html#checks_sca_database-instance_method" title="Wazuh::Api::Endpoints::SecurityConfigurationAssessment#checks_sca_database (method)">#checks_sca_database</a></span>, <span class='object_link'><a href="Endpoints/SecurityConfigurationAssessment.html#sca_database-instance_method" title="Wazuh::Api::Endpoints::SecurityConfigurationAssessment#sca_database (method)">#sca_database</a></span></p>
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Syscollector.html" title="Wazuh::Api::Endpoints::Syscollector (module)">Syscollector</a></span></h3>
|
136
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Syscollector.html#hardware-instance_method" title="Wazuh::Api::Endpoints::Syscollector#hardware (method)">#hardware</a></span>, <span class='object_link'><a href="Endpoints/Syscollector.html#netaddr-instance_method" title="Wazuh::Api::Endpoints::Syscollector#netaddr (method)">#netaddr</a></span>, <span class='object_link'><a href="Endpoints/Syscollector.html#netiface-instance_method" title="Wazuh::Api::Endpoints::Syscollector#netiface (method)">#netiface</a></span>, <span class='object_link'><a href="Endpoints/Syscollector.html#netproto-instance_method" title="Wazuh::Api::Endpoints::Syscollector#netproto (method)">#netproto</a></span>, <span class='object_link'><a href="Endpoints/Syscollector.html#os-instance_method" title="Wazuh::Api::Endpoints::Syscollector#os (method)">#os</a></span>, <span class='object_link'><a href="Endpoints/Syscollector.html#packages-instance_method" title="Wazuh::Api::Endpoints::Syscollector#packages (method)">#packages</a></span>, <span class='object_link'><a href="Endpoints/Syscollector.html#ports-instance_method" title="Wazuh::Api::Endpoints::Syscollector#ports (method)">#ports</a></span>, <span class='object_link'><a href="Endpoints/Syscollector.html#processes-instance_method" title="Wazuh::Api::Endpoints::Syscollector#processes (method)">#processes</a></span></p>
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Syscheck.html" title="Wazuh::Api::Endpoints::Syscheck (module)">Syscheck</a></span></h3>
|
147
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Syscheck.html#clear_syscheck_database-instance_method" title="Wazuh::Api::Endpoints::Syscheck#clear_syscheck_database (method)">#clear_syscheck_database</a></span>, <span class='object_link'><a href="Endpoints/Syscheck.html#last_syscheck_scan-instance_method" title="Wazuh::Api::Endpoints::Syscheck#last_syscheck_scan (method)">#last_syscheck_scan</a></span>, <span class='object_link'><a href="Endpoints/Syscheck.html#run_syscheck-instance_method" title="Wazuh::Api::Endpoints::Syscheck#run_syscheck (method)">#run_syscheck</a></span>, <span class='object_link'><a href="Endpoints/Syscheck.html#run_syscheck_all_agents-instance_method" title="Wazuh::Api::Endpoints::Syscheck#run_syscheck_all_agents (method)">#run_syscheck_all_agents</a></span>, <span class='object_link'><a href="Endpoints/Syscheck.html#syscheck_files-instance_method" title="Wazuh::Api::Endpoints::Syscheck#syscheck_files (method)">#syscheck_files</a></span></p>
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Summary.html" title="Wazuh::Api::Endpoints::Summary (module)">Summary</a></span></h3>
|
158
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Summary.html#summary-instance_method" title="Wazuh::Api::Endpoints::Summary#summary (method)">#summary</a></span></p>
|
159
|
+
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
|
168
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Rules.html" title="Wazuh::Api::Endpoints::Rules (module)">Rules</a></span></h3>
|
169
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Rules.html#all_rules-instance_method" title="Wazuh::Api::Endpoints::Rules#all_rules (method)">#all_rules</a></span>, <span class='object_link'><a href="Endpoints/Rules.html#gdpr_rules-instance_method" title="Wazuh::Api::Endpoints::Rules#gdpr_rules (method)">#gdpr_rules</a></span>, <span class='object_link'><a href="Endpoints/Rules.html#gpg13_rules-instance_method" title="Wazuh::Api::Endpoints::Rules#gpg13_rules (method)">#gpg13_rules</a></span>, <span class='object_link'><a href="Endpoints/Rules.html#hipaa_rules-instance_method" title="Wazuh::Api::Endpoints::Rules#hipaa_rules (method)">#hipaa_rules</a></span>, <span class='object_link'><a href="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>, <span class='object_link'><a href="Endpoints/Rules.html#pic_rules-instance_method" title="Wazuh::Api::Endpoints::Rules#pic_rules (method)">#pic_rules</a></span>, <span class='object_link'><a href="Endpoints/Rules.html#rule_by_id-instance_method" title="Wazuh::Api::Endpoints::Rules#rule_by_id (method)">#rule_by_id</a></span>, <span class='object_link'><a href="Endpoints/Rules.html#rule_files-instance_method" title="Wazuh::Api::Endpoints::Rules#rule_files (method)">#rule_files</a></span>, <span class='object_link'><a href="Endpoints/Rules.html#rules_groups-instance_method" title="Wazuh::Api::Endpoints::Rules#rules_groups (method)">#rules_groups</a></span></p>
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Rootcheck.html" title="Wazuh::Api::Endpoints::Rootcheck (module)">Rootcheck</a></span></h3>
|
180
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Rootcheck.html#cleak_rootcheck_database_for_agent-instance_method" title="Wazuh::Api::Endpoints::Rootcheck#cleak_rootcheck_database_for_agent (method)">#cleak_rootcheck_database_for_agent</a></span>, <span class='object_link'><a href="Endpoints/Rootcheck.html#clear_rootcheck_database-instance_method" title="Wazuh::Api::Endpoints::Rootcheck#clear_rootcheck_database (method)">#clear_rootcheck_database</a></span>, <span class='object_link'><a href="Endpoints/Rootcheck.html#rootcheck_cis_requirements-instance_method" title="Wazuh::Api::Endpoints::Rootcheck#rootcheck_cis_requirements (method)">#rootcheck_cis_requirements</a></span>, <span class='object_link'><a href="Endpoints/Rootcheck.html#rootcheck_database-instance_method" title="Wazuh::Api::Endpoints::Rootcheck#rootcheck_database (method)">#rootcheck_database</a></span>, <span class='object_link'><a href="Endpoints/Rootcheck.html#rootcheck_last_scan-instance_method" title="Wazuh::Api::Endpoints::Rootcheck#rootcheck_last_scan (method)">#rootcheck_last_scan</a></span>, <span class='object_link'><a href="Endpoints/Rootcheck.html#rootcheck_pic_requirements-instance_method" title="Wazuh::Api::Endpoints::Rootcheck#rootcheck_pic_requirements (method)">#rootcheck_pic_requirements</a></span>, <span class='object_link'><a href="Endpoints/Rootcheck.html#run_rootcheck-instance_method" title="Wazuh::Api::Endpoints::Rootcheck#run_rootcheck (method)">#run_rootcheck</a></span>, <span class='object_link'><a href="Endpoints/Rootcheck.html#run_rootcheck_all_agents-instance_method" title="Wazuh::Api::Endpoints::Rootcheck#run_rootcheck_all_agents (method)">#run_rootcheck_all_agents</a></span></p>
|
181
|
+
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Manager.html" title="Wazuh::Api::Endpoints::Manager (module)">Manager</a></span></h3>
|
191
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Manager.html#check_manager_configuration-instance_method" title="Wazuh::Api::Endpoints::Manager#check_manager_configuration (method)">#check_manager_configuration</a></span>, <span class='object_link'><a href="Endpoints/Manager.html#delete_manager_local_file-instance_method" title="Wazuh::Api::Endpoints::Manager#delete_manager_local_file (method)">#delete_manager_local_file</a></span>, <span class='object_link'><a href="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>, <span class='object_link'><a href="Endpoints/Manager.html#manager_active_configuration-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_active_configuration (method)">#manager_active_configuration</a></span>, <span class='object_link'><a href="Endpoints/Manager.html#manager_analysisd_stats-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_analysisd_stats (method)">#manager_analysisd_stats</a></span>, <span class='object_link'><a href="Endpoints/Manager.html#manager_configuration-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_configuration (method)">#manager_configuration</a></span>, <span class='object_link'><a href="Endpoints/Manager.html#manager_information-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_information (method)">#manager_information</a></span>, <span class='object_link'><a href="Endpoints/Manager.html#manager_log-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_log (method)">#manager_log</a></span>, <span class='object_link'><a href="Endpoints/Manager.html#manager_remoted_stats-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_remoted_stats (method)">#manager_remoted_stats</a></span>, <span class='object_link'><a href="Endpoints/Manager.html#manager_stats-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_stats (method)">#manager_stats</a></span>, <span class='object_link'><a href="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>, <span class='object_link'><a href="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>, <span class='object_link'><a href="Endpoints/Manager.html#manager_status-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_status (method)">#manager_status</a></span>, <span class='object_link'><a href="Endpoints/Manager.html#manager_summary_log-instance_method" title="Wazuh::Api::Endpoints::Manager#manager_summary_log (method)">#manager_summary_log</a></span>, <span class='object_link'><a href="Endpoints/Manager.html#restart_manager-instance_method" title="Wazuh::Api::Endpoints::Manager#restart_manager (method)">#restart_manager</a></span>, <span class='object_link'><a href="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></p>
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Lists.html" title="Wazuh::Api::Endpoints::Lists (module)">Lists</a></span></h3>
|
202
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Lists.html#cdb_files-instance_method" title="Wazuh::Api::Endpoints::Lists#cdb_files (method)">#cdb_files</a></span>, <span class='object_link'><a href="Endpoints/Lists.html#cdb_lists-instance_method" title="Wazuh::Api::Endpoints::Lists#cdb_lists (method)">#cdb_lists</a></span></p>
|
203
|
+
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
|
212
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Experimental.html" title="Wazuh::Api::Endpoints::Experimental (module)">Experimental</a></span></h3>
|
213
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Experimental.html#experimental_ciscat_results-instance_method" title="Wazuh::Api::Endpoints::Experimental#experimental_ciscat_results (method)">#experimental_ciscat_results</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html#experimental_clear_syscheck_database-instance_method" title="Wazuh::Api::Endpoints::Experimental#experimental_clear_syscheck_database (method)">#experimental_clear_syscheck_database</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html#experimental_hardware-instance_method" title="Wazuh::Api::Endpoints::Experimental#experimental_hardware (method)">#experimental_hardware</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html#experimental_netaddr-instance_method" title="Wazuh::Api::Endpoints::Experimental#experimental_netaddr (method)">#experimental_netaddr</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html#experimental_netiface-instance_method" title="Wazuh::Api::Endpoints::Experimental#experimental_netiface (method)">#experimental_netiface</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html#experimental_netproto-instance_method" title="Wazuh::Api::Endpoints::Experimental#experimental_netproto (method)">#experimental_netproto</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html#experimental_os-instance_method" title="Wazuh::Api::Endpoints::Experimental#experimental_os (method)">#experimental_os</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html#experimental_packages-instance_method" title="Wazuh::Api::Endpoints::Experimental#experimental_packages (method)">#experimental_packages</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html#experimental_ports-instance_method" title="Wazuh::Api::Endpoints::Experimental#experimental_ports (method)">#experimental_ports</a></span>, <span class='object_link'><a href="Endpoints/Experimental.html#experimental_processes-instance_method" title="Wazuh::Api::Endpoints::Experimental#experimental_processes (method)">#experimental_processes</a></span></p>
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Decoders.html" title="Wazuh::Api::Endpoints::Decoders (module)">Decoders</a></span></h3>
|
224
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Decoders.html#all_decoders-instance_method" title="Wazuh::Api::Endpoints::Decoders#all_decoders (method)">#all_decoders</a></span>, <span class='object_link'><a href="Endpoints/Decoders.html#all_decoders_files-instance_method" title="Wazuh::Api::Endpoints::Decoders#all_decoders_files (method)">#all_decoders_files</a></span>, <span class='object_link'><a href="Endpoints/Decoders.html#all_parent_decoders-instance_method" title="Wazuh::Api::Endpoints::Decoders#all_parent_decoders (method)">#all_parent_decoders</a></span>, <span class='object_link'><a href="Endpoints/Decoders.html#decoders_by_name-instance_method" title="Wazuh::Api::Endpoints::Decoders#decoders_by_name (method)">#decoders_by_name</a></span></p>
|
225
|
+
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
|
234
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Cluster.html" title="Wazuh::Api::Endpoints::Cluster (module)">Cluster</a></span></h3>
|
235
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Cluster.html#analysisd_stats-instance_method" title="Wazuh::Api::Endpoints::Cluster#analysisd_stats (method)">#analysisd_stats</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#check_configuration-instance_method" title="Wazuh::Api::Endpoints::Cluster#check_configuration (method)">#check_configuration</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#check_configuration_by_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#check_configuration_by_node (method)">#check_configuration_by_node</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#cluster_configuration-instance_method" title="Wazuh::Api::Endpoints::Cluster#cluster_configuration (method)">#cluster_configuration</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#cluster_healthcheck-instance_method" title="Wazuh::Api::Endpoints::Cluster#cluster_healthcheck (method)">#cluster_healthcheck</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#cluster_logs_by_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#cluster_logs_by_node (method)">#cluster_logs_by_node</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#cluster_logs_summary_by_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#cluster_logs_summary_by_node (method)">#cluster_logs_summary_by_node</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#cluster_status-instance_method" title="Wazuh::Api::Endpoints::Cluster#cluster_status (method)">#cluster_status</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#component_configuration_by_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#component_configuration_by_node (method)">#component_configuration_by_node</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#configuration_by_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#configuration_by_node (method)">#configuration_by_node</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#delete_remote_file-instance_method" title="Wazuh::Api::Endpoints::Cluster#delete_remote_file (method)">#delete_remote_file</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#get_remote_file-instance_method" title="Wazuh::Api::Endpoints::Cluster#get_remote_file (method)">#get_remote_file</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#local_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#local_node (method)">#local_node</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#node-instance_method" title="Wazuh::Api::Endpoints::Cluster#node (method)">#node</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#node_info-instance_method" title="Wazuh::Api::Endpoints::Cluster#node_info (method)">#node_info</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#node_status-instance_method" title="Wazuh::Api::Endpoints::Cluster#node_status (method)">#node_status</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#nodes-instance_method" title="Wazuh::Api::Endpoints::Cluster#nodes (method)">#nodes</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#nodes_stats-instance_method" title="Wazuh::Api::Endpoints::Cluster#nodes_stats (method)">#nodes_stats</a></span>, <span class='object_link'><a href="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>, <span class='object_link'><a href="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>, <span class='object_link'><a href="Endpoints/Cluster.html#remoted_stats-instance_method" title="Wazuh::Api::Endpoints::Cluster#remoted_stats (method)">#remoted_stats</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#restart_all_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#restart_all_node (method)">#restart_all_node</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#restart_node-instance_method" title="Wazuh::Api::Endpoints::Cluster#restart_node (method)">#restart_node</a></span>, <span class='object_link'><a href="Endpoints/Cluster.html#update_remote_file-instance_method" title="Wazuh::Api::Endpoints::Cluster#update_remote_file (method)">#update_remote_file</a></span></p>
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Ciscat.html" title="Wazuh::Api::Endpoints::Ciscat (module)">Ciscat</a></span></h3>
|
246
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Ciscat.html#ciscat_result-instance_method" title="Wazuh::Api::Endpoints::Ciscat#ciscat_result (method)">#ciscat_result</a></span></p>
|
247
|
+
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
|
256
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Cache.html" title="Wazuh::Api::Endpoints::Cache (module)">Cache</a></span></h3>
|
257
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Cache.html#cache_config-instance_method" title="Wazuh::Api::Endpoints::Cache#cache_config (method)">#cache_config</a></span>, <span class='object_link'><a href="Endpoints/Cache.html#cache_index-instance_method" title="Wazuh::Api::Endpoints::Cache#cache_index (method)">#cache_index</a></span>, <span class='object_link'><a href="Endpoints/Cache.html#clear_cache-instance_method" title="Wazuh::Api::Endpoints::Cache#clear_cache (method)">#clear_cache</a></span>, <span class='object_link'><a href="Endpoints/Cache.html#clear_group_cache-instance_method" title="Wazuh::Api::Endpoints::Cache#clear_group_cache (method)">#clear_group_cache</a></span></p>
|
258
|
+
|
259
|
+
|
260
|
+
|
261
|
+
|
262
|
+
|
263
|
+
|
264
|
+
|
265
|
+
|
266
|
+
|
267
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/Agents.html" title="Wazuh::Api::Endpoints::Agents (module)">Agents</a></span></h3>
|
268
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/Agents.html#add_agent-instance_method" title="Wazuh::Api::Endpoints::Agents#add_agent (method)">#add_agent</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#add_agent_quick-instance_method" title="Wazuh::Api::Endpoints::Agents#add_agent_quick (method)">#add_agent_quick</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#agent-instance_method" title="Wazuh::Api::Endpoints::Agents#agent (method)">#agent</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#agent_by_name-instance_method" title="Wazuh::Api::Endpoints::Agents#agent_by_name (method)">#agent_by_name</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#agent_key-instance_method" title="Wazuh::Api::Endpoints::Agents#agent_key (method)">#agent_key</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#all_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#all_agents (method)">#all_agents</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#distinct_fields_in_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#distinct_fields_in_agents (method)">#distinct_fields_in_agents</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#insert_agent-instance_method" title="Wazuh::Api::Endpoints::Agents#insert_agent (method)">#insert_agent</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#outdated_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#outdated_agents (method)">#outdated_agents</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#restart_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#restart_agents (method)">#restart_agents</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#restart_all_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#restart_all_agents (method)">#restart_all_agents</a></span>, <span class='object_link'><a href="Endpoints/Agents.html#restart_an_agents-instance_method" title="Wazuh::Api::Endpoints::Agents#restart_an_agents (method)">#restart_an_agents</a></span>, <span class='object_link'><a href="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></p>
|
269
|
+
|
270
|
+
|
271
|
+
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
|
276
|
+
|
277
|
+
|
278
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Endpoints/ActiveResponse.html" title="Wazuh::Api::Endpoints::ActiveResponse (module)">ActiveResponse</a></span></h3>
|
279
|
+
<p class="inherited"><span class='object_link'><a href="Endpoints/ActiveResponse.html#run_active_response_command-instance_method" title="Wazuh::Api::Endpoints::ActiveResponse#run_active_response_command (method)">#run_active_response_command</a></span></p>
|
280
|
+
|
281
|
+
|
282
|
+
</div>
|
283
|
+
|
284
|
+
<div id="footer">
|
285
|
+
Generated on Sat Jan 25 00:19:40 2020 by
|
286
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
287
|
+
0.9.16 (ruby-2.5.1).
|
288
|
+
</div>
|
289
|
+
|
290
|
+
</div>
|
291
|
+
</body>
|
292
|
+
</html>
|