Skip to content

Commit 73642ba

Browse files
FelixRickefrickefelixfontein
authored
Partially fixed issue 363: Add missing parameters for path interface bridge and interface bridge port (#423)
* added missing parameters to path interface bridge * add missing parameters to path interface/bridge/port * add changelog fragment * change default value for parameter mvrp of path interface bridge * Update changelogs/fragments/423_add_missing_parameters_for_interface_bridge.yml Co-authored-by: Felix Fontein <[email protected]> --------- Co-authored-by: fricke <[email protected]> Co-authored-by: Felix Fontein <[email protected]>
1 parent 0b2dc61 commit 73642ba

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
minor_changes:
2+
- api_info, api_modify - add missing parameters to path ``interface bridge`` and ``interface bridge port`` (https://github.com/ansible-collections/community.routeros/pull/423).

plugins/module_utils/_api_data.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,21 @@ def join_path(path):
297297
([('7.13', '>=')], 'port-cost-mode', KeyInfo(default='long')),
298298
([('7.16', '>=')], 'forward-reserved-addresses', KeyInfo(default=False)),
299299
([('7.16', '>=')], 'max-learned-entries', KeyInfo(default='auto')),
300+
([('7.20', '>=')], 'add-dhcp-option82', KeyInfo(default=False)),
301+
([('7.20', '>=')], 'igmp-version', KeyInfo(default=2)),
302+
([('7.20', '>=')], 'last-member-interval', KeyInfo(default='1s')),
303+
([('7.20', '>=')], 'last-member-query-count', KeyInfo(default=2)),
304+
([('7.20', '>=')], 'max-hops', KeyInfo(default=20)),
305+
([('7.20', '>=')], 'membership-interval', KeyInfo(default='4m20s')),
306+
([('7.20', '>=')], 'multicast-router', KeyInfo(default='temporary-query')),
307+
([('7.20', '>=')], 'mvrp', KeyInfo(default=False)),
308+
([('7.20', '>=')], 'querier-interval', KeyInfo(default='4m15s')),
309+
([('7.20', '>=')], 'query-interval', KeyInfo(default='2m5s')),
310+
([('7.20', '>=')], 'query-response-interval', KeyInfo(default='10s')),
311+
([('7.20', '>=')], 'region-name', KeyInfo(default='')),
312+
([('7.20', '>=')], 'region-revision', KeyInfo(default=0)),
313+
([('7.20', '>=')], 'startup-query-count', KeyInfo(default=2)),
314+
([('7.20', '>=')], 'startup-query-interval', KeyInfo(default='31s250ms')),
300315
],
301316
fields={
302317
'admin-mac': KeyInfo(default=''),
@@ -1502,6 +1517,8 @@ def join_path(path):
15021517
versioned_fields=[
15031518
([('7.0', '<')], 'ingress-filtering', KeyInfo(default=False)),
15041519
([('7.0', '>=')], 'ingress-filtering', KeyInfo(default=True)),
1520+
([('7.20', '>=')], 'mvrp-applicant-state', KeyInfo(default='normal-participant')),
1521+
([('7.20', '>=')], 'mvrp-registrar-state', KeyInfo(default='normal')),
15051522
],
15061523
fields={
15071524
'auto-isolate': KeyInfo(default=False),

0 commit comments

Comments
 (0)