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
385 lines (276 loc) · 17.1 KB
/
Copy pathsensor.py
File metadata and controls
385 lines (276 loc) · 17.1 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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
import urllib
class Sensor(object):
def __init__(self, session):
super(Sensor, self).__init__()
self._session = session
def getDeviceSensorRelationships(self, serial: str):
"""
**List the sensor roles for a given sensor or camera device.**
https://developer.cisco.com/meraki/api-v1/#!get-device-sensor-relationships
- serial (string): Serial
"""
metadata = {
'tags': ['sensor', 'configure', 'relationships'],
'operation': 'getDeviceSensorRelationships'
}
serial = urllib.parse.quote(str(serial), safe='')
resource = f'/devices/{serial}/sensor/relationships'
return self._session.get(metadata, resource)
def updateDeviceSensorRelationships(self, serial: str, **kwargs):
"""
**Assign one or more sensor roles to a given sensor or camera device.**
https://developer.cisco.com/meraki/api-v1/#!update-device-sensor-relationships
- serial (string): Serial
- livestream (object): A role defined between an MT sensor and an MV camera that adds the camera's livestream to the sensor's details page. Snapshots from the camera will also appear in alert notifications that the sensor triggers.
"""
kwargs.update(locals())
metadata = {
'tags': ['sensor', 'configure', 'relationships'],
'operation': 'updateDeviceSensorRelationships'
}
serial = urllib.parse.quote(str(serial), safe='')
resource = f'/devices/{serial}/sensor/relationships'
body_params = ['livestream', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
return self._session.put(metadata, resource, payload)
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): Network ID
"""
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): Network ID
- 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): Network ID
"""
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): Network ID
- 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 receive 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): Network ID
- id (string): ID
"""
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): Network ID
- id (string): ID
- 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 receive 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): Network ID
- id (string): ID
"""
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 getNetworkSensorMqttBrokers(self, networkId: str):
"""
**List the sensor settings of all MQTT brokers for this network**
https://developer.cisco.com/meraki/api-v1/#!get-network-sensor-mqtt-brokers
- networkId (string): Network ID
"""
metadata = {
'tags': ['sensor', 'configure', 'mqttBrokers'],
'operation': 'getNetworkSensorMqttBrokers'
}
networkId = urllib.parse.quote(str(networkId), safe='')
resource = f'/networks/{networkId}/sensor/mqttBrokers'
return self._session.get(metadata, resource)
def getNetworkSensorMqttBroker(self, networkId: str, mqttBrokerId: str):
"""
**Return the sensor settings of an MQTT broker**
https://developer.cisco.com/meraki/api-v1/#!get-network-sensor-mqtt-broker
- networkId (string): Network ID
- mqttBrokerId (string): Mqtt broker ID
"""
metadata = {
'tags': ['sensor', 'configure', 'mqttBrokers'],
'operation': 'getNetworkSensorMqttBroker'
}
networkId = urllib.parse.quote(str(networkId), safe='')
mqttBrokerId = urllib.parse.quote(str(mqttBrokerId), safe='')
resource = f'/networks/{networkId}/sensor/mqttBrokers/{mqttBrokerId}'
return self._session.get(metadata, resource)
def updateNetworkSensorMqttBroker(self, networkId: str, mqttBrokerId: str, enabled: bool):
"""
**Update the sensor settings of an MQTT broker**
https://developer.cisco.com/meraki/api-v1/#!update-network-sensor-mqtt-broker
- networkId (string): Network ID
- mqttBrokerId (string): Mqtt broker ID
- enabled (boolean): Set to true to enable MQTT broker for sensor network
"""
kwargs = locals()
metadata = {
'tags': ['sensor', 'configure', 'mqttBrokers'],
'operation': 'updateNetworkSensorMqttBroker'
}
networkId = urllib.parse.quote(str(networkId), safe='')
mqttBrokerId = urllib.parse.quote(str(mqttBrokerId), safe='')
resource = f'/networks/{networkId}/sensor/mqttBrokers/{mqttBrokerId}'
body_params = ['enabled', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
return self._session.put(metadata, resource, payload)
def getNetworkSensorRelationships(self, networkId: str):
"""
**List the sensor roles for devices in a given network**
https://developer.cisco.com/meraki/api-v1/#!get-network-sensor-relationships
- networkId (string): Network ID
"""
metadata = {
'tags': ['sensor', 'configure', 'relationships'],
'operation': 'getNetworkSensorRelationships'
}
networkId = urllib.parse.quote(str(networkId), safe='')
resource = f'/networks/{networkId}/sensor/relationships'
return self._session.get(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): Organization ID
- 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): Organization ID
- 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.
- 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)