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
assertkwargs['urlCategoryListSize'] inoptions, f'''"urlCategoryListSize" cannot be "{kwargs['urlCategoryListSize']}", & must be set to one of: {options}'''
assertkwargs['clientTrackingMethod'] inoptions, f'''"clientTrackingMethod" cannot be "{kwargs['clientTrackingMethod']}", & must be set to one of: {options}'''
1156
1156
if'deploymentMode'inkwargs:
1157
-
options= ['routed', 'passthrough']
1157
+
options= ['passthrough', 'routed']
1158
1158
assertkwargs['deploymentMode'] inoptions, f'''"deploymentMode" cannot be "{kwargs['deploymentMode']}", & must be set to one of: {options}'''
- subnet (string): The subnet of the single LAN configuration
1200
1200
- applianceIp (string): The appliance IP address of the single LAN
1201
1201
- ipv6 (object): IPv6 configuration on the VLAN
1202
+
- mandatoryDhcp (object): Mandatory DHCP will enforce that clients connecting to this LAN must use the IP address assigned by the DHCP server. Clients who use a static IP address won't be able to associate. Only available on firmware versions 17.0 and above
- encryptionMode (string): The psk encryption mode for the SSID ('wep' or 'wpa'). This param is only valid if the authMode is 'psk'.
1274
1275
- 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'
1275
1276
- visible (boolean): Boolean indicating whether the MX should advertise or hide this SSID.
1277
+
- 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
- cidr (string): CIDR of the pool of subnets. Applicable only for template network. Each network bound to the template will automatically pick a subnet from this pool to build its own VLAN.
1794
1797
- mask (integer): Mask used for the subnet of all bound to the template networks. Applicable only for template network.
1795
1798
- ipv6 (object): IPv6 configuration on the VLAN
1799
+
- mandatoryDhcp (object): Mandatory DHCP will enforce that clients connecting to this VLAN must use the IP address assigned by the DHCP server. Clients who use a static IP address won't be able to associate. Only available on firmware versions 17.0 and above
- cidr (string): CIDR of the pool of subnets. Applicable only for template network. Each network bound to the template will automatically pick a subnet from this pool to build its own VLAN.
1907
1911
- mask (integer): Mask used for the subnet of all bound to the template networks. Applicable only for template network.
1908
1912
- ipv6 (object): IPv6 configuration on the VLAN
1913
+
- mandatoryDhcp (object): Mandatory DHCP will enforce that clients connecting to this VLAN must use the IP address assigned by the DHCP server. Clients who use a static IP address won't be able to associate. Only available on firmware versions 17.0 and above
1909
1914
"""
1910
1915
1911
1916
kwargs.update(locals())
1912
1917
1913
1918
if'dhcpHandling'inkwargs:
1914
-
options= ['Run a DHCP server', 'Relay DHCP to another server', 'Do not respond to DHCP requests']
1919
+
options= ['Do not respond to DHCP requests', 'Relay DHCP to another server', 'Run a DHCP server']
1915
1920
assertkwargs['dhcpHandling'] inoptions, f'''"dhcpHandling" cannot be "{kwargs['dhcpHandling']}", & must be set to one of: {options}'''
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
18
+
- direction (string): direction to paginate, either "next" (default) or "prev" page
19
+
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 1000. Default is 1000.
20
+
- 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.
21
+
- 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.
22
+
- invalidated (boolean): Filter for licenses that are invalidated
23
+
- expired (boolean): Filter for licenses that are expired
0 commit comments