We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 280c216 + 5576b44 commit bbad1a0Copy full SHA for bbad1a0
1 file changed
ns1/rest/monitoring.py
@@ -17,11 +17,22 @@ class Monitors(resource.BaseResource):
17
"policy",
18
"notes",
19
"rules",
20
- "notify_delay",
21
"notify_list",
22
]
23
- INT_FIELDS = ["frequency", "notify_repeat"]
24
- BOOL_FIELDS = ["active", "rapid_recheck", "notify_regional"]
+
+ INT_FIELDS = [
+ "frequency",
25
+ "notify_delay",
26
+ "notify_repeat"
27
+ ]
28
29
+ BOOL_FIELDS = [
30
+ "active",
31
+ "rapid_recheck",
32
+ "notify_regional",
33
+ "mute",
34
+ "notify_failback"
35
36
37
def list(self, callback=None, errback=None):
38
return self._make_request(
0 commit comments