Skip to content

Commit

Permalink
Add support for '/system resource irq rps' path (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
vint2k authored Jun 27, 2024
1 parent 91fef4e commit a6d2580
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/295-add_system_resource_irq_rps_path.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- api_info, api_modify - add missing path ``/system resource irq rps`` (https://github.com/ansible-collections/community.routeros/pull/295).
10 changes: 10 additions & 0 deletions plugins/module_utils/_api_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -5004,6 +5004,16 @@ def join_path(path):
},
),
),
('system', 'resource', 'irq', 'rps'): APIData(
unversioned=VersionedAPIData(
fully_understood=True,
primary_keys=('name',),
fields={
'disabled': KeyInfo(default=False),
'name': KeyInfo(),
},
),
),
('system', 'scheduler'): APIData(
unversioned=VersionedAPIData(
fully_understood=True,
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/api_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@
- system ntp client servers
- system ntp server
- system package update
- system resource irq rps
- system routerboard settings
- system scheduler
- system script
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/api_modify.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@
- system ntp client servers
- system ntp server
- system package update
- system resource irq rps
- system routerboard settings
- system scheduler
- system script
Expand Down

0 comments on commit a6d2580

Please sign in to comment.