forked from meraki/dashboard-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetworks.py
More file actions
997 lines (690 loc) · 36.6 KB
/
Copy pathnetworks.py
File metadata and controls
997 lines (690 loc) · 36.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
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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
import urllib
class ActionBatchNetworks(object):
def __init__(self):
super(ActionBatchNetworks, self).__init__()
def updateNetwork(self, networkId: str, **kwargs):
"""
**Update a network**
https://developer.cisco.com/meraki/api-v1/#!update-network
- networkId (string): Network ID
- name (string): The name of the network
- timeZone (string): The timezone of the network. For a list of allowed timezones, please see the 'TZ' column in the table in <a target='_blank' href='https://en.wikipedia.org/wiki/List_of_tz_database_time_zones'>this article.</a>
- tags (array): A list of tags to be applied to the network
- enrollmentString (string): A unique identifier which can be used for device enrollment or easy access through the Meraki SM Registration page or the Self Service Portal. Please note that changing this field may cause existing bookmarks to break.
- notes (string): Add any notes or additional information about this network here.
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure'],
'operation': 'updateNetwork'
}
resource = f'/networks/{networkId}'
body_params = ['name', 'timeZone', 'tags', 'enrollmentString', 'notes', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def deleteNetwork(self, networkId: str):
"""
**Delete a network**
https://developer.cisco.com/meraki/api-v1/#!delete-network
- networkId (string): Network ID
"""
metadata = {
'tags': ['networks', 'configure'],
'operation': 'deleteNetwork'
}
resource = f'/networks/{networkId}'
action = {
"resource": resource,
"operation": "destroy",
}
return action
def bindNetwork(self, networkId: str, configTemplateId: str, **kwargs):
"""
**Bind a network to a template.**
https://developer.cisco.com/meraki/api-v1/#!bind-network
- networkId (string): Network ID
- configTemplateId (string): The ID of the template to which the network should be bound.
- autoBind (boolean): Optional boolean indicating whether the network's switches should automatically bind to profiles of the same model. Defaults to false if left unspecified. This option only affects switch networks and switch templates. Auto-bind is not valid unless the switch template has at least one profile and has at most one profile per switch model.
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure'],
'operation': 'bindNetwork'
}
resource = f'/networks/{networkId}/bind'
body_params = ['configTemplateId', 'autoBind', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def provisionNetworkClients(self, networkId: str, clients: list, devicePolicy: str, **kwargs):
"""
**Provisions a client with a name and policy**
https://developer.cisco.com/meraki/api-v1/#!provision-network-clients
- networkId (string): Network ID
- clients (array): The array of clients to provision
- devicePolicy (string): The policy to apply to the specified client. Can be 'Group policy', 'Allowed', 'Blocked', 'Per connection' or 'Normal'. Required.
- groupPolicyId (string): The ID of the desired group policy to apply to the client. Required if 'devicePolicy' is set to "Group policy". Otherwise this is ignored.
- policiesBySecurityAppliance (object): An object, describing what the policy-connection association is for the security appliance. (Only relevant if the security appliance is actually within the network)
- policiesBySsid (object): An object, describing the policy-connection associations for each active SSID within the network. Keys should be the number of enabled SSIDs, mapping to an object describing the client's policy
"""
kwargs.update(locals())
if 'devicePolicy' in kwargs:
options = ['Allowed', 'Blocked', 'Group policy', 'Normal', 'Per connection']
assert kwargs['devicePolicy'] in options, f'''"devicePolicy" cannot be "{kwargs['devicePolicy']}", & must be set to one of: {options}'''
metadata = {
'tags': ['networks', 'configure', 'clients'],
'operation': 'provisionNetworkClients'
}
resource = f'/networks/{networkId}/clients/provision'
body_params = ['clients', 'devicePolicy', 'groupPolicyId', 'policiesBySecurityAppliance', 'policiesBySsid', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def claimNetworkDevices(self, networkId: str, serials: list):
"""
**Claim devices into a network. (Note: for recently claimed devices, it may take a few minutes for API requsts against that device to succeed)**
https://developer.cisco.com/meraki/api-v1/#!claim-network-devices
- networkId (string): Network ID
- serials (array): A list of serials of devices to claim
"""
kwargs = locals()
metadata = {
'tags': ['networks', 'configure', 'devices'],
'operation': 'claimNetworkDevices'
}
resource = f'/networks/{networkId}/devices/claim'
body_params = ['serials', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def vmxNetworkDevicesClaim(self, networkId: str, size: str):
"""
**Claim a vMX into a network**
https://developer.cisco.com/meraki/api-v1/#!vmx-network-devices-claim
- networkId (string): Network ID
- size (string): The size of the vMX you claim. It can be one of: small, medium, large, 100
"""
kwargs = locals()
if 'size' in kwargs:
options = ['100', 'large', 'medium', 'small']
assert kwargs['size'] in options, f'''"size" cannot be "{kwargs['size']}", & must be set to one of: {options}'''
metadata = {
'tags': ['networks', 'configure', 'devices', 'claim'],
'operation': 'vmxNetworkDevicesClaim'
}
resource = f'/networks/{networkId}/devices/claim/vmx'
body_params = ['size', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def removeNetworkDevices(self, networkId: str, serial: str):
"""
**Remove a single device**
https://developer.cisco.com/meraki/api-v1/#!remove-network-devices
- networkId (string): Network ID
- serial (string): The serial of a device
"""
kwargs = locals()
metadata = {
'tags': ['networks', 'configure', 'devices'],
'operation': 'removeNetworkDevices'
}
resource = f'/networks/{networkId}/devices/remove'
body_params = ['serial', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def updateNetworkFirmwareUpgrades(self, networkId: str, **kwargs):
"""
**Update firmware upgrade information for a network**
https://developer.cisco.com/meraki/api-v1/#!update-network-firmware-upgrades
- networkId (string): Network ID
- upgradeWindow (object): Upgrade window for devices in network
- timezone (string): The timezone for the network
- products (object): Contains information about the network to update
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure', 'firmwareUpgrades'],
'operation': 'updateNetworkFirmwareUpgrades'
}
resource = f'/networks/{networkId}/firmwareUpgrades'
body_params = ['upgradeWindow', 'timezone', 'products', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def createNetworkFirmwareUpgradesRollback(self, networkId: str, reasons: list, **kwargs):
"""
**Rollback a Firmware Upgrade For A Network**
https://developer.cisco.com/meraki/api-v1/#!create-network-firmware-upgrades-rollback
- networkId (string): Network ID
- reasons (array): Reasons for the rollback
- product (string): Product type to rollback (if the network is a combined network)
- time (string): Scheduled time for the rollback
- toVersion (object): Version to downgrade to (if the network has firmware flexibility)
"""
kwargs.update(locals())
if 'product' in kwargs:
options = ['appliance', 'camera', 'cellularGateway', 'switch', 'switchCatalyst', 'wireless']
assert kwargs['product'] in options, f'''"product" cannot be "{kwargs['product']}", & must be set to one of: {options}'''
metadata = {
'tags': ['networks', 'configure', 'firmwareUpgrades', 'rollbacks'],
'operation': 'createNetworkFirmwareUpgradesRollback'
}
resource = f'/networks/{networkId}/firmwareUpgrades/rollbacks'
body_params = ['product', 'time', 'reasons', 'toVersion', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def createNetworkFirmwareUpgradesStagedGroup(self, networkId: str, name: str, isDefault: bool, **kwargs):
"""
**Create a Staged Upgrade Group for a network**
https://developer.cisco.com/meraki/api-v1/#!create-network-firmware-upgrades-staged-group
- networkId (string): Network ID
- name (string): Name of the Staged Upgrade Group. Length must be 1 to 255 characters
- isDefault (boolean): Boolean indicating the default Group. Any device that does not have a group explicitly assigned will upgrade with this group
- description (string): Description of the Staged Upgrade Group. Length must be 1 to 255 characters
- assignedDevices (object): The devices and Switch Stacks assigned to the Group
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure', 'firmwareUpgrades', 'staged', 'groups'],
'operation': 'createNetworkFirmwareUpgradesStagedGroup'
}
resource = f'/networks/{networkId}/firmwareUpgrades/staged/groups'
body_params = ['name', 'description', 'isDefault', 'assignedDevices', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def deleteNetworkFirmwareUpgradesStagedGroup(self, networkId: str, groupId: str):
"""
**Delete a Staged Upgrade Group**
https://developer.cisco.com/meraki/api-v1/#!delete-network-firmware-upgrades-staged-group
- networkId (string): Network ID
- groupId (string): Group ID
"""
metadata = {
'tags': ['networks', 'configure', 'firmwareUpgrades', 'staged', 'groups'],
'operation': 'deleteNetworkFirmwareUpgradesStagedGroup'
}
resource = f'/networks/{networkId}/firmwareUpgrades/staged/groups/{groupId}'
action = {
"resource": resource,
"operation": "destroy",
}
return action
def updateNetworkFloorPlan(self, networkId: str, floorPlanId: str, **kwargs):
"""
**Update a floor plan's geolocation and other meta data**
https://developer.cisco.com/meraki/api-v1/#!update-network-floor-plan
- networkId (string): Network ID
- floorPlanId (string): Floor plan ID
- name (string): The name of your floor plan.
- center (object): The longitude and latitude of the center of your floor plan. If you want to change the geolocation data of your floor plan, either the 'center' or two adjacent corners (e.g. 'topLeftCorner' and 'bottomLeftCorner') must be specified. If 'center' is specified, the floor plan is placed over that point with no rotation. If two adjacent corners are specified, the floor plan is rotated to line up with the two specified points. The aspect ratio of the floor plan's image is preserved regardless of which corners/center are specified. (This means if that more than two corners are specified, only two corners may be used to preserve the floor plan's aspect ratio.). No two points can have the same latitude, longitude pair.
- bottomLeftCorner (object): The longitude and latitude of the bottom left corner of your floor plan.
- bottomRightCorner (object): The longitude and latitude of the bottom right corner of your floor plan.
- topLeftCorner (object): The longitude and latitude of the top left corner of your floor plan.
- topRightCorner (object): The longitude and latitude of the top right corner of your floor plan.
- imageContents (string): The file contents (a base 64 encoded string) of your new image. Supported formats are PNG, GIF, and JPG. Note that all images are saved as PNG files, regardless of the format they are uploaded in. If you upload a new image, and you do NOT specify any new geolocation fields ('center, 'topLeftCorner', etc), the floor plan will be recentered with no rotation in order to maintain the aspect ratio of your new image.
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure', 'floorPlans'],
'operation': 'updateNetworkFloorPlan'
}
resource = f'/networks/{networkId}/floorPlans/{floorPlanId}'
body_params = ['name', 'center', 'bottomLeftCorner', 'bottomRightCorner', 'topLeftCorner', 'topRightCorner', 'imageContents', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def deleteNetworkFloorPlan(self, networkId: str, floorPlanId: str):
"""
**Destroy a floor plan**
https://developer.cisco.com/meraki/api-v1/#!delete-network-floor-plan
- networkId (string): Network ID
- floorPlanId (string): Floor plan ID
"""
metadata = {
'tags': ['networks', 'configure', 'floorPlans'],
'operation': 'deleteNetworkFloorPlan'
}
resource = f'/networks/{networkId}/floorPlans/{floorPlanId}'
action = {
"resource": resource,
"operation": "destroy",
}
return action
def createNetworkGroupPolicy(self, networkId: str, name: str, **kwargs):
"""
**Create a group policy**
https://developer.cisco.com/meraki/api-v1/#!create-network-group-policy
- networkId (string): Network ID
- name (string): The name for your group policy. Required.
- scheduling (object): The schedule for the group policy. Schedules are applied to days of the week.
- bandwidth (object): The bandwidth settings for clients bound to your group policy.
- firewallAndTrafficShaping (object): The firewall and traffic shaping rules and settings for your policy.
- contentFiltering (object): The content filtering settings for your group policy
- splashAuthSettings (string): Whether clients bound to your policy will bypass splash authorization or behave according to the network's rules. Can be one of 'network default' or 'bypass'. Only available if your network has a wireless configuration.
- vlanTagging (object): The VLAN tagging settings for your group policy. Only available if your network has a wireless configuration.
- bonjourForwarding (object): The Bonjour settings for your group policy. Only valid if your network has a wireless configuration.
"""
kwargs.update(locals())
if 'splashAuthSettings' in kwargs:
options = ['bypass', 'network default']
assert kwargs['splashAuthSettings'] in options, f'''"splashAuthSettings" cannot be "{kwargs['splashAuthSettings']}", & must be set to one of: {options}'''
metadata = {
'tags': ['networks', 'configure', 'groupPolicies'],
'operation': 'createNetworkGroupPolicy'
}
resource = f'/networks/{networkId}/groupPolicies'
body_params = ['name', 'scheduling', 'bandwidth', 'firewallAndTrafficShaping', 'contentFiltering', 'splashAuthSettings', 'vlanTagging', 'bonjourForwarding', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def updateNetworkGroupPolicy(self, networkId: str, groupPolicyId: str, **kwargs):
"""
**Update a group policy**
https://developer.cisco.com/meraki/api-v1/#!update-network-group-policy
- networkId (string): Network ID
- groupPolicyId (string): Group policy ID
- name (string): The name for your group policy.
- scheduling (object): The schedule for the group policy. Schedules are applied to days of the week.
- bandwidth (object): The bandwidth settings for clients bound to your group policy.
- firewallAndTrafficShaping (object): The firewall and traffic shaping rules and settings for your policy.
- contentFiltering (object): The content filtering settings for your group policy
- splashAuthSettings (string): Whether clients bound to your policy will bypass splash authorization or behave according to the network's rules. Can be one of 'network default' or 'bypass'. Only available if your network has a wireless configuration.
- vlanTagging (object): The VLAN tagging settings for your group policy. Only available if your network has a wireless configuration.
- bonjourForwarding (object): The Bonjour settings for your group policy. Only valid if your network has a wireless configuration.
"""
kwargs.update(locals())
if 'splashAuthSettings' in kwargs:
options = ['bypass', 'network default']
assert kwargs['splashAuthSettings'] in options, f'''"splashAuthSettings" cannot be "{kwargs['splashAuthSettings']}", & must be set to one of: {options}'''
metadata = {
'tags': ['networks', 'configure', 'groupPolicies'],
'operation': 'updateNetworkGroupPolicy'
}
resource = f'/networks/{networkId}/groupPolicies/{groupPolicyId}'
body_params = ['name', 'scheduling', 'bandwidth', 'firewallAndTrafficShaping', 'contentFiltering', 'splashAuthSettings', 'vlanTagging', 'bonjourForwarding', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def deleteNetworkGroupPolicy(self, networkId: str, groupPolicyId: str):
"""
**Delete a group policy**
https://developer.cisco.com/meraki/api-v1/#!delete-network-group-policy
- networkId (string): Network ID
- groupPolicyId (string): Group policy ID
"""
metadata = {
'tags': ['networks', 'configure', 'groupPolicies'],
'operation': 'deleteNetworkGroupPolicy'
}
resource = f'/networks/{networkId}/groupPolicies/{groupPolicyId}'
action = {
"resource": resource,
"operation": "destroy",
}
return action
def createNetworkMerakiAuthUser(self, networkId: str, email: str, authorizations: list, **kwargs):
"""
**Authorize a user configured with Meraki Authentication for a network (currently supports 802.1X, splash guest, and client VPN users, and currently, organizations have a 50,000 user cap)**
https://developer.cisco.com/meraki/api-v1/#!create-network-meraki-auth-user
- networkId (string): Network ID
- email (string): Email address of the user
- authorizations (array): Authorization zones and expiration dates for the user.
- name (string): Name of the user. Only required If the user is not a Dashboard administrator.
- password (string): The password for this user account. Only required If the user is not a Dashboard administrator.
- accountType (string): Authorization type for user. Can be 'Guest' or '802.1X' for wireless networks, or 'Client VPN' for MX networks. Defaults to '802.1X'.
- emailPasswordToUser (boolean): Whether or not Meraki should email the password to user. Default is false.
- isAdmin (boolean): Whether or not the user is a Dashboard administrator.
"""
kwargs.update(locals())
if 'accountType' in kwargs:
options = ['802.1X', 'Client VPN', 'Guest']
assert kwargs['accountType'] in options, f'''"accountType" cannot be "{kwargs['accountType']}", & must be set to one of: {options}'''
metadata = {
'tags': ['networks', 'configure', 'merakiAuthUsers'],
'operation': 'createNetworkMerakiAuthUser'
}
resource = f'/networks/{networkId}/merakiAuthUsers'
body_params = ['email', 'name', 'password', 'accountType', 'emailPasswordToUser', 'isAdmin', 'authorizations', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def deleteNetworkMerakiAuthUser(self, networkId: str, merakiAuthUserId: str, **kwargs):
"""
**Delete an 802.1X RADIUS user, or deauthorize and optionally delete a splash guest or client VPN user.**
https://developer.cisco.com/meraki/api-v1/#!delete-network-meraki-auth-user
- networkId (string): Network ID
- merakiAuthUserId (string): Meraki auth user ID
- delete (boolean): If the ID supplied is for a splash guest or client VPN user, and that user is not authorized for any other networks in the organization, then also delete the user. 802.1X RADIUS users are always deleted regardless of this optional attribute.
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure', 'merakiAuthUsers'],
'operation': 'deleteNetworkMerakiAuthUser'
}
resource = f'/networks/{networkId}/merakiAuthUsers/{merakiAuthUserId}'
action = {
"resource": resource,
"operation": "destroy",
}
return action
def updateNetworkMerakiAuthUser(self, networkId: str, merakiAuthUserId: str, **kwargs):
"""
**Update a user configured with Meraki Authentication (currently, 802.1X RADIUS, splash guest, and client VPN users can be updated)**
https://developer.cisco.com/meraki/api-v1/#!update-network-meraki-auth-user
- networkId (string): Network ID
- merakiAuthUserId (string): Meraki auth user ID
- name (string): Name of the user. Only allowed If the user is not Dashboard administrator.
- password (string): The password for this user account. Only allowed If the user is not Dashboard administrator.
- emailPasswordToUser (boolean): Whether or not Meraki should email the password to user. Default is false.
- authorizations (array): Authorization zones and expiration dates for the user.
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure', 'merakiAuthUsers'],
'operation': 'updateNetworkMerakiAuthUser'
}
resource = f'/networks/{networkId}/merakiAuthUsers/{merakiAuthUserId}'
body_params = ['name', 'password', 'emailPasswordToUser', 'authorizations', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def createNetworkMqttBroker(self, networkId: str, name: str, host: str, port: int, **kwargs):
"""
**Add an MQTT broker**
https://developer.cisco.com/meraki/api-v1/#!create-network-mqtt-broker
- networkId (string): Network ID
- name (string): Name of the MQTT broker.
- host (string): Host name/IP address where the MQTT broker runs.
- port (integer): Host port though which the MQTT broker can be reached.
- security (object): Security settings of the MQTT broker.
- authentication (object): Authentication settings of the MQTT broker
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure', 'mqttBrokers'],
'operation': 'createNetworkMqttBroker'
}
resource = f'/networks/{networkId}/mqttBrokers'
body_params = ['name', 'host', 'port', 'security', 'authentication', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def updateNetworkMqttBroker(self, networkId: str, mqttBrokerId: str, **kwargs):
"""
**Update an MQTT broker**
https://developer.cisco.com/meraki/api-v1/#!update-network-mqtt-broker
- networkId (string): Network ID
- mqttBrokerId (string): Mqtt broker ID
- name (string): Name of the MQTT broker.
- host (string): Host name/IP address where the MQTT broker runs.
- port (integer): Host port though which the MQTT broker can be reached.
- security (object): Security settings of the MQTT broker.
- authentication (object): Authentication settings of the MQTT broker
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure', 'mqttBrokers'],
'operation': 'updateNetworkMqttBroker'
}
resource = f'/networks/{networkId}/mqttBrokers/{mqttBrokerId}'
body_params = ['name', 'host', 'port', 'security', 'authentication', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def deleteNetworkMqttBroker(self, networkId: str, mqttBrokerId: str):
"""
**Delete an MQTT broker**
https://developer.cisco.com/meraki/api-v1/#!delete-network-mqtt-broker
- networkId (string): Network ID
- mqttBrokerId (string): Mqtt broker ID
"""
metadata = {
'tags': ['networks', 'configure', 'mqttBrokers'],
'operation': 'deleteNetworkMqttBroker'
}
resource = f'/networks/{networkId}/mqttBrokers/{mqttBrokerId}'
action = {
"resource": resource,
"operation": "destroy",
}
return action
def updateNetworkSettings(self, networkId: str, **kwargs):
"""
**Update the settings for a network**
https://developer.cisco.com/meraki/api-v1/#!update-network-settings
- networkId (string): Network ID
- localStatusPageEnabled (boolean): Enables / disables the local device status pages (<a target='_blank' href='http://my.meraki.com/'>my.meraki.com, </a><a target='_blank' href='http://ap.meraki.com/'>ap.meraki.com, </a><a target='_blank' href='http://switch.meraki.com/'>switch.meraki.com, </a><a target='_blank' href='http://wired.meraki.com/'>wired.meraki.com</a>). Optional (defaults to false)
- remoteStatusPageEnabled (boolean): Enables / disables access to the device status page (<a target='_blank'>http://[device's LAN IP])</a>. Optional. Can only be set if localStatusPageEnabled is set to true
- localStatusPage (object): A hash of Local Status page(s)' authentication options applied to the Network.
- securePort (object): A hash of SecureConnect options applied to the Network.
- namedVlans (object): A hash of Named VLANs options applied to the Network.
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure', 'settings'],
'operation': 'updateNetworkSettings'
}
resource = f'/networks/{networkId}/settings'
body_params = ['localStatusPageEnabled', 'remoteStatusPageEnabled', 'localStatusPage', 'securePort', 'namedVlans', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action
def splitNetwork(self, networkId: str):
"""
**Split a combined network into individual networks for each type of device**
https://developer.cisco.com/meraki/api-v1/#!split-network
- networkId (string): Network ID
"""
metadata = {
'tags': ['networks', 'configure'],
'operation': 'splitNetwork'
}
resource = f'/networks/{networkId}/split'
action = {
"resource": resource,
"operation": "create",
}
return action
def unbindNetwork(self, networkId: str, **kwargs):
"""
**Unbind a network from a template.**
https://developer.cisco.com/meraki/api-v1/#!unbind-network
- networkId (string): Network ID
- retainConfigs (boolean): Optional boolean to retain all the current configs given by the template.
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure'],
'operation': 'unbindNetwork'
}
resource = f'/networks/{networkId}/unbind'
body_params = ['retainConfigs', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def createNetworkVlanProfile(self, networkId: str, name: str, vlanNames: list, vlanGroups: list, iname: str):
"""
**Create a VLAN profile for a network**
https://developer.cisco.com/meraki/api-v1/#!create-network-vlan-profile
- networkId (string): Network ID
- name (string): Name of the profile, string length must be from 1 to 255 characters
- vlanNames (array): An array of named VLANs
- vlanGroups (array): An array of VLAN groups
- iname (string): IName of the profile
"""
kwargs = locals()
metadata = {
'tags': ['networks', 'configure', 'vlanProfiles'],
'operation': 'createNetworkVlanProfile'
}
resource = f'/networks/{networkId}/vlanProfiles'
body_params = ['name', 'vlanNames', 'vlanGroups', 'iname', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def deleteNetworkVlanProfile(self, networkId: str, iname: str):
"""
**Delete a VLAN profile of a network**
https://developer.cisco.com/meraki/api-v1/#!delete-network-vlan-profile
- networkId (string): Network ID
- iname (string): Iname
"""
metadata = {
'tags': ['networks', 'configure', 'vlanProfiles'],
'operation': 'deleteNetworkVlanProfile'
}
resource = f'/networks/{networkId}/vlanProfiles/{iname}'
action = {
"resource": resource,
"operation": "destroy",
}
return action
def createNetworkWebhooksPayloadTemplate(self, networkId: str, name: str, **kwargs):
"""
**Create a webhook payload template for a network**
https://developer.cisco.com/meraki/api-v1/#!create-network-webhooks-payload-template
- networkId (string): Network ID
- name (string): The name of the new template
- body (string): The liquid template used for the body of the webhook message. Either `body` or `bodyFile` must be specified.
- headers (array): The liquid template used with the webhook headers.
- bodyFile (string): A file containing liquid template used for the body of the webhook message. Either `body` or `bodyFile` must be specified.
- headersFile (string): A file containing the liquid template used with the webhook headers.
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure', 'webhooks', 'payloadTemplates'],
'operation': 'createNetworkWebhooksPayloadTemplate'
}
resource = f'/networks/{networkId}/webhooks/payloadTemplates'
body_params = ['name', 'body', 'headers', 'bodyFile', 'headersFile', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "create",
"body": payload
}
return action
def deleteNetworkWebhooksPayloadTemplate(self, networkId: str, payloadTemplateId: str):
"""
**Destroy a webhook payload template for a network**
https://developer.cisco.com/meraki/api-v1/#!delete-network-webhooks-payload-template
- networkId (string): Network ID
- payloadTemplateId (string): Payload template ID
"""
metadata = {
'tags': ['networks', 'configure', 'webhooks', 'payloadTemplates'],
'operation': 'deleteNetworkWebhooksPayloadTemplate'
}
resource = f'/networks/{networkId}/webhooks/payloadTemplates/{payloadTemplateId}'
action = {
"resource": resource,
"operation": "destroy",
}
return action
def updateNetworkWebhooksPayloadTemplate(self, networkId: str, payloadTemplateId: str, **kwargs):
"""
**Update a webhook payload template for a network**
https://developer.cisco.com/meraki/api-v1/#!update-network-webhooks-payload-template
- networkId (string): Network ID
- payloadTemplateId (string): Payload template ID
- name (string): The name of the template
- body (string): The liquid template used for the body of the webhook message.
- headers (array): The liquid template used with the webhook headers.
- bodyFile (string): A file containing liquid template used for the body of the webhook message.
- headersFile (string): A file containing the liquid template used with the webhook headers.
"""
kwargs.update(locals())
metadata = {
'tags': ['networks', 'configure', 'webhooks', 'payloadTemplates'],
'operation': 'updateNetworkWebhooksPayloadTemplate'
}
resource = f'/networks/{networkId}/webhooks/payloadTemplates/{payloadTemplateId}'
body_params = ['name', 'body', 'headers', 'bodyFile', 'headersFile', ]
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
action = {
"resource": resource,
"operation": "update",
"body": payload
}
return action