mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-24 10:48:49 +02:00
* Fixes #191: Add path 'ip traffic-flow target' * Fixes #191: Add changelog fragment * Fixes #192: Change changetype from major to minor as it is only adding a path and neither breaking existing things nor adding completely new functionality --------- Co-authored-by: Johannes Münch <git@washiza.eu>
This commit is contained in:
parent
e570c582d0
commit
6e62283120
4 changed files with 18 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- api_info, api_modify - add path ``ip traffic-flow target`` (https://github.com/ansible-collections/community.routeros/issues/191, https://github.com/ansible-collections/community.routeros/pull/192).
|
|
@ -1846,6 +1846,20 @@ PATHS = {
|
||||||
'udp-length': KeyInfo(default=True),
|
'udp-length': KeyInfo(default=True),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
('ip', 'traffic-flow', 'target'): APIData(
|
||||||
|
single_value=True,
|
||||||
|
fully_understood=True,
|
||||||
|
fields={
|
||||||
|
'address': KeyInfo(),
|
||||||
|
'disabled': KeyInfo(default=False),
|
||||||
|
'dst-address': KeyInfo(),
|
||||||
|
'port': KeyInfo(default=2055),
|
||||||
|
'src-address': KeyInfo(),
|
||||||
|
'v9-template-refresh': KeyInfo(default=20),
|
||||||
|
'v9-template-timeout': KeyInfo(),
|
||||||
|
'version': KeyInfo(),
|
||||||
|
},
|
||||||
|
),
|
||||||
('ip', 'upnp'): APIData(
|
('ip', 'upnp'): APIData(
|
||||||
single_value=True,
|
single_value=True,
|
||||||
fully_understood=True,
|
fully_understood=True,
|
||||||
|
|
|
@ -123,6 +123,7 @@ options:
|
||||||
- ip tftp settings
|
- ip tftp settings
|
||||||
- ip traffic-flow
|
- ip traffic-flow
|
||||||
- ip traffic-flow ipfix
|
- ip traffic-flow ipfix
|
||||||
|
- ip traffic-flow target
|
||||||
- ip upnp
|
- ip upnp
|
||||||
- ipv6 address
|
- ipv6 address
|
||||||
- ipv6 dhcp-client
|
- ipv6 dhcp-client
|
||||||
|
|
|
@ -128,6 +128,7 @@ options:
|
||||||
- ip tftp settings
|
- ip tftp settings
|
||||||
- ip traffic-flow
|
- ip traffic-flow
|
||||||
- ip traffic-flow ipfix
|
- ip traffic-flow ipfix
|
||||||
|
- ip traffic-flow target
|
||||||
- ip upnp
|
- ip upnp
|
||||||
- ipv6 address
|
- ipv6 address
|
||||||
- ipv6 dhcp-client
|
- ipv6 dhcp-client
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue