Skip to content

Commit f9d0273

Browse files
Fixed issue meraki#131
Fixed improper encodings as a result of non-UTF-8 characters in OpenAPI spec docstrings. The docstrings in the spec will be fixed separately, so anyone generating their own version of the SDK should note the changes in this commit.
1 parent 8e941e8 commit f9d0273

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

meraki/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
SUPPRESS_LOGGING, SIMULATE_API_CALLS, BE_GEO_ID, MERAKI_PYTHON_SDK_CALLER
2121
)
2222

23-
__version__ = '1.4.1'
23+
__version__ = '1.4.2'
2424

2525
class DashboardAPI(object):
2626
"""

meraki/api/appliance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1479,7 +1479,7 @@ def updateOrganizationApplianceSecurityIntrusion(self, organizationId: str, allo
14791479
https://developer.cisco.com/meraki/api-v1/#!update-organization-appliance-security-intrusion
14801480
14811481
- organizationId (string): (required)
1482-
- allowedRules (array): Sets a list of specific SNORT® signatures to allow
1482+
- allowedRules (array): Sets a list of specific SNORT(r) signatures to allow
14831483
"""
14841484

14851485
kwargs = locals()

meraki/api/switch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@ def createNetworkSwitchRoutingMulticastRendezvousPoint(self, networkId: str, int
11481148
https://developer.cisco.com/meraki/api-v1/#!create-network-switch-routing-multicast-rendezvous-point
11491149
11501150
- networkId (string): (required)
1151-
- interfaceIp (string): The IP address of the interface where the RP needs to be created.
1151+
- interfaceIp (string): The IP address of the interface where the RP needs to be created.
11521152
- multicastGroup (string): 'Any', or the IP address of a multicast group
11531153
"""
11541154

meraki/api/wireless.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ def updateNetworkWirelessSsid(self, networkId: str, number: str, **kwargs):
11021102
- visible (boolean): Boolean indicating whether APs should advertise or hide this SSID. APs will only broadcast this SSID if set to true
11031103
- availableOnAllAps (boolean): Boolean indicating whether all APs should broadcast the SSID or if it should be restricted to APs matching any availability tags. Can only be false if the SSID has availability tags.
11041104
- availabilityTags (array): Accepts a list of tags for this SSID. If availableOnAllAps is false, then the SSID will only be broadcast by APs with tags matching any of the tags in this list.
1105-
- mandatoryDhcpEnabled (boolean): If true, Mandatory DHCP will enforce that clients connecting to this SSID must use the IP address assigned by the DHCP server. Clients who use a static IP address won’t be able to associate.
1105+
- mandatoryDhcpEnabled (boolean): If true, Mandatory DHCP will enforce that clients connecting to this SSID must use the IP address assigned by the DHCP server. Clients who use a static IP address won't be able to associate.
11061106
"""
11071107

11081108
kwargs.update(locals())

0 commit comments

Comments
 (0)