Fix IPv6 address 'from-pool' default value (#270)

* Fix ipv6 address 'from-pool' default value

* Add changelog fragment for #270
This commit is contained in:
samburney 2024-04-18 06:58:06 +09:30 committed by GitHub
parent 506b3eba39
commit 99581a00f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- api_info, api_modify - add default value for ``from-pool`` field in ``/ipv6 address`` (https://github.com/ansible-collections/community.routeros/pull/270).

View file

@ -1397,7 +1397,7 @@ PATHS = {
'comment': KeyInfo(can_disable=True, remove_value=''), 'comment': KeyInfo(can_disable=True, remove_value=''),
'disabled': KeyInfo(default=False), 'disabled': KeyInfo(default=False),
'eui-64': KeyInfo(default=False), 'eui-64': KeyInfo(default=False),
'from-pool': KeyInfo(), 'from-pool': KeyInfo(default=''),
'interface': KeyInfo(required=True), 'interface': KeyInfo(required=True),
'no-dad': KeyInfo(default=False), 'no-dad': KeyInfo(default=False),
}, },