Skip to content

Commit

Permalink
Added support for 'routing filter num-list' (#313)
Browse files Browse the repository at this point in the history
* Added support for 'routing filter num-list'

* Added support for 'routing filter num-list', changelog

* Added support for 'routing filter num-list', changelog
  • Loading branch information
tim427 authored Sep 9, 2024
1 parent 8158d90 commit 89b34bd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/313-add-routing-filter-num-list.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 ``routing filter num-list`` path implemented by RouterOS 7 and newer (https://github.com/ansible-collections/community.routeros/pull/313).
13 changes: 13 additions & 0 deletions plugins/module_utils/_api_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,19 @@ def join_path(path):
)),
],
),
('routing', 'filter', 'num-list'): APIData(
versioned=[
('7', '>=', VersionedAPIData(
fully_understood=True,
fields={
'list': KeyInfo(required=True),
'comment': KeyInfo(can_disable=True, remove_value=''),
'disabled': KeyInfo(can_disable=True),
'range': KeyInfo(can_disable=True),
},
)),
],
),
('routing', 'filter', 'rule'): APIData(
versioned=[
('7', '>=', VersionedAPIData(
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 @@ -204,6 +204,7 @@
- routing bgp peer
- routing bgp template
- routing filter
- routing filter num-list
- routing filter rule
- routing filter select-rule
- routing id
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 @@ -213,6 +213,7 @@
- routing bgp peer
- routing bgp template
- routing filter
- routing filter num-list
- routing filter rule
- routing filter select-rule
- routing id
Expand Down

0 comments on commit 89b34bd

Please sign in to comment.