mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-24 18:58:41 +02:00
Support DHCP matching type added in RouterOS 7.16 (#321)
This commit is contained in:
parent
c864078549
commit
5adc664b04
2 changed files with 5 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- api_info, api_modify - add support for the ``matching-type`` property in ``ip dhcp-server matcher`` introduced by RouterOS 7.16 (https://github.com/ansible-collections/community.routeros/pull/321).
|
|
@ -2798,6 +2798,9 @@ PATHS = {
|
||||||
('7.4', '>=', VersionedAPIData(
|
('7.4', '>=', VersionedAPIData(
|
||||||
fully_understood=True,
|
fully_understood=True,
|
||||||
primary_keys=('name', ),
|
primary_keys=('name', ),
|
||||||
|
versioned_fields=[
|
||||||
|
([('7.16', '>=')], 'matching-type', KeyInfo()),
|
||||||
|
],
|
||||||
fields={
|
fields={
|
||||||
'address-pool': KeyInfo(default='none'),
|
'address-pool': KeyInfo(default='none'),
|
||||||
'code': KeyInfo(required=True),
|
'code': KeyInfo(required=True),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue