mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-21 09:35:45 +02:00
Add support for the "routing igmp-proxy" path (#309)
Upstream documentation: https://help.mikrotik.com/docs/display/ROS/IGMP+Proxy
This commit is contained in:
parent
5fb0bf0212
commit
b4ea8b2fe7
4 changed files with 31 additions and 0 deletions
|
@ -3942,6 +3942,31 @@ PATHS = {
|
|||
},
|
||||
),
|
||||
),
|
||||
('routing', 'igmp-proxy'): APIData(
|
||||
unversioned=VersionedAPIData(
|
||||
single_value=True,
|
||||
fully_understood=True,
|
||||
fields={
|
||||
'query-interval': KeyInfo(),
|
||||
'query-response-interval': KeyInfo(),
|
||||
'quick-leave': KeyInfo(default=False),
|
||||
},
|
||||
),
|
||||
),
|
||||
('routing', 'igmp-proxy', 'interface'): APIData(
|
||||
unversioned=VersionedAPIData(
|
||||
fully_understood=True,
|
||||
primary_keys=('interface', ),
|
||||
fields={
|
||||
'alternative-subnets': KeyInfo(default=''),
|
||||
'comment': KeyInfo(can_disable=True, remove_value=''),
|
||||
'disabled': KeyInfo(default=False),
|
||||
'interface': KeyInfo(),
|
||||
'threshold': KeyInfo(),
|
||||
'upstream': KeyInfo(default=False),
|
||||
},
|
||||
),
|
||||
),
|
||||
('routing', 'bfd', 'interface'): APIData(
|
||||
unversioned=VersionedAPIData(
|
||||
unknown_mechanism=True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue