Skip to content

Commit

Permalink
Add support for '/system resource irq rps' path
Browse files Browse the repository at this point in the history
  • Loading branch information
vint2k committed Jun 24, 2024
1 parent dc7fa11 commit fd40953
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 @@ -4966,6 +4966,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 @@ -227,6 +227,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 @@ -236,6 +236,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 fd40953

Please sign in to comment.