You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
445
+
- direction (string): direction to paginate, either "next" (default) or "prev" page
446
+
- includedEventTypes (array): A list of event types. The returned events will be filtered to only include events with these types.
447
+
- excludedEventTypes (array): A list of event types. The returned events will be filtered to exclude events with these types.
448
+
- sensorSerial (string): The serial of the sensor device which the list of events will be filtered with
449
+
- gatewaySerial (string): The serial of the environmental gateway device which the list of events will be filtered with
450
+
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 1000. Default is 10.
451
+
- 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.
452
+
- 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.
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
445
497
- direction (string): direction to paginate, either "next" or "prev" (default) page
498
+
- event_log_end_time (string): ISO8601 Zulu/UTC time, to use in conjunction with startingAfter, to retrieve events within a time window
446
499
- productType (string): The product type to fetch events for. This parameter is required for networks with multiple device types. Valid types are wireless, appliance, switch, systemsManager, camera, and cellularGateway
447
500
- includedEventTypes (array): A list of event types. The returned events will be filtered to only include events with these types.
448
501
- excludedEventTypes (array): A list of event types. The returned events will be filtered to exclude events with these types.
**List the splash or RADIUS users configured under Meraki Authentication for a network**
820
+
**List the users configured under Meraki Authentication for a network (splash guest or RADIUS users for a wireless network, or client VPN users for a wired network)**
**Create a user configured with Meraki Authentication for a network (currently supports 802.1Xand Splash Guest users, and currently, organizations have a 50,000 user cap)**
836
+
**Create 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)**
- password (string): The password for this user account
790
843
- authorizations (array): Authorization zones and expiration dates for the user.
791
-
- accountType (string): Authorization type for user. Can be either 'Guest' or '802.1X'. Defaults to '802.1X'.
844
+
- accountType (string): Authorization type for user. Can be 'Guest' or '802.1X' for wireless networks, or 'Client VPN' for wired networks. Defaults to '802.1X'.
792
845
- emailPasswordToUser (boolean): Whether or not Meraki should email the password to user. Default is false.
793
846
"""
794
847
795
848
kwargs.update(locals())
796
849
797
850
if'accountType'inkwargs:
798
-
options= ['Guest', '802.1X']
851
+
options= ['Guest', '802.1X', 'Client VPN']
799
852
assertkwargs['accountType'] inoptions, f'''"accountType" cannot be "{kwargs['accountType']}", & must be set to one of: {options}'''
0 commit comments