Skip to content

Commit

Permalink
Add support for the "routing ospf static-neighbor" path (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
hansmi authored Aug 1, 2024
1 parent 8c62d46 commit ba806c0
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion changelogs/fragments/300-add-ip-dhcp-server-matcher.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
minor_changes:
- api_info, api_modify - add support for the ``ip dhcp-server matcher`` path (https://github.com/ansible-collections/community.routeros/issues/300).
- api_info, api_modify - add support for the ``ip dhcp-server matcher`` path (https://github.com/ansible-collections/community.routeros/pull/300).
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
minor_changes:
- api_info, api_modify - set default for ``force`` in ``ip dhcp-server option`` to an explicit ``false`` (https://github.com/ansible-collections/community.routeros/issues/300).
- api_info, api_modify - set default for ``force`` in ``ip dhcp-server option`` to an explicit ``false`` (https://github.com/ansible-collections/community.routeros/pull/300).
2 changes: 2 additions & 0 deletions changelogs/fragments/302-ospf-static-neighbor.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 ospf static-neighbor`` path in RouterOS 7 (https://github.com/ansible-collections/community.routeros/pull/302).
15 changes: 15 additions & 0 deletions plugins/module_utils/_api_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -956,6 +956,21 @@ def join_path(path):
},
),
),
('routing', 'ospf', 'static-neighbor'): APIData(
versioned=[
('7', '>=', VersionedAPIData(
fully_understood=True,
fields={
'address': KeyInfo(required=True),
'area': KeyInfo(required=True),
'comment': KeyInfo(can_disable=True, remove_value=''),
'disabled': KeyInfo(default=False),
'instance-id': KeyInfo(default=0),
'poll-interval': KeyInfo(default='2m'),
},
)),
],
),
('routing', 'ospf-v3', 'instance'): APIData(
unversioned=VersionedAPIData(
unknown_mechanism=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 @@ -209,6 +209,7 @@
- routing ospf area range
- routing ospf instance
- routing ospf interface-template
- routing ospf static-neighbor
- routing pimsm instance
- routing pimsm interface-template
- routing rip
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 @@ -218,6 +218,7 @@
- routing ospf area range
- routing ospf instance
- routing ospf interface-template
- routing ospf static-neighbor
- routing pimsm instance
- routing pimsm interface-template
- routing rip
Expand Down

0 comments on commit ba806c0

Please sign in to comment.