Sha256: 6900c81db59d75885bf48d22dca224b66c99b698c588e045d6c30e39b1b9634a

Contents?: true

Size: 1.83 KB

Versions: 1

Compression:

Stored size: 1.83 KB

Contents

# Change Log

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.2.5]

- Get all items with `offset_request`
  - So far only 500 items(Wazuh API default) have been retrieved that contain a `totalItems` field such as `#all_agents` .
  - For such an endpoint, implemented `offset_request` to fetch all items.
  - This change does not change the type of the return value. However, it may take some time because it sends repeated requests to get all the items.

## [0.2.4] - 2020-03-31

- `agents_by_group` also returns the `item` field.

## [0.2.3] - 2019-02-18

- Added some methods for agents and groups
  - `delete_agent()`
  - `agent_config()`
  - `delete_agent_by_group()`
  - `agent_sync_status()`
  - `add_agents_to_group()`
  - `add_agent_to_group()`
  - `create_group()`
  - `get_file_in_group()`
  - `agents_by_group()`
  - `agents_by_no_group()`
  - `group_configuration()`
  - `group_files()`
  - `groups()`
  - `update_group_ossec_configuration()`
  - `remove_agent_of_group()`
  - `remvoe_agents_of_group()`
  - `remove_all_agent_of_group()`
  - `remove_group()`
  - `agent_os_summary()`
  - `agent_summary()`

## [0.2.2] - 2019-02-18

- Added options to `syscheck_files()`

## [0.2.1] - 2019-02-10

- Fix `syscheck_files()` duplicated and confused

## [0.2.0] - 2019-02-03

### Adds

- `Wazuh::Client#delete_agent`
- `Wazuh::Client#syscheck_files`

### Changed

- `Wazuh::Client#cdb_files` rename to `Wazuh::Client#cdb_files_path`
- Using sawyer instead of faraday for http client.
  - This can the return vaule to be handle like an object.

```ruby
> agents = client.all_agents
> agents.class
=> Array
> agent = agents.first
> agent.id
=> "000"
> agent.os.arch
=> "x86_64"
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wazuh-ruby-client-0.2.5 CHANGELOG.md