class Wireless(object): def __init__(self, session): super(Wireless, self).__init__() self._session = session def getDeviceWirelessBluetoothSettings(self, serial: str): """ **Return the bluetooth settings for a wireless device** https://developer.cisco.com/meraki/api-v1/#!get-device-wireless-bluetooth-settings - serial (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'bluetooth', 'settings'], 'operation': 'getDeviceWirelessBluetoothSettings' } resource = f'/devices/{serial}/wireless/bluetooth/settings' return self._session.get(metadata, resource) def updateDeviceWirelessBluetoothSettings(self, serial: str, **kwargs): """ **Update the bluetooth settings for a wireless device** https://developer.cisco.com/meraki/api-v1/#!update-device-wireless-bluetooth-settings - serial (string): (required) - uuid (string): Desired UUID of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value. - major (integer): Desired major value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value. - minor (integer): Desired minor value of the beacon. If the value is set to null it will reset to Dashboard's automatically generated value. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'bluetooth', 'settings'], 'operation': 'updateDeviceWirelessBluetoothSettings' } resource = f'/devices/{serial}/wireless/bluetooth/settings' body_params = ['uuid', 'major', 'minor', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getDeviceWirelessConnectionStats(self, serial: str, **kwargs): """ **Aggregated connectivity info for a given AP on this network** https://developer.cisco.com/meraki/api-v1/#!get-device-wireless-connection-stats - serial (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'connectionStats'], 'operation': 'getDeviceWirelessConnectionStats' } resource = f'/devices/{serial}/wireless/connectionStats' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getDeviceWirelessLatencyStats(self, serial: str, **kwargs): """ **Aggregated latency info for a given AP on this network** https://developer.cisco.com/meraki/api-v1/#!get-device-wireless-latency-stats - serial (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag - fields (string): Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'latencyStats'], 'operation': 'getDeviceWirelessLatencyStats' } resource = f'/devices/{serial}/wireless/latencyStats' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', 'fields', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getDeviceWirelessRadioSettings(self, serial: str): """ **Return the radio settings of a device** https://developer.cisco.com/meraki/api-v1/#!get-device-wireless-radio-settings - serial (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'radio', 'settings'], 'operation': 'getDeviceWirelessRadioSettings' } resource = f'/devices/{serial}/wireless/radio/settings' return self._session.get(metadata, resource) def updateDeviceWirelessRadioSettings(self, serial: str, **kwargs): """ **Update the radio settings of a device** https://developer.cisco.com/meraki/api-v1/#!update-device-wireless-radio-settings - serial (string): (required) - rfProfileId (integer): 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). - twoFourGhzSettings (object): Manual radio settings for 2.4 GHz. - fiveGhzSettings (object): Manual radio settings for 5 GHz. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'radio', 'settings'], 'operation': 'updateDeviceWirelessRadioSettings' } resource = f'/devices/{serial}/wireless/radio/settings' body_params = ['rfProfileId', 'twoFourGhzSettings', 'fiveGhzSettings', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getDeviceWirelessStatus(self, serial: str): """ **Return the SSID statuses of an access point** https://developer.cisco.com/meraki/api-v1/#!get-device-wireless-status - serial (string): (required) """ metadata = { 'tags': ['wireless', 'monitor', 'status'], 'operation': 'getDeviceWirelessStatus' } resource = f'/devices/{serial}/wireless/status' return self._session.get(metadata, resource) def getNetworkWirelessAirMarshal(self, networkId: str, **kwargs): """ **List Air Marshal scan results from a network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-air-marshal - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today. - timespan (number): The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 7 days. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'monitor', 'airMarshal'], 'operation': 'getNetworkWirelessAirMarshal' } resource = f'/networks/{networkId}/wireless/airMarshal' query_params = ['t0', 'timespan', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessAlternateManagementInterface(self, networkId: str): """ **Return alternate management interface and devices with IP assigned** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-alternate-management-interface - networkId (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'alternateManagementInterface'], 'operation': 'getNetworkWirelessAlternateManagementInterface' } resource = f'/networks/{networkId}/wireless/alternateManagementInterface' return self._session.get(metadata, resource) def updateNetworkWirelessAlternateManagementInterface(self, networkId: str, **kwargs): """ **Update alternate management interface and device static IP** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-alternate-management-interface - networkId (string): (required) - enabled (boolean): Boolean value to enable or disable alternate management interface - vlanId (integer): Alternate management interface VLAN, must be between 1 and 4094 - protocols (array): Can be one or more of the following values: 'radius', 'snmp', 'syslog' or 'ldap' - accessPoints (array): Array of access point serial number and IP assignment. Note: accessPoints IP assignment is not applicable for template networks, in other words, do not put 'accessPoints' in the body when updating template networks. Also, an empty 'accessPoints' array will remove all previous static IP assignments """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'alternateManagementInterface'], 'operation': 'updateNetworkWirelessAlternateManagementInterface' } resource = f'/networks/{networkId}/wireless/alternateManagementInterface' body_params = ['enabled', 'vlanId', 'protocols', 'accessPoints', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessBilling(self, networkId: str): """ **Return the billing settings of this network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-billing - networkId (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'billing'], 'operation': 'getNetworkWirelessBilling' } resource = f'/networks/{networkId}/wireless/billing' return self._session.get(metadata, resource) def updateNetworkWirelessBilling(self, networkId: str, **kwargs): """ **Update the billing settings** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-billing - networkId (string): (required) - currency (string): The currency code of this node group's billing plans - plans (array): Array of billing plans in the node group. (Can configure a maximum of 5) """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'billing'], 'operation': 'updateNetworkWirelessBilling' } resource = f'/networks/{networkId}/wireless/billing' body_params = ['currency', 'plans', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessBluetoothSettings(self, networkId: str): """ **Return the Bluetooth settings for a network. Bluetooth settings must be enabled on the network.** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-bluetooth-settings - networkId (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'bluetooth', 'settings'], 'operation': 'getNetworkWirelessBluetoothSettings' } resource = f'/networks/{networkId}/wireless/bluetooth/settings' return self._session.get(metadata, resource) def updateNetworkWirelessBluetoothSettings(self, networkId: str, **kwargs): """ **Update the Bluetooth settings for a network** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-bluetooth-settings - networkId (string): (required) - scanningEnabled (boolean): Whether APs will scan for Bluetooth enabled clients. (true, false) - advertisingEnabled (boolean): Whether APs will advertise beacons. (true, false) - uuid (string): The UUID to be used in the beacon identifier. - majorMinorAssignmentMode (string): The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique') - major (integer): The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode. - minor (integer): The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode. """ kwargs.update(locals()) if 'majorMinorAssignmentMode' in kwargs: options = ['Unique', 'Non-unique'] assert kwargs['majorMinorAssignmentMode'] in options, f'''"majorMinorAssignmentMode" cannot be "{kwargs['majorMinorAssignmentMode']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'configure', 'bluetooth', 'settings'], 'operation': 'updateNetworkWirelessBluetoothSettings' } resource = f'/networks/{networkId}/wireless/bluetooth/settings' body_params = ['scanningEnabled', 'advertisingEnabled', 'uuid', 'majorMinorAssignmentMode', 'major', 'minor', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessChannelUtilizationHistory(self, networkId: str, **kwargs): """ **Return AP channel utilization over time for a device or network client** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-channel-utilization-history - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0. - 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 7 days. - resolution (integer): The time resolution in seconds for returned data. The valid resolutions are: 600, 1200, 3600, 14400, 86400. The default is 86400. - autoResolution (boolean): Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false. - clientId (string): Filter results by network client to return per-device, per-band AP channel utilization metrics inner joined by the queried client's connection history. - deviceSerial (string): Filter results by device to return AP channel utilization metrics for the queried device; either :band or :clientId must be jointly specified. - apTag (string): Filter results by AP tag to return AP channel utilization metrics for devices labeled with the given tag; either :clientId or :deviceSerial must be jointly specified. - band (string): Filter results by band (either '2.4' or '5'). """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'channelUtilizationHistory'], 'operation': 'getNetworkWirelessChannelUtilizationHistory' } resource = f'/networks/{networkId}/wireless/channelUtilizationHistory' query_params = ['t0', 't1', 'timespan', 'resolution', 'autoResolution', 'clientId', 'deviceSerial', 'apTag', 'band', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessClientCountHistory(self, networkId: str, **kwargs): """ **Return wireless client counts over time for a network, device, or network client** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-client-count-history - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0. - 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 7 days. - resolution (integer): The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400. - autoResolution (boolean): Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false. - clientId (string): Filter results by network client to return per-device client counts over time inner joined by the queried client's connection history. - deviceSerial (string): Filter results by device. - apTag (string): Filter results by AP tag. - band (string): Filter results by band (either '2.4' or '5'). - ssid (integer): Filter results by SSID number. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'clientCountHistory'], 'operation': 'getNetworkWirelessClientCountHistory' } resource = f'/networks/{networkId}/wireless/clientCountHistory' query_params = ['t0', 't1', 'timespan', 'resolution', 'autoResolution', 'clientId', 'deviceSerial', 'apTag', 'band', 'ssid', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessClientsConnectionStats(self, networkId: str, **kwargs): """ **Aggregated connectivity info for this network, grouped by clients** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-clients-connection-stats - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'clients', 'connectionStats'], 'operation': 'getNetworkWirelessClientsConnectionStats' } resource = f'/networks/{networkId}/wireless/clients/connectionStats' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessClientsLatencyStats(self, networkId: str, **kwargs): """ **Aggregated latency info for this network, grouped by clients** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-clients-latency-stats - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag - fields (string): Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'clients', 'latencyStats'], 'operation': 'getNetworkWirelessClientsLatencyStats' } resource = f'/networks/{networkId}/wireless/clients/latencyStats' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', 'fields', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessClientConnectionStats(self, networkId: str, clientId: str, **kwargs): """ **Aggregated connectivity info for a given client on this network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-client-connection-stats - networkId (string): (required) - clientId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'clients', 'connectionStats'], 'operation': 'getNetworkWirelessClientConnectionStats' } resource = f'/networks/{networkId}/wireless/clients/{clientId}/connectionStats' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessClientConnectivityEvents(self, networkId: str, clientId: str, total_pages=1, direction='next', **kwargs): """ **List the wireless connectivity events for a client within a network in the timespan.** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-client-connectivity-events - networkId (string): (required) - clientId (string): (required) - total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages - direction (string): direction to paginate, either "next" (default) or "prev" page - perPage (integer): The number of entries per page returned. Acceptable range is 3 - 1000. - 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. - 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. - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0. - 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. - types (array): A list of event types to include. If not specified, events of all types will be returned. Valid types are 'assoc', 'disassoc', 'auth', 'deauth', 'dns', 'dhcp', 'roam', 'connection' and/or 'sticky'. - includedSeverities (array): A list of severities to include. If not specified, events of all severities will be returned. Valid severities are 'good', 'info', 'warn' and/or 'bad'. - band (string): Filter results by band (either '2.4' or '5'). - ssidNumber (integer): An SSID number to include. If not specified, events for all SSIDs will be returned. - deviceSerial (string): Filter results by an AP's serial number. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' if 'ssidNumber' in kwargs: options = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] assert kwargs['ssidNumber'] in options, f'''"ssidNumber" cannot be "{kwargs['ssidNumber']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'clients', 'connectivityEvents'], 'operation': 'getNetworkWirelessClientConnectivityEvents' } resource = f'/networks/{networkId}/wireless/clients/{clientId}/connectivityEvents' query_params = ['perPage', 'startingAfter', 'endingBefore', 't0', 't1', 'timespan', 'types', 'includedSeverities', 'band', 'ssidNumber', 'deviceSerial', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} array_params = ['types', 'includedSeverities', ] for k, v in kwargs.items(): if k.strip() in array_params: params[f'{k.strip()}[]'] = kwargs[f'{k}'] params.pop(k.strip()) return self._session.get_pages(metadata, resource, params, total_pages, direction) def getNetworkWirelessClientLatencyHistory(self, networkId: str, clientId: str, **kwargs): """ **Return the latency history for a client** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-client-latency-history - networkId (string): (required) - clientId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 791 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 791 days after t0. - 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 791 days. The default is 1 day. - resolution (integer): The time resolution in seconds for returned data. The valid resolutions are: 86400. The default is 86400. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'monitor', 'clients', 'latencyHistory'], 'operation': 'getNetworkWirelessClientLatencyHistory' } resource = f'/networks/{networkId}/wireless/clients/{clientId}/latencyHistory' query_params = ['t0', 't1', 'timespan', 'resolution', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessClientLatencyStats(self, networkId: str, clientId: str, **kwargs): """ **Aggregated latency info for a given client on this network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-client-latency-stats - networkId (string): (required) - clientId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag - fields (string): Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'clients', 'latencyStats'], 'operation': 'getNetworkWirelessClientLatencyStats' } resource = f'/networks/{networkId}/wireless/clients/{clientId}/latencyStats' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', 'fields', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessConnectionStats(self, networkId: str, **kwargs): """ **Aggregated connectivity info for this network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-connection-stats - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'connectionStats'], 'operation': 'getNetworkWirelessConnectionStats' } resource = f'/networks/{networkId}/wireless/connectionStats' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessDataRateHistory(self, networkId: str, **kwargs): """ **Return PHY data rates over time for a network, device, or network client** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-data-rate-history - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0. - 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 7 days. - resolution (integer): The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400. - autoResolution (boolean): Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false. - clientId (string): Filter results by network client. - deviceSerial (string): Filter results by device. - apTag (string): Filter results by AP tag. - band (string): Filter results by band (either '2.4' or '5'). - ssid (integer): Filter results by SSID number. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'dataRateHistory'], 'operation': 'getNetworkWirelessDataRateHistory' } resource = f'/networks/{networkId}/wireless/dataRateHistory' query_params = ['t0', 't1', 'timespan', 'resolution', 'autoResolution', 'clientId', 'deviceSerial', 'apTag', 'band', 'ssid', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessDevicesConnectionStats(self, networkId: str, **kwargs): """ **Aggregated connectivity info for this network, grouped by node** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-devices-connection-stats - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'devices', 'connectionStats'], 'operation': 'getNetworkWirelessDevicesConnectionStats' } resource = f'/networks/{networkId}/wireless/devices/connectionStats' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessDevicesLatencyStats(self, networkId: str, **kwargs): """ **Aggregated latency info for this network, grouped by node** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-devices-latency-stats - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag - fields (string): Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'devices', 'latencyStats'], 'operation': 'getNetworkWirelessDevicesLatencyStats' } resource = f'/networks/{networkId}/wireless/devices/latencyStats' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', 'fields', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessFailedConnections(self, networkId: str, **kwargs): """ **List of all failed client connection events on this network in a given time range** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-failed-connections - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag - serial (string): Filter by AP - clientId (string): Filter by client MAC """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'failedConnections'], 'operation': 'getNetworkWirelessFailedConnections' } resource = f'/networks/{networkId}/wireless/failedConnections' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', 'serial', 'clientId', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessLatencyHistory(self, networkId: str, **kwargs): """ **Return average wireless latency over time for a network, device, or network client** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-latency-history - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0. - 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 7 days. - resolution (integer): The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400. - autoResolution (boolean): Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false. - clientId (string): Filter results by network client. - deviceSerial (string): Filter results by device. - apTag (string): Filter results by AP tag. - band (string): Filter results by band (either '2.4' or '5'). - ssid (integer): Filter results by SSID number. - accessCategory (string): Filter by access category. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' if 'accessCategory' in kwargs: options = ['backgroundTraffic', 'bestEffortTraffic', 'videoTraffic', 'voiceTraffic'] assert kwargs['accessCategory'] in options, f'''"accessCategory" cannot be "{kwargs['accessCategory']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'latencyHistory'], 'operation': 'getNetworkWirelessLatencyHistory' } resource = f'/networks/{networkId}/wireless/latencyHistory' query_params = ['t0', 't1', 'timespan', 'resolution', 'autoResolution', 'clientId', 'deviceSerial', 'apTag', 'band', 'ssid', 'accessCategory', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessLatencyStats(self, networkId: str, **kwargs): """ **Aggregated latency info for this network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-latency-stats - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 180 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 7 days after t0. - 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 7 days. - band (string): Filter results by band (either '2.4' or '5'). Note that data prior to February 2020 will not have band information. - ssid (integer): Filter results by SSID - vlan (integer): Filter results by VLAN - apTag (string): Filter results by AP Tag - fields (string): Partial selection: If present, this call will return only the selected fields of ["rawDistribution", "avg"]. All fields will be returned by default. Selected fields must be entered as a comma separated string. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'latencyStats'], 'operation': 'getNetworkWirelessLatencyStats' } resource = f'/networks/{networkId}/wireless/latencyStats' query_params = ['t0', 't1', 'timespan', 'band', 'ssid', 'vlan', 'apTag', 'fields', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessMeshStatuses(self, networkId: str, total_pages=1, direction='next', **kwargs): """ **List wireless mesh statuses for repeaters** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-mesh-statuses - networkId (string): (required) - total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages - direction (string): direction to paginate, either "next" (default) or "prev" page - perPage (integer): The number of entries per page returned. Acceptable range is 3 - 500. Default is 50. - 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. - 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. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'monitor', 'meshStatuses'], 'operation': 'getNetworkWirelessMeshStatuses' } resource = f'/networks/{networkId}/wireless/meshStatuses' query_params = ['perPage', 'startingAfter', 'endingBefore', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get_pages(metadata, resource, params, total_pages, direction) def getNetworkWirelessRfProfiles(self, networkId: str, **kwargs): """ **List the non-basic RF profiles for this network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-rf-profiles - networkId (string): (required) - includeTemplateProfiles (boolean): If the network is bound to a template, this parameter controls whether or not the non-basic RF profiles defined on the template should be included in the response alongside the non-basic profiles defined on the bound network. Defaults to false. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'rfProfiles'], 'operation': 'getNetworkWirelessRfProfiles' } resource = f'/networks/{networkId}/wireless/rfProfiles' query_params = ['includeTemplateProfiles', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def createNetworkWirelessRfProfile(self, networkId: str, name: str, bandSelectionType: str, **kwargs): """ **Creates new RF profile for this network** https://developer.cisco.com/meraki/api-v1/#!create-network-wireless-rf-profile - networkId (string): (required) - name (string): The name of the new profile. Must be unique. This param is required on creation. - bandSelectionType (string): Band selection can be set to either 'ssid' or 'ap'. This param is required on creation. - clientBalancingEnabled (boolean): Steers client to best available access point. Can be either true or false. Defaults to true. - minBitrateType (string): Minimum bitrate can be set to either 'band' or 'ssid'. Defaults to band. - apBandSettings (object): Settings that will be enabled if selectionType is set to 'ap'. - twoFourGhzSettings (object): Settings related to 2.4Ghz band - fiveGhzSettings (object): Settings related to 5Ghz band """ kwargs.update(locals()) if 'minBitrateType' in kwargs: options = ['band', 'ssid'] assert kwargs['minBitrateType'] in options, f'''"minBitrateType" cannot be "{kwargs['minBitrateType']}", & must be set to one of: {options}''' if 'bandSelectionType' in kwargs: options = ['ssid', 'ap'] assert kwargs['bandSelectionType'] in options, f'''"bandSelectionType" cannot be "{kwargs['bandSelectionType']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'configure', 'rfProfiles'], 'operation': 'createNetworkWirelessRfProfile' } resource = f'/networks/{networkId}/wireless/rfProfiles' body_params = ['name', 'clientBalancingEnabled', 'minBitrateType', 'bandSelectionType', 'apBandSettings', 'twoFourGhzSettings', 'fiveGhzSettings', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.post(metadata, resource, payload) def updateNetworkWirelessRfProfile(self, networkId: str, rfProfileId: str, **kwargs): """ **Updates specified RF profile for this network** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-rf-profile - networkId (string): (required) - rfProfileId (string): (required) - name (string): The name of the new profile. Must be unique. - clientBalancingEnabled (boolean): Steers client to best available access point. Can be either true or false. - minBitrateType (string): Minimum bitrate can be set to either 'band' or 'ssid'. - bandSelectionType (string): Band selection can be set to either 'ssid' or 'ap'. - apBandSettings (object): Settings that will be enabled if selectionType is set to 'ap'. - twoFourGhzSettings (object): Settings related to 2.4Ghz band - fiveGhzSettings (object): Settings related to 5Ghz band """ kwargs.update(locals()) if 'minBitrateType' in kwargs: options = ['band', 'ssid'] assert kwargs['minBitrateType'] in options, f'''"minBitrateType" cannot be "{kwargs['minBitrateType']}", & must be set to one of: {options}''' if 'bandSelectionType' in kwargs: options = ['ssid', 'ap'] assert kwargs['bandSelectionType'] in options, f'''"bandSelectionType" cannot be "{kwargs['bandSelectionType']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'configure', 'rfProfiles'], 'operation': 'updateNetworkWirelessRfProfile' } resource = f'/networks/{networkId}/wireless/rfProfiles/{rfProfileId}' body_params = ['name', 'clientBalancingEnabled', 'minBitrateType', 'bandSelectionType', 'apBandSettings', 'twoFourGhzSettings', 'fiveGhzSettings', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def deleteNetworkWirelessRfProfile(self, networkId: str, rfProfileId: str): """ **Delete a RF Profile** https://developer.cisco.com/meraki/api-v1/#!delete-network-wireless-rf-profile - networkId (string): (required) - rfProfileId (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'rfProfiles'], 'operation': 'deleteNetworkWirelessRfProfile' } resource = f'/networks/{networkId}/wireless/rfProfiles/{rfProfileId}' return self._session.delete(metadata, resource) def getNetworkWirelessRfProfile(self, networkId: str, rfProfileId: str): """ **Return a RF profile** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-rf-profile - networkId (string): (required) - rfProfileId (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'rfProfiles'], 'operation': 'getNetworkWirelessRfProfile' } resource = f'/networks/{networkId}/wireless/rfProfiles/{rfProfileId}' return self._session.get(metadata, resource) def getNetworkWirelessSettings(self, networkId: str): """ **Return the wireless settings for a network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-settings - networkId (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'settings'], 'operation': 'getNetworkWirelessSettings' } resource = f'/networks/{networkId}/wireless/settings' return self._session.get(metadata, resource) def updateNetworkWirelessSettings(self, networkId: str, **kwargs): """ **Update the wireless settings for a network** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-settings - networkId (string): (required) - meshingEnabled (boolean): Toggle for enabling or disabling meshing in a network - ipv6BridgeEnabled (boolean): Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode) - locationAnalyticsEnabled (boolean): Toggle for enabling or disabling location analytics for your network - upgradeStrategy (string): The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher' - ledLightsOn (boolean): Toggle for enabling or disabling LED lights on all APs in the network (making them run dark) """ kwargs.update(locals()) if 'upgradeStrategy' in kwargs: options = ['minimizeUpgradeTime', 'minimizeClientDowntime'] assert kwargs['upgradeStrategy'] in options, f'''"upgradeStrategy" cannot be "{kwargs['upgradeStrategy']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'configure', 'settings'], 'operation': 'updateNetworkWirelessSettings' } resource = f'/networks/{networkId}/wireless/settings' body_params = ['meshingEnabled', 'ipv6BridgeEnabled', 'locationAnalyticsEnabled', 'upgradeStrategy', 'ledLightsOn', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessSignalQualityHistory(self, networkId: str, **kwargs): """ **Return signal quality (SNR/RSSI) over time for a device or network client** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-signal-quality-history - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0. - 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 7 days. - resolution (integer): The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400. - autoResolution (boolean): Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false. - clientId (string): Filter results by network client. - deviceSerial (string): Filter results by device. - apTag (string): Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified. - band (string): Filter results by band (either '2.4' or '5'). - ssid (integer): Filter results by SSID number. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'signalQualityHistory'], 'operation': 'getNetworkWirelessSignalQualityHistory' } resource = f'/networks/{networkId}/wireless/signalQualityHistory' query_params = ['t0', 't1', 'timespan', 'resolution', 'autoResolution', 'clientId', 'deviceSerial', 'apTag', 'band', 'ssid', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params) def getNetworkWirelessSsids(self, networkId: str): """ **List the MR SSIDs in a network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssids - networkId (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids'], 'operation': 'getNetworkWirelessSsids' } resource = f'/networks/{networkId}/wireless/ssids' return self._session.get(metadata, resource) def getNetworkWirelessSsid(self, networkId: str, number: str): """ **Return a single MR SSID** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid - networkId (string): (required) - number (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids'], 'operation': 'getNetworkWirelessSsid' } resource = f'/networks/{networkId}/wireless/ssids/{number}' return self._session.get(metadata, resource) def updateNetworkWirelessSsid(self, networkId: str, number: str, **kwargs): """ **Update the attributes of an MR SSID** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid - networkId (string): (required) - number (string): (required) - name (string): The name of the SSID - enabled (boolean): Whether or not the SSID is enabled - authMode (string): The association control method for the SSID ('open', 'psk', 'open-with-radius', '8021x-meraki', '8021x-radius', '8021x-google', '8021x-localradius', 'ipsk-with-radius' or 'ipsk-without-radius') - enterpriseAdminAccess (string): Whether or not an SSID is accessible by 'enterprise' administrators ('access disabled' or 'access enabled') - encryptionMode (string): The psk encryption mode for the SSID ('wep' or 'wpa'). This param is only valid if the authMode is 'psk' - psk (string): The passkey for the SSID. This param is only valid if the authMode is 'psk' - wpaEncryptionMode (string): The types of WPA encryption. ('WPA1 only', 'WPA1 and WPA2', 'WPA2 only', 'WPA3 Transition Mode' or 'WPA3 only') - dot11w (object): The current setting for Protected Management Frames (802.11w). - dot11r (object): The current setting for 802.11r - splashPage (string): The type of splash page for the SSID ('None', 'Click-through splash page', 'Billing', 'Password-protected with Meraki RADIUS', 'Password-protected with custom RADIUS', 'Password-protected with Active Directory', 'Password-protected with LDAP', 'SMS authentication', 'Systems Manager Sentry', 'Facebook Wi-Fi', 'Google OAuth', 'Sponsored guest', 'Cisco ISE' or 'Google Apps domain'). This attribute is not supported for template children. - splashGuestSponsorDomains (array): Array of valid sponsor email domains for sponsored guest splash type. - oauth (object): The OAuth settings of this SSID. Only valid if splashPage is 'Google OAuth'. - localRadius (object): The current setting for Local Authentication, a built-in RADIUS server on the access point. Only valid if authMode is '8021x-localradius'. - ldap (object): The current setting for LDAP. Only valid if splashPage is 'Password-protected with LDAP'. - activeDirectory (object): The current setting for Active Directory. Only valid if splashPage is 'Password-protected with Active Directory' - radiusServers (array): The RADIUS 802.1X servers to be used for authentication. This param is only valid if the authMode is 'open-with-radius', '8021x-radius' or 'ipsk-with-radius' - radiusProxyEnabled (boolean): If true, Meraki devices will proxy RADIUS messages through the Meraki cloud to the configured RADIUS auth and accounting servers. - radiusTestingEnabled (boolean): If true, Meraki devices will periodically send Access-Request messages to configured RADIUS servers using identity 'meraki_8021x_test' to ensure that the RADIUS servers are reachable. - radiusCalledStationId (string): The template of the called station identifier to be used for RADIUS (ex. $NODE_MAC$:$VAP_NUM$). - radiusAuthenticationNasId (string): The template of the NAS identifier to be used for RADIUS authentication (ex. $NODE_MAC$:$VAP_NUM$). - radiusServerTimeout (integer): The amount of time for which a RADIUS client waits for a reply from the RADIUS server (must be between 1-10 seconds). - radiusServerAttemptsLimit (integer): The maximum number of transmit attempts after which a RADIUS server is failed over (must be between 1-5). - radiusFallbackEnabled (boolean): Whether or not higher priority RADIUS servers should be retried after 60 seconds. - radiusCoaEnabled (boolean): If true, Meraki devices will act as a RADIUS Dynamic Authorization Server and will respond to RADIUS Change-of-Authorization and Disconnect messages sent by the RADIUS server. - radiusFailoverPolicy (string): This policy determines how authentication requests should be handled in the event that all of the configured RADIUS servers are unreachable ('Deny access' or 'Allow access') - radiusLoadBalancingPolicy (string): This policy determines which RADIUS server will be contacted first in an authentication attempt and the ordering of any necessary retry attempts ('Strict priority order' or 'Round robin') - radiusAccountingEnabled (boolean): Whether or not RADIUS accounting is enabled. This param is only valid if the authMode is 'open-with-radius', '8021x-radius' or 'ipsk-with-radius' - radiusAccountingServers (array): The RADIUS accounting 802.1X servers to be used for authentication. This param is only valid if the authMode is 'open-with-radius', '8021x-radius' or 'ipsk-with-radius' and radiusAccountingEnabled is 'true' - radiusAccountingInterimInterval (integer): The interval (in seconds) in which accounting information is updated and sent to the RADIUS accounting server. - radiusAttributeForGroupPolicies (string): Specify the RADIUS attribute used to look up group policies ('Filter-Id', 'Reply-Message', 'Airespace-ACL-Name' or 'Aruba-User-Role'). Access points must receive this attribute in the RADIUS Access-Accept message - ipAssignmentMode (string): The client IP assignment mode ('NAT mode', 'Bridge mode', 'Layer 3 roaming', 'Layer 3 roaming with a concentrator' or 'VPN') - useVlanTagging (boolean): Whether or not traffic should be directed to use specific VLANs. This param is only valid if the ipAssignmentMode is 'Bridge mode' or 'Layer 3 roaming' - concentratorNetworkId (string): The concentrator to use when the ipAssignmentMode is 'Layer 3 roaming with a concentrator' or 'VPN'. - vlanId (integer): The VLAN ID used for VLAN tagging. This param is only valid when the ipAssignmentMode is 'Layer 3 roaming with a concentrator' or 'VPN' - defaultVlanId (integer): The default VLAN ID used for 'all other APs'. This param is only valid when the ipAssignmentMode is 'Bridge mode' or 'Layer 3 roaming' - apTagsAndVlanIds (array): The list of tags and VLAN IDs used for VLAN tagging. This param is only valid when the ipAssignmentMode is 'Bridge mode' or 'Layer 3 roaming' - walledGardenEnabled (boolean): Allow access to a configurable list of IP ranges, which users may access prior to sign-on. - walledGardenRanges (array): Specify your walled garden by entering an array of addresses, ranges using CIDR notation, domain names, and domain wildcards (e.g. '192.168.1.1/24', '192.168.37.10/32', 'www.yahoo.com', '*.google.com']). Meraki's splash page is automatically included in your walled garden. - radiusOverride (boolean): If true, the RADIUS response can override VLAN tag. This is not valid when ipAssignmentMode is 'NAT mode'. - radiusGuestVlanEnabled (boolean): Whether or not RADIUS Guest VLAN is enabled. This param is only valid if the authMode is 'open-with-radius' and addressing mode is not set to 'isolated' or 'nat' mode - radiusGuestVlanId (integer): VLAN ID of the RADIUS Guest VLAN. This param is only valid if the authMode is 'open-with-radius' and addressing mode is not set to 'isolated' or 'nat' mode - minBitrate (number): The minimum bitrate in Mbps. ('1', '2', '5.5', '6', '9', '11', '12', '18', '24', '36', '48' or '54') - bandSelection (string): The client-serving radio frequencies. ('Dual band operation', '5 GHz band only' or 'Dual band operation with Band Steering') - perClientBandwidthLimitUp (integer): The upload bandwidth limit in Kbps. (0 represents no limit.) - perClientBandwidthLimitDown (integer): The download bandwidth limit in Kbps. (0 represents no limit.) - perSsidBandwidthLimitUp (integer): The total upload bandwidth limit in Kbps. (0 represents no limit.) - perSsidBandwidthLimitDown (integer): The total download bandwidth limit in Kbps. (0 represents no limit.) - lanIsolationEnabled (boolean): Boolean indicating whether Layer 2 LAN isolation should be enabled or disabled. Only configurable when ipAssignmentMode is 'Bridge mode'. - visible (boolean): Boolean indicating whether APs should advertise or hide this SSID. APs will only broadcast this SSID if set to true - 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. - 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. - 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. - adultContentFilteringEnabled (boolean): Boolean indicating whether or not adult content will be blocked - dnsRewrite (object): DNS servers rewrite settings """ kwargs.update(locals()) if 'authMode' in kwargs: options = ['open', 'psk', 'open-with-radius', '8021x-meraki', '8021x-radius', '8021x-google', '8021x-localradius', 'ipsk-with-radius', 'ipsk-without-radius'] assert kwargs['authMode'] in options, f'''"authMode" cannot be "{kwargs['authMode']}", & must be set to one of: {options}''' if 'enterpriseAdminAccess' in kwargs: options = ['access disabled', 'access enabled'] assert kwargs['enterpriseAdminAccess'] in options, f'''"enterpriseAdminAccess" cannot be "{kwargs['enterpriseAdminAccess']}", & must be set to one of: {options}''' if 'encryptionMode' in kwargs: options = ['wep', 'wpa'] assert kwargs['encryptionMode'] in options, f'''"encryptionMode" cannot be "{kwargs['encryptionMode']}", & must be set to one of: {options}''' if 'wpaEncryptionMode' in kwargs: options = ['WPA1 only', 'WPA1 and WPA2', 'WPA2 only', 'WPA3 Transition Mode', 'WPA3 only'] assert kwargs['wpaEncryptionMode'] in options, f'''"wpaEncryptionMode" cannot be "{kwargs['wpaEncryptionMode']}", & must be set to one of: {options}''' if 'splashPage' in kwargs: options = ['None', 'Click-through splash page', 'Billing', 'Password-protected with Meraki RADIUS', 'Password-protected with custom RADIUS', 'Password-protected with Active Directory', 'Password-protected with LDAP', 'SMS authentication', 'Systems Manager Sentry', 'Facebook Wi-Fi', 'Google OAuth', 'Sponsored guest', 'Cisco ISE', 'Google Apps domain'] assert kwargs['splashPage'] in options, f'''"splashPage" cannot be "{kwargs['splashPage']}", & must be set to one of: {options}''' if 'radiusFailoverPolicy' in kwargs: options = ['Deny access', 'Allow access'] assert kwargs['radiusFailoverPolicy'] in options, f'''"radiusFailoverPolicy" cannot be "{kwargs['radiusFailoverPolicy']}", & must be set to one of: {options}''' if 'radiusLoadBalancingPolicy' in kwargs: options = ['Strict priority order', 'Round robin'] assert kwargs['radiusLoadBalancingPolicy'] in options, f'''"radiusLoadBalancingPolicy" cannot be "{kwargs['radiusLoadBalancingPolicy']}", & must be set to one of: {options}''' if 'radiusAttributeForGroupPolicies' in kwargs: options = ['Filter-Id', 'Reply-Message', 'Airespace-ACL-Name', 'Aruba-User-Role'] assert kwargs['radiusAttributeForGroupPolicies'] in options, f'''"radiusAttributeForGroupPolicies" cannot be "{kwargs['radiusAttributeForGroupPolicies']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'configure', 'ssids'], 'operation': 'updateNetworkWirelessSsid' } resource = f'/networks/{networkId}/wireless/ssids/{number}' body_params = ['name', 'enabled', 'authMode', 'enterpriseAdminAccess', 'encryptionMode', 'psk', 'wpaEncryptionMode', 'dot11w', 'dot11r', 'splashPage', 'splashGuestSponsorDomains', 'oauth', 'localRadius', 'ldap', 'activeDirectory', 'radiusServers', 'radiusProxyEnabled', 'radiusTestingEnabled', 'radiusCalledStationId', 'radiusAuthenticationNasId', 'radiusServerTimeout', 'radiusServerAttemptsLimit', 'radiusFallbackEnabled', 'radiusCoaEnabled', 'radiusFailoverPolicy', 'radiusLoadBalancingPolicy', 'radiusAccountingEnabled', 'radiusAccountingServers', 'radiusAccountingInterimInterval', 'radiusAttributeForGroupPolicies', 'ipAssignmentMode', 'useVlanTagging', 'concentratorNetworkId', 'vlanId', 'defaultVlanId', 'apTagsAndVlanIds', 'walledGardenEnabled', 'walledGardenRanges', 'radiusOverride', 'radiusGuestVlanEnabled', 'radiusGuestVlanId', 'minBitrate', 'bandSelection', 'perClientBandwidthLimitUp', 'perClientBandwidthLimitDown', 'perSsidBandwidthLimitUp', 'perSsidBandwidthLimitDown', 'lanIsolationEnabled', 'visible', 'availableOnAllAps', 'availabilityTags', 'mandatoryDhcpEnabled', 'adultContentFilteringEnabled', 'dnsRewrite', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessSsidBonjourForwarding(self, networkId: str, number: str): """ **List the Bonjour forwarding setting and rules for the SSID** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid-bonjour-forwarding - networkId (string): (required) - number (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'bonjourForwarding'], 'operation': 'getNetworkWirelessSsidBonjourForwarding' } resource = f'/networks/{networkId}/wireless/ssids/{number}/bonjourForwarding' return self._session.get(metadata, resource) def updateNetworkWirelessSsidBonjourForwarding(self, networkId: str, number: str, **kwargs): """ **Update the bonjour forwarding setting and rules for the SSID** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-bonjour-forwarding - networkId (string): (required) - number (string): (required) - enabled (boolean): If true, Bonjour forwarding is enabled on this SSID. - rules (array): List of bonjour forwarding rules. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'ssids', 'bonjourForwarding'], 'operation': 'updateNetworkWirelessSsidBonjourForwarding' } resource = f'/networks/{networkId}/wireless/ssids/{number}/bonjourForwarding' body_params = ['enabled', 'rules', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessSsidDeviceTypeGroupPolicies(self, networkId: str, number: str): """ **List the device type group policies for the SSID** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid-device-type-group-policies - networkId (string): (required) - number (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'deviceTypeGroupPolicies'], 'operation': 'getNetworkWirelessSsidDeviceTypeGroupPolicies' } resource = f'/networks/{networkId}/wireless/ssids/{number}/deviceTypeGroupPolicies' return self._session.get(metadata, resource) def updateNetworkWirelessSsidDeviceTypeGroupPolicies(self, networkId: str, number: str, **kwargs): """ **Update the device type group policies for the SSID** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-device-type-group-policies - networkId (string): (required) - number (string): (required) - enabled (boolean): If true, the SSID device type group policies are enabled. - deviceTypePolicies (array): List of device type policies. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'ssids', 'deviceTypeGroupPolicies'], 'operation': 'updateNetworkWirelessSsidDeviceTypeGroupPolicies' } resource = f'/networks/{networkId}/wireless/ssids/{number}/deviceTypeGroupPolicies' body_params = ['enabled', 'deviceTypePolicies', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessSsidFirewallL3FirewallRules(self, networkId: str, number: str): """ **Return the L3 firewall rules for an SSID on an MR network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid-firewall-l-3-firewall-rules - networkId (string): (required) - number (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'firewall', 'l3FirewallRules'], 'operation': 'getNetworkWirelessSsidFirewallL3FirewallRules' } resource = f'/networks/{networkId}/wireless/ssids/{number}/firewall/l3FirewallRules' return self._session.get(metadata, resource) def updateNetworkWirelessSsidFirewallL3FirewallRules(self, networkId: str, number: str, **kwargs): """ **Update the L3 firewall rules of an SSID on an MR network** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-firewall-l-3-firewall-rules - networkId (string): (required) - number (string): (required) - rules (array): An ordered array of the firewall rules for this SSID (not including the local LAN access rule or the default rule) - allowLanAccess (boolean): Allow wireless client access to local LAN (boolean value - true allows access and false denies access) (optional) """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'ssids', 'firewall', 'l3FirewallRules'], 'operation': 'updateNetworkWirelessSsidFirewallL3FirewallRules' } resource = f'/networks/{networkId}/wireless/ssids/{number}/firewall/l3FirewallRules' body_params = ['rules', 'allowLanAccess', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessSsidFirewallL7FirewallRules(self, networkId: str, number: str): """ **Return the L7 firewall rules for an SSID on an MR network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid-firewall-l-7-firewall-rules - networkId (string): (required) - number (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'firewall', 'l7FirewallRules'], 'operation': 'getNetworkWirelessSsidFirewallL7FirewallRules' } resource = f'/networks/{networkId}/wireless/ssids/{number}/firewall/l7FirewallRules' return self._session.get(metadata, resource) def updateNetworkWirelessSsidFirewallL7FirewallRules(self, networkId: str, number: str, **kwargs): """ **Update the L7 firewall rules of an SSID on an MR network** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-firewall-l-7-firewall-rules - networkId (string): (required) - number (string): (required) - rules (array): An array of L7 firewall rules for this SSID. Rules will get applied in the same order user has specified in request. Empty array will clear the L7 firewall rule configuration. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'ssids', 'firewall', 'l7FirewallRules'], 'operation': 'updateNetworkWirelessSsidFirewallL7FirewallRules' } resource = f'/networks/{networkId}/wireless/ssids/{number}/firewall/l7FirewallRules' body_params = ['rules', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessSsidIdentityPsks(self, networkId: str, number: str): """ **List all Identity PSKs in a wireless network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid-identity-psks - networkId (string): (required) - number (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'identityPsks'], 'operation': 'getNetworkWirelessSsidIdentityPsks' } resource = f'/networks/{networkId}/wireless/ssids/{number}/identityPsks' return self._session.get(metadata, resource) def createNetworkWirelessSsidIdentityPsk(self, networkId: str, number: str, name: str, groupPolicyId: str, **kwargs): """ **Create an Identity PSK** https://developer.cisco.com/meraki/api-v1/#!create-network-wireless-ssid-identity-psk - networkId (string): (required) - number (string): (required) - name (string): The name of the Identity PSK - groupPolicyId (string): The group policy to be applied to clients - passphrase (string): The passphrase for client authentication. If left blank, one will be auto-generated. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'ssids', 'identityPsks'], 'operation': 'createNetworkWirelessSsidIdentityPsk' } resource = f'/networks/{networkId}/wireless/ssids/{number}/identityPsks' body_params = ['name', 'passphrase', 'groupPolicyId', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.post(metadata, resource, payload) def getNetworkWirelessSsidIdentityPsk(self, networkId: str, number: str, identityPskId: str): """ **Return an Identity PSK** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid-identity-psk - networkId (string): (required) - number (string): (required) - identityPskId (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'identityPsks'], 'operation': 'getNetworkWirelessSsidIdentityPsk' } resource = f'/networks/{networkId}/wireless/ssids/{number}/identityPsks/{identityPskId}' return self._session.get(metadata, resource) def updateNetworkWirelessSsidIdentityPsk(self, networkId: str, number: str, identityPskId: str, **kwargs): """ **Update an Identity PSK** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-identity-psk - networkId (string): (required) - number (string): (required) - identityPskId (string): (required) - name (string): The name of the Identity PSK - passphrase (string): The passphrase for client authentication - groupPolicyId (string): The group policy to be applied to clients """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'ssids', 'identityPsks'], 'operation': 'updateNetworkWirelessSsidIdentityPsk' } resource = f'/networks/{networkId}/wireless/ssids/{number}/identityPsks/{identityPskId}' body_params = ['name', 'passphrase', 'groupPolicyId', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def deleteNetworkWirelessSsidIdentityPsk(self, networkId: str, number: str, identityPskId: str): """ **Delete an Identity PSK** https://developer.cisco.com/meraki/api-v1/#!delete-network-wireless-ssid-identity-psk - networkId (string): (required) - number (string): (required) - identityPskId (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'identityPsks'], 'operation': 'deleteNetworkWirelessSsidIdentityPsk' } resource = f'/networks/{networkId}/wireless/ssids/{number}/identityPsks/{identityPskId}' return self._session.delete(metadata, resource) def getNetworkWirelessSsidSchedules(self, networkId: str, number: str): """ **List the outage schedule for the SSID** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid-schedules - networkId (string): (required) - number (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'schedules'], 'operation': 'getNetworkWirelessSsidSchedules' } resource = f'/networks/{networkId}/wireless/ssids/{number}/schedules' return self._session.get(metadata, resource) def updateNetworkWirelessSsidSchedules(self, networkId: str, number: str, **kwargs): """ **Update the outage schedule for the SSID** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-schedules - networkId (string): (required) - number (string): (required) - enabled (boolean): If true, the SSID outage schedule is enabled. - ranges (array): List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence. - rangesInSeconds (array): List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'ssids', 'schedules'], 'operation': 'updateNetworkWirelessSsidSchedules' } resource = f'/networks/{networkId}/wireless/ssids/{number}/schedules' body_params = ['enabled', 'ranges', 'rangesInSeconds', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessSsidSplashSettings(self, networkId: str, number: str): """ **Display the splash page settings for the given SSID** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid-splash-settings - networkId (string): (required) - number (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'splash', 'settings'], 'operation': 'getNetworkWirelessSsidSplashSettings' } resource = f'/networks/{networkId}/wireless/ssids/{number}/splash/settings' return self._session.get(metadata, resource) def updateNetworkWirelessSsidSplashSettings(self, networkId: str, number: str, **kwargs): """ **Modify the splash page settings for the given SSID** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-splash-settings - networkId (string): (required) - number (string): (required) - splashUrl (string): [optional] The custom splash URL of the click-through splash page. Note that the URL can be configured without necessarily being used. In order to enable the custom URL, see 'useSplashUrl' - useSplashUrl (boolean): [optional] Boolean indicating whether the users will be redirected to the custom splash url. A custom splash URL must be set if this is true. Note that depending on your SSID's access control settings, it may not be possible to use the custom splash URL. - splashTimeout (integer): Splash timeout in minutes. This will determine how often users will see the splash page. - redirectUrl (string): The custom redirect URL where the users will go after the splash page. - useRedirectUrl (boolean): The Boolean indicating whether the the user will be redirected to the custom redirect URL after the splash page. A custom redirect URL must be set if this is true. - welcomeMessage (string): The welcome message for the users on the splash page. - splashLogo (object): The logo used in the splash page. - splashImage (object): The image used in the splash page. - splashPrepaidFront (object): The prepaid front image used in the splash page. - blockAllTrafficBeforeSignOn (boolean): How restricted allowing traffic should be. If true, all traffic types are blocked until the splash page is acknowledged. If false, all non-HTTP traffic is allowed before the splash page is acknowledged. - controllerDisconnectionBehavior (string): How login attempts should be handled when the controller is unreachable. Can be either 'open', 'restricted', or 'default'. - allowSimultaneousLogins (boolean): Whether or not to allow simultaneous logins from different devices. - guestSponsorship (object): Details associated with guest sponsored splash. - billing (object): Details associated with billing splash. """ kwargs.update(locals()) if 'controllerDisconnectionBehavior' in kwargs: options = ['open', 'restricted', 'default'] assert kwargs['controllerDisconnectionBehavior'] in options, f'''"controllerDisconnectionBehavior" cannot be "{kwargs['controllerDisconnectionBehavior']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'configure', 'ssids', 'splash', 'settings'], 'operation': 'updateNetworkWirelessSsidSplashSettings' } resource = f'/networks/{networkId}/wireless/ssids/{number}/splash/settings' body_params = ['splashUrl', 'useSplashUrl', 'splashTimeout', 'redirectUrl', 'useRedirectUrl', 'welcomeMessage', 'splashLogo', 'splashImage', 'splashPrepaidFront', 'blockAllTrafficBeforeSignOn', 'controllerDisconnectionBehavior', 'allowSimultaneousLogins', 'guestSponsorship', 'billing', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def updateNetworkWirelessSsidTrafficShapingRules(self, networkId: str, number: str, **kwargs): """ **Update the traffic shaping settings for an SSID on an MR network** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-traffic-shaping-rules - networkId (string): (required) - number (string): (required) - trafficShapingEnabled (boolean): Whether traffic shaping rules are applied to clients on your SSID. - defaultRulesEnabled (boolean): Whether default traffic shaping rules are enabled (true) or disabled (false). There are 4 default rules, which can be seen on your network's traffic shaping page. Note that default rules count against the rule limit of 8. - rules (array): An array of traffic shaping rules. Rules are applied in the order that they are specified in. An empty list (or null) means no rules. Note that you are allowed a maximum of 8 rules. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'ssids', 'trafficShaping', 'rules'], 'operation': 'updateNetworkWirelessSsidTrafficShapingRules' } resource = f'/networks/{networkId}/wireless/ssids/{number}/trafficShaping/rules' body_params = ['trafficShapingEnabled', 'defaultRulesEnabled', 'rules', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessSsidTrafficShapingRules(self, networkId: str, number: str): """ **Display the traffic shaping settings for a SSID on an MR network** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid-traffic-shaping-rules - networkId (string): (required) - number (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'trafficShaping', 'rules'], 'operation': 'getNetworkWirelessSsidTrafficShapingRules' } resource = f'/networks/{networkId}/wireless/ssids/{number}/trafficShaping/rules' return self._session.get(metadata, resource) def getNetworkWirelessSsidVpn(self, networkId: str, number: str): """ **List the VPN settings for the SSID.** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-ssid-vpn - networkId (string): (required) - number (string): (required) """ metadata = { 'tags': ['wireless', 'configure', 'ssids', 'vpn'], 'operation': 'getNetworkWirelessSsidVpn' } resource = f'/networks/{networkId}/wireless/ssids/{number}/vpn' return self._session.get(metadata, resource) def updateNetworkWirelessSsidVpn(self, networkId: str, number: str, **kwargs): """ **Update the VPN settings for the SSID** https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-vpn - networkId (string): (required) - number (string): (required) - splitTunnel (object): The VPN split tunnel settings for this SSID. """ kwargs.update(locals()) metadata = { 'tags': ['wireless', 'configure', 'ssids', 'vpn'], 'operation': 'updateNetworkWirelessSsidVpn' } resource = f'/networks/{networkId}/wireless/ssids/{number}/vpn' body_params = ['splitTunnel', ] payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params} return self._session.put(metadata, resource, payload) def getNetworkWirelessUsageHistory(self, networkId: str, **kwargs): """ **Return AP usage over time for a device or network client** https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-usage-history - networkId (string): (required) - t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today. - t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0. - 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 7 days. - resolution (integer): The time resolution in seconds for returned data. The valid resolutions are: 300, 600, 1200, 3600, 14400, 86400. The default is 86400. - autoResolution (boolean): Automatically select a data resolution based on the given timespan; this overrides the value specified by the 'resolution' parameter. The default setting is false. - clientId (string): Filter results by network client to return per-device AP usage over time inner joined by the queried client's connection history. - deviceSerial (string): Filter results by device. Requires :band. - apTag (string): Filter results by AP tag; either :clientId or :deviceSerial must be jointly specified. - band (string): Filter results by band (either '2.4' or '5'). - ssid (integer): Filter results by SSID number. """ kwargs.update(locals()) if 'band' in kwargs: options = ['2.4', '5'] assert kwargs['band'] in options, f'''"band" cannot be "{kwargs['band']}", & must be set to one of: {options}''' metadata = { 'tags': ['wireless', 'monitor', 'usageHistory'], 'operation': 'getNetworkWirelessUsageHistory' } resource = f'/networks/{networkId}/wireless/usageHistory' query_params = ['t0', 't1', 'timespan', 'resolution', 'autoResolution', 'clientId', 'deviceSerial', 'apTag', 'band', 'ssid', ] params = {k.strip(): v for k, v in kwargs.items() if k.strip() in query_params} return self._session.get(metadata, resource, params)