mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-22 09:53:32 +02:00
Add missing fields in "system package update" (#263)
Signed-off-by: Michael Hanselmann <public@hansmi.ch>
This commit is contained in:
parent
f616004caf
commit
ffd5a6370c
2 changed files with 5 additions and 0 deletions
2
changelogs/fragments/263-sys-pkg-update.yml
Normal file
2
changelogs/fragments/263-sys-pkg-update.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- api_info, api_modify - add read-only fields ``installed-version``, ``latest-version`` and ``status`` in ``system package update`` (https://github.com/ansible-collections/community.routeros/pull/263).
|
|
@ -3508,6 +3508,9 @@ PATHS = {
|
||||||
fully_understood=True,
|
fully_understood=True,
|
||||||
fields={
|
fields={
|
||||||
'channel': KeyInfo(default='stable'),
|
'channel': KeyInfo(default='stable'),
|
||||||
|
'installed-version': KeyInfo(read_only=True),
|
||||||
|
'latest-version': KeyInfo(read_only=True),
|
||||||
|
'status': KeyInfo(read_only=True),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue