fix: add missing fields to ip pool path (#327)

* fix: add missing fields to `ip pool` path

Signed-off-by: gardar <gardar@users.noreply.github.com>

* fix: remove unneeded copy-from

Signed-off-by: gardar <gardar@users.noreply.github.com>

---------

Signed-off-by: gardar <gardar@users.noreply.github.com>
This commit is contained in:
gardar 2024-11-04 18:05:52 +00:00 committed by GitHub
parent 5936c1ecef
commit d44262d820
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1,3 @@
---
bugfixes:
- api_info, api_modify - add missing fields ``comment``, ``next-pool`` to ``ip pool`` path (https://github.com/ansible-collections/community.routeros/pull/327).

View file

@ -708,7 +708,9 @@ PATHS = {
fully_understood=True, fully_understood=True,
primary_keys=('name', ), primary_keys=('name', ),
fields={ fields={
'comment': KeyInfo(),
'name': KeyInfo(), 'name': KeyInfo(),
'next-pool': KeyInfo(),
'ranges': KeyInfo(), 'ranges': KeyInfo(),
}, },
), ),