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
- 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.
2022
2022
- mask (integer): Mask used for the subnet of all bound to the template networks. Applicable only for template network.
2023
2023
- ipv6 (object): IPv6 configuration on the VLAN
2024
+
- dhcpHandling (string): The appliance's handling of DHCP requests on this VLAN. One of: 'Run a DHCP server', 'Relay DHCP to another server' or 'Do not respond to DHCP requests'
2025
+
- dhcpLeaseTime (string): The term of DHCP leases if the appliance is running a DHCP server on this VLAN. One of: '30 minutes', '1 hour', '4 hours', '12 hours', '1 day' or '1 week'
2024
2026
- 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
2027
+
- dhcpBootOptionsEnabled (boolean): Use DHCP boot options specified in other properties
2028
+
- dhcpOptions (array): The list of DHCP options that will be included in DHCP responses. Each object in the list should have "code", "type", and "value" properties.
2025
2029
"""
2026
2030
2027
2031
kwargs.update(locals())
2028
2032
2029
2033
if'templateVlanType'inkwargs:
2030
2034
options= ['same', 'unique']
2031
2035
assertkwargs['templateVlanType'] inoptions, f'''"templateVlanType" cannot be "{kwargs['templateVlanType']}", & must be set to one of: {options}'''
2036
+
if'dhcpHandling'inkwargs:
2037
+
options= ['Do not respond to DHCP requests', 'Relay DHCP to another server', 'Run a DHCP server']
2038
+
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
731
731
- direction (string): direction to paginate, either "next" or "prev" (default) page
732
732
- event_log_end_time (string): ISO8601 Zulu/UTC time, to use in conjunction with startingAfter, to retrieve events within a time window
733
-
- 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
733
+
- 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, cellularGateway, and secureConnect
734
734
- includedEventTypes (array): A list of event types. The returned events will be filtered to only include events with these types.
735
735
- excludedEventTypes (array): A list of event types. The returned events will be filtered to exclude events with these types.
736
736
- deviceMac (string): The MAC address of the Meraki device which the list of events will be filtered with
0 commit comments