mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-28 20:40:24 +02:00
parent
56ce47aef5
commit
79dabbb67e
4 changed files with 22 additions and 0 deletions
2
changelogs/fragments/246-add-routing-rule-path.yml
Normal file
2
changelogs/fragments/246-add-routing-rule-path.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- api_info, api_modify - add ``routing rule`` path (https://github.com/ansible-collections/community.routeros/issues/162, https://github.com/ansible-collections/community.routeros/pull/246).
|
|
@ -960,6 +960,24 @@ PATHS = {
|
|||
},
|
||||
),
|
||||
),
|
||||
('routing', 'rule'): APIData(
|
||||
versioned=[
|
||||
('7', '>=', VersionedAPIData(
|
||||
fully_understood=True,
|
||||
fields={
|
||||
'action': KeyInfo(can_disable=True),
|
||||
'comment': KeyInfo(can_disable=True, remove_value=''),
|
||||
'disabled': KeyInfo(default=False),
|
||||
'dst-address': KeyInfo(can_disable=True),
|
||||
'interface': KeyInfo(can_disable=True),
|
||||
'min-prefix': KeyInfo(can_disable=True),
|
||||
'routing-mark': KeyInfo(can_disable=True),
|
||||
'src-address': KeyInfo(can_disable=True),
|
||||
'table': KeyInfo(can_disable=True),
|
||||
},
|
||||
)),
|
||||
],
|
||||
),
|
||||
('routing', 'table'): APIData(
|
||||
versioned=[
|
||||
('7', '>=', VersionedAPIData(
|
||||
|
|
|
@ -185,6 +185,7 @@ options:
|
|||
- routing pimsm interface-template
|
||||
- routing rip
|
||||
- routing ripng
|
||||
- routing rule
|
||||
- routing table
|
||||
- snmp
|
||||
- snmp community
|
||||
|
|
|
@ -194,6 +194,7 @@ options:
|
|||
- routing pimsm interface-template
|
||||
- routing rip
|
||||
- routing ripng
|
||||
- routing rule
|
||||
- routing table
|
||||
- snmp
|
||||
- snmp community
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue