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
- rfProfileId (string): The ID of an RF profile to assign to the device. If the value of this parameter is null, the appropriate basic RF profile (indoor or outdoor) will be assigned to the device. Assigning an RF profile will clear ALL manually configured overrides on the device (channel width, channel, power).
113
+
- twoFourGhzSettings (object): Manual radio settings for 2.4 GHz.
114
+
- fiveGhzSettings (object): Manual radio settings for 5 GHz.
- wpaEncryptionMode (string): The types of WPA encryption. ('WPA1 and WPA2', 'WPA2 only', 'WPA3 Transition Mode' or 'WPA3 only'). This param is only valid if (1) the authMode is 'psk' & the encryptionMode is 'wpa' OR (2) the authMode is '8021x-meraki' OR (3) the authMode is '8021x-radius'
1276
1441
- visible (boolean): Boolean indicating whether the MX should advertise or hide this SSID.
1277
1442
- dhcpEnforcedDeauthentication (object): DHCP Enforced Deauthentication enables the disassociation of wireless clients in addition to Mandatory DHCP. This param is only valid on firmware versions >= MX 17.0 where the associated LAN has Mandatory DHCP Enabled
1443
+
- dot11w (object): The current setting for Protected Management Frames (802.11w).
- t0 (string): The beginning of the timespan for the data. The maximum lookback period is 365 days from today.
2420
+
- t1 (string): The end of the timespan for the data. t1 can be a maximum of 14 days after t0.
2421
+
- 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 14 days. The default is 1 day.
- notes (string): The notes for the device. String. Limited to 255 characters.
42
42
- moveMapMarker (boolean): Whether or not to set the latitude and longitude of a device based on the new address. Only applies when lat and lng are not specified.
43
-
- switchProfileId (string): The ID of a switch profile to bind to the device (for available switch profiles, see the 'Switch Profiles' endpoint). Use null to unbind the switch device from the current profile. For a device to be bindable to a switch profile, it must (1) be a switch, and (2) belong to a network that is bound to a configuration template.
43
+
- switchProfileId (string): The ID of a switch template to bind to the device (for available switch templates, see the 'Switch Templates' endpoint). Use null to unbind the switch device from the current profile. For a device to be bindable to a switch template, it must (1) be a switch, and (2) belong to a network that is bound to a configuration template.
44
44
- floorPlanId (string): The floor plan to associate to this device. null disassociates the device from the floorplan.
- t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
282
282
- 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 1 day.
283
283
- resolution (integer): The time resolution in seconds for returned data. The valid resolutions are: 60, 600, 3600, 86400. The default is 60.
284
-
- uplink (string): The WAN uplink used to obtain the requested stats. Valid uplinks are wan1, wan2, cellular. The default is wan1.
284
+
- uplink (string): The WAN uplink used to obtain the requested stats. Valid uplinks are wan1, wan2, wan3, cellular. The default is wan1.
285
285
"""
286
286
287
287
kwargs.update(locals())
288
288
289
289
if'uplink'inkwargs:
290
-
options= ['cellular', 'wan1', 'wan2']
290
+
options= ['cellular', 'wan1', 'wan2', 'wan3']
291
291
assertkwargs['uplink'] inoptions, f'''"uplink" cannot be "{kwargs['uplink']}", & must be set to one of: {options}'''
0 commit comments