mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-23 18:28:42 +02:00
- doh-max-concurrent-queries - doh-max-server-connections - doh-timeout The parameters mentioned above seem to be added in version 7.8 as far as I could tell from the changelogs. Co-authored-by: Johannes Münch <git@washiza.eu>
This commit is contained in:
parent
92c6226394
commit
dac3b79a17
2 changed files with 7 additions and 0 deletions
2
changelogs/fragments/235-add-missing-dns-attributes.yml
Normal file
2
changelogs/fragments/235-add-missing-dns-attributes.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- api_info, api_modify - add missing DoH parameters ``doh-max-concurrent-queries``, ``doh-max-server-connections``, and ``doh-timeout`` to the ``ip dns`` path (https://github.com/ansible-collections/community.routeros/issues/230, https://github.com/ansible-collections/community.routeros/pull/235)
|
|
@ -1873,6 +1873,11 @@ PATHS = {
|
||||||
unversioned=VersionedAPIData(
|
unversioned=VersionedAPIData(
|
||||||
single_value=True,
|
single_value=True,
|
||||||
fully_understood=True,
|
fully_understood=True,
|
||||||
|
versioned_fields=[
|
||||||
|
([('7.8', '>=')], 'doh-max-concurrent-queries', KeyInfo(default=50)),
|
||||||
|
([('7.8', '>=')], 'doh-max-server-connections', KeyInfo(default=5)),
|
||||||
|
([('7.8', '>=')], 'doh-timeout', KeyInfo(default='5s')),
|
||||||
|
],
|
||||||
fields={
|
fields={
|
||||||
'allow-remote-requests': KeyInfo(),
|
'allow-remote-requests': KeyInfo(),
|
||||||
'cache-max-ttl': KeyInfo(default='1w'),
|
'cache-max-ttl': KeyInfo(default='1w'),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue