Skip to content

Commit

Permalink
Add support for the "ip dns adlist" path (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
hansmi authored Aug 22, 2024
1 parent 274e249 commit 6c2101d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/310-add-ip-dns-adlist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- api_info, api_modify - add support for the ``ip dns adlist`` path implemented by RouterOS 7.15 and newer (https://github.com/ansible-collections/community.routeros/pull/310).
16 changes: 16 additions & 0 deletions plugins/module_utils/_api_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -2818,6 +2818,22 @@ def join_path(path):
},
),
),
('ip', 'dns', 'adlist'): APIData(
versioned=[
('7.15', '>=', VersionedAPIData(
fully_understood=True,
fields={
'comment': KeyInfo(can_disable=True, remove_value=''),
'disabled': KeyInfo(default=False),
'file': KeyInfo(default=''),
'match-count': KeyInfo(read_only=True),
'name-count': KeyInfo(read_only=True),
'ssl-verify': KeyInfo(default=True),
'url': KeyInfo(default=''),
},
)),
],
),
('ip', 'dns', 'static'): APIData(
unversioned=VersionedAPIData(
fully_understood=True,
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/api_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@
- ip dhcp-server option
- ip dhcp-server option sets
- ip dns
- ip dns adlist
- ip dns static
- ip firewall address-list
- ip firewall connection tracking
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/api_modify.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
- ip dhcp-server option
- ip dhcp-server option sets
- ip dns
- ip dns adlist
- ip dns static
- ip firewall address-list
- ip firewall connection tracking
Expand Down

0 comments on commit 6c2101d

Please sign in to comment.