Skip to content

Commit

Permalink
Merge pull request #127 from ns1/PENG-4708/python_sdk_update
Browse files Browse the repository at this point in the history
add new monitoring permissions support
  • Loading branch information
hmodi-ns1 authored Jul 24, 2024
2 parents 65954a7 + 1a6471d commit 04d4601
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.21.0 (July 19th, 2024)

ENHANCEMENTS:
* Adds support for new split monitoring permissions create_jobs, update_jobs and delete_jobs

## 0.20.0 (June 19th, 2024)

ENHANCEMENTS:
Expand Down
2 changes: 1 addition & 1 deletion ns1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
from .config import Config

version = "0.20.0"
version = "0.21.0"


class NS1:
Expand Down
6 changes: 6 additions & 0 deletions ns1/rest/permissions.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
},
"monitoring": {
"manage_jobs": False,
"create_jobs": False,
"update_jobs": False,
"delete_jobs": False,
"manage_lists": False,
"view_jobs": False,
},
Expand Down Expand Up @@ -50,6 +53,9 @@
},
"monitoring": {
"manage_jobs": False,
"create_jobs": False,
"update_jobs": False,
"delete_jobs": False,
"manage_lists": False,
"view_jobs": False,
},
Expand Down

0 comments on commit 04d4601

Please sign in to comment.