forked from meraki/dashboard-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsensor.py
More file actions
255 lines (186 loc) · 12.6 KB
/
Copy pathsensor.py
File metadata and controls
255 lines (186 loc) · 12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
import urllib
class Sensor(object):
def __init__(self, session):
super(Sensor, self).__init__()
self._session = session
def getNetworkSensorAlertsCurrentOverviewByMetric(self, networkId: str):
"""
**Return an overview of currently alerting sensors by metric**
https://developer.cisco.com/meraki/api-v1/#!get-network-sensor-alerts-current-overview-by-metric
- networkId (string): (required)
"""
metadata = {
'tags': ['sensor', 'monitor', 'alerts', 'current', 'overview', 'byMetric'],
'operation': 'getNetworkSensorAlertsCurrentOverviewByMetric'
}
networkId = urllib.parse.quote(str(networkId), safe='')
resource = f'/networks/{networkId}/sensor/alerts/current/overview/byMetric'
return self._session.get(metadata, resource)
def getNetworkSensorAlertsOverviewByMetric(self, networkId: str, **kwargs):
"""
**Return an overview of alert occurrences over a timespan, by metric**
https://developer.cisco.com/meraki/api-v1/#!get-network-sensor-alerts-overview-by-metric
- networkId (string): (required)
- t0 (string): The beginning of the timespan for the data. The maximum lookback period is 365 days from today.
- t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
- timespan (number): The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 7 days.
- interval (integer): The time interval in seconds for returned data. The valid intervals are: 86400, 604800. The default is 604800.
"""
kwargs.update(locals())
metadata = {
'tags': ['sensor', 'monitor', 'alerts', 'overview', 'byMetric'],
'operation': 'getNetworkSensorAlertsOverviewByMetric'
}
networkId = urllib.parse.quote(str(networkId), safe='')
resource = f'/networks/{networkId}/sensor/alerts/overview/byMetric'
query_params = ['t0', 't1', 'timespan', 'interval', ]
params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params}
return self._session.get(metadata, resource, params)
def getNetworkSensorAlertsProfiles(self, networkId: str):
"""
**Lists all sensor alert profiles for a network.**
https://developer.cisco.com/meraki/api-v1/#!get-network-sensor-alerts-profiles
- networkId (string): (required)
"""
metadata = {
'tags': ['sensor', 'configure', 'alerts', 'profiles'],
'operation': 'getNetworkSensorAlertsProfiles'
}
networkId = urllib.parse.quote(str(networkId), safe='')
resource = f'/networks/{networkId}/sensor/alerts/profiles'
return self._session.get(metadata, resource)
def createNetworkSensorAlertsProfile(self, networkId: str, name: str, conditions: list, **kwargs):
"""
**Creates a sensor alert profile for a network.**
https://developer.cisco.com/meraki/api-v1/#!create-network-sensor-alerts-profile
- networkId (string): (required)
- name (string): Name of the sensor alert profile.
- conditions (array): List of conditions that will cause the profile to send an alert.
- schedule (object): The sensor schedule to use with the alert profile.
- recipients (object): List of recipients that will recieve the alert.
- serials (array): List of device serials assigned to this sensor alert profile.
"""
kwargs.update(locals())
metadata = {
'tags': ['sensor', 'configure', 'alerts', 'profiles'],
'operation': 'createNetworkSensorAlertsProfile'
}
networkId = urllib.parse.quote(str(networkId), safe='')
resource = f'/networks/{networkId}/sensor/alerts/profiles'
body_params = ['name', 'schedule', 'conditions', 'recipients', 'serials', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
return self._session.post(metadata, resource, payload)
def getNetworkSensorAlertsProfile(self, networkId: str, id: str):
"""
**Show details of a sensor alert profile for a network.**
https://developer.cisco.com/meraki/api-v1/#!get-network-sensor-alerts-profile
- networkId (string): (required)
- id (string): (required)
"""
metadata = {
'tags': ['sensor', 'configure', 'alerts', 'profiles'],
'operation': 'getNetworkSensorAlertsProfile'
}
networkId = urllib.parse.quote(str(networkId), safe='')
id = urllib.parse.quote(str(id), safe='')
resource = f'/networks/{networkId}/sensor/alerts/profiles/{id}'
return self._session.get(metadata, resource)
def updateNetworkSensorAlertsProfile(self, networkId: str, id: str, **kwargs):
"""
**Updates a sensor alert profile for a network.**
https://developer.cisco.com/meraki/api-v1/#!update-network-sensor-alerts-profile
- networkId (string): (required)
- id (string): (required)
- name (string): Name of the sensor alert profile.
- schedule (object): The sensor schedule to use with the alert profile.
- conditions (array): List of conditions that will cause the profile to send an alert.
- recipients (object): List of recipients that will recieve the alert.
- serials (array): List of device serials assigned to this sensor alert profile.
"""
kwargs.update(locals())
metadata = {
'tags': ['sensor', 'configure', 'alerts', 'profiles'],
'operation': 'updateNetworkSensorAlertsProfile'
}
networkId = urllib.parse.quote(str(networkId), safe='')
id = urllib.parse.quote(str(id), safe='')
resource = f'/networks/{networkId}/sensor/alerts/profiles/{id}'
body_params = ['name', 'schedule', 'conditions', 'recipients', 'serials', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
return self._session.put(metadata, resource, payload)
def deleteNetworkSensorAlertsProfile(self, networkId: str, id: str):
"""
**Deletes a sensor alert profile from a network.**
https://developer.cisco.com/meraki/api-v1/#!delete-network-sensor-alerts-profile
- networkId (string): (required)
- id (string): (required)
"""
metadata = {
'tags': ['sensor', 'configure', 'alerts', 'profiles'],
'operation': 'deleteNetworkSensorAlertsProfile'
}
networkId = urllib.parse.quote(str(networkId), safe='')
id = urllib.parse.quote(str(id), safe='')
resource = f'/networks/{networkId}/sensor/alerts/profiles/{id}'
return self._session.delete(metadata, resource)
def getOrganizationSensorReadingsHistory(self, organizationId: str, total_pages=1, direction='next', **kwargs):
"""
**Return all reported readings from sensors in a given timespan, sorted by timestamp**
https://developer.cisco.com/meraki/api-v1/#!get-organization-sensor-readings-history
- organizationId (string): (required)
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
- direction (string): direction to paginate, either "next" (default) or "prev" page
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 1000. Default is 1000.
- startingAfter (string): A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- endingBefore (string): A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- t0 (string): The beginning of the timespan for the data. The maximum lookback period is 365 days and 6 hours from today.
- t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0.
- timespan (number): The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 7 days. The default is 2 hours.
- networkIds (array): Optional parameter to filter readings by network.
- serials (array): Optional parameter to filter readings by sensor.
- metrics (array): Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are battery, button, door, humidity, indoorAirQuality, noise, pm25, temperature, tvoc, and water.
"""
kwargs.update(locals())
metadata = {
'tags': ['sensor', 'monitor', 'readings', 'history'],
'operation': 'getOrganizationSensorReadingsHistory'
}
organizationId = urllib.parse.quote(str(organizationId), safe='')
resource = f'/organizations/{organizationId}/sensor/readings/history'
query_params = ['perPage', 'startingAfter', 'endingBefore', 't0', 't1', 'timespan', 'networkIds', 'serials', 'metrics', ]
params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params}
array_params = ['networkIds', 'serials', 'metrics', ]
for k, v in kwargs.items():
if k.strip() in array_params:
params[f'{k.strip()}[]'] = kwargs[f'{k}']
params.pop(k.strip())
return self._session.get_pages(metadata, resource, params, total_pages, direction)
def getOrganizationSensorReadingsLatest(self, organizationId: str, total_pages=1, direction='next', **kwargs):
"""
**Return the latest available reading for each metric from each sensor, sorted by sensor serial**
https://developer.cisco.com/meraki/api-v1/#!get-organization-sensor-readings-latest
- organizationId (string): (required)
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
- direction (string): direction to paginate, either "next" (default) or "prev" page
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 100. Default is 100.
- startingAfter (string): A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- endingBefore (string): A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- networkIds (array): Optional parameter to filter readings by network.
- serials (array): Optional parameter to filter readings by sensor.
- metrics (array): Types of sensor readings to retrieve. If no metrics are supplied, all available types of readings will be retrieved. Allowed values are battery, button, door, humidity, indoorAirQuality, noise, pm25, temperature, tvoc, and water.
"""
kwargs.update(locals())
metadata = {
'tags': ['sensor', 'monitor', 'readings', 'latest'],
'operation': 'getOrganizationSensorReadingsLatest'
}
organizationId = urllib.parse.quote(str(organizationId), safe='')
resource = f'/organizations/{organizationId}/sensor/readings/latest'
query_params = ['perPage', 'startingAfter', 'endingBefore', 'networkIds', 'serials', 'metrics', ]
params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params}
array_params = ['networkIds', 'serials', 'metrics', ]
for k, v in kwargs.items():
if k.strip() in array_params:
params[f'{k.strip()}[]'] = kwargs[f'{k}']
params.pop(k.strip())
return self._session.get_pages(metadata, resource, params, total_pages, direction)