Skip to content

Commit 51a886b

Browse files
TKIPisalegacycipherGitHub Action
andauthored
Automatically regenerated library. (#227)
Co-authored-by: GitHub Action <support@meraki.com>
1 parent 8853d8b commit 51a886b

8 files changed

Lines changed: 24 additions & 24 deletions

File tree

meraki/aio/api/networks.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def getNetworkEvents(self, networkId: str, total_pages=1, direction='prev', even
730730
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
731731
- direction (string): direction to paginate, either "next" or "prev" (default) page
732732
- 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, cellularGateway, and cloudGateway
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
734734
- includedEventTypes (array): A list of event types. The returned events will be filtered to only include events with these types.
735735
- excludedEventTypes (array): A list of event types. The returned events will be filtered to exclude events with these types.
736736
- deviceMac (string): The MAC address of the Meraki device which the list of events will be filtered with
@@ -749,7 +749,7 @@ def getNetworkEvents(self, networkId: str, total_pages=1, direction='prev', even
749749
kwargs.update(locals())
750750

751751
if 'productType' in kwargs:
752-
options = ['appliance', 'camera', 'cellularGateway', 'cloudGateway', 'switch', 'systemsManager', 'wireless']
752+
options = ['appliance', 'camera', 'cellularGateway', 'switch', 'systemsManager', 'wireless']
753753
assert kwargs['productType'] in options, f'''"productType" cannot be "{kwargs['productType']}", & must be set to one of: {options}'''
754754

755755
metadata = {
@@ -852,7 +852,7 @@ def createNetworkFirmwareUpgradesRollback(self, networkId: str, reasons: list, *
852852
kwargs.update(locals())
853853

854854
if 'product' in kwargs:
855-
options = ['appliance', 'camera', 'cellularGateway', 'cloudGateway', 'switch', 'switchCatalyst', 'wireless']
855+
options = ['appliance', 'camera', 'cellularGateway', 'switch', 'switchCatalyst', 'wireless']
856856
assert kwargs['product'] in options, f'''"product" cannot be "{kwargs['product']}", & must be set to one of: {options}'''
857857

858858
metadata = {
@@ -2275,7 +2275,7 @@ def updateNetworkTrafficAnalysis(self, networkId: str, **kwargs):
22752275

22762276
def getNetworkTrafficShapingApplicationCategories(self, networkId: str):
22772277
"""
2278-
**Returns the application categories for traffic shaping rules.**
2278+
**Returns the application categories for traffic shaping rules**
22792279
https://developer.cisco.com/meraki/api-v1/#!get-network-traffic-shaping-application-categories
22802280
22812281
- networkId (string): Network ID

meraki/aio/api/organizations.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1492,7 +1492,7 @@ def getOrganizationDevices(self, organizationId: str, total_pages=1, direction='
14921492
- 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.
14931493
- configurationUpdatedAfter (string): Filter results by whether or not the device's configuration has been updated after the given timestamp
14941494
- networkIds (array): Optional parameter to filter devices by network.
1495-
- productTypes (array): Optional parameter to filter devices by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, sensor, and cloudGateway.
1495+
- productTypes (array): Optional parameter to filter devices by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
14961496
- tags (array): Optional parameter to filter devices by tags.
14971497
- tagsFilterType (string): Optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return networks which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
14981498
- name (string): Optional parameter to filter devices by name. All returned devices will have a name that contains the search term or is an exact match.
@@ -1724,7 +1724,7 @@ def getOrganizationDevicesStatuses(self, organizationId: str, total_pages=1, dir
17241724
- networkIds (array): Optional parameter to filter devices by network ids.
17251725
- serials (array): Optional parameter to filter devices by serials.
17261726
- statuses (array): Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
1727-
- productTypes (array): An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, sensor, and cloudGateway.
1727+
- productTypes (array): An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
17281728
- models (array): Optional parameter to filter devices by models.
17291729
- tags (array): An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
17301730
- tagsFilterType (string): An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
@@ -1762,7 +1762,7 @@ def getOrganizationDevicesStatusesOverview(self, organizationId: str, **kwargs):
17621762
https://developer.cisco.com/meraki/api-v1/#!get-organization-devices-statuses-overview
17631763
17641764
- organizationId (string): Organization ID
1765-
- productTypes (array): An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, sensor, and cloudGateway.
1765+
- productTypes (array): An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
17661766
- networkIds (array): An optional parameter to filter device statuses by network.
17671767
"""
17681768

@@ -2004,8 +2004,8 @@ def getOrganizationFirmwareUpgrades(self, organizationId: str, **kwargs):
20042004
https://developer.cisco.com/meraki/api-v1/#!get-organization-firmware-upgrades
20052005
20062006
- organizationId (string): Organization ID
2007-
- status (array): The status of an upgrade
2008-
- productTypes (array): The product type in a given upgrade ID
2007+
- status (array): Optional parameter to filter the upgrade by status.
2008+
- productTypes (array): Optional parameter to filter the upgrade by product type.
20092009
"""
20102010

20112011
kwargs.update(locals())
@@ -2117,7 +2117,7 @@ def getOrganizationInventoryDevices(self, organizationId: str, total_pages=1, di
21172117
- orderNumbers (array): Search for devices in inventory based on order numbers.
21182118
- tags (array): Filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
21192119
- tagsFilterType (string): To use with 'tags' parameter, to filter devices which contain ANY or ALL given tags. Accepted values are 'withAnyTags' or 'withAllTags', default is 'withAnyTags'.
2120-
- productTypes (array): Filter devices by product type. Accepted values are appliance, camera, cellularGateway, cloudGateway, sensor, switch, systemsManager, and wireless.
2120+
- productTypes (array): Filter devices by product type. Accepted values are appliance, camera, cellularGateway, sensor, switch, systemsManager, and wireless.
21212121
"""
21222122

21232123
kwargs.update(locals())

meraki/aio/api/wireless.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2092,7 +2092,7 @@ def updateNetworkWirelessSsidSplashSettings(self, networkId: str, number: str, *
20922092

20932093
def updateNetworkWirelessSsidTrafficShapingRules(self, networkId: str, number: str, **kwargs):
20942094
"""
2095-
**Update the traffic shaping settings for an SSID on an MR network**
2095+
**Update the traffic shaping rules for an SSID on an MR network.**
20962096
https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-traffic-shaping-rules
20972097
20982098
- networkId (string): Network ID

meraki/api/batch/networks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def createNetworkFirmwareUpgradesRollback(self, networkId: str, reasons: list, *
283283
kwargs.update(locals())
284284

285285
if 'product' in kwargs:
286-
options = ['appliance', 'camera', 'cellularGateway', 'cloudGateway', 'switch', 'switchCatalyst', 'wireless']
286+
options = ['appliance', 'camera', 'cellularGateway', 'switch', 'switchCatalyst', 'wireless']
287287
assert kwargs['product'] in options, f'''"product" cannot be "{kwargs['product']}", & must be set to one of: {options}'''
288288

289289
metadata = {

meraki/api/batch/wireless.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ def updateNetworkWirelessSsidSplashSettings(self, networkId: str, number: str, *
998998

999999
def updateNetworkWirelessSsidTrafficShapingRules(self, networkId: str, number: str, **kwargs):
10001000
"""
1001-
**Update the traffic shaping settings for an SSID on an MR network**
1001+
**Update the traffic shaping rules for an SSID on an MR network.**
10021002
https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-traffic-shaping-rules
10031003
10041004
- networkId (string): Network ID

meraki/api/networks.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def getNetworkEvents(self, networkId: str, total_pages=1, direction='prev', even
730730
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
731731
- direction (string): direction to paginate, either "next" or "prev" (default) page
732732
- 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, cellularGateway, and cloudGateway
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
734734
- includedEventTypes (array): A list of event types. The returned events will be filtered to only include events with these types.
735735
- excludedEventTypes (array): A list of event types. The returned events will be filtered to exclude events with these types.
736736
- deviceMac (string): The MAC address of the Meraki device which the list of events will be filtered with
@@ -749,7 +749,7 @@ def getNetworkEvents(self, networkId: str, total_pages=1, direction='prev', even
749749
kwargs.update(locals())
750750

751751
if 'productType' in kwargs:
752-
options = ['appliance', 'camera', 'cellularGateway', 'cloudGateway', 'switch', 'systemsManager', 'wireless']
752+
options = ['appliance', 'camera', 'cellularGateway', 'switch', 'systemsManager', 'wireless']
753753
assert kwargs['productType'] in options, f'''"productType" cannot be "{kwargs['productType']}", & must be set to one of: {options}'''
754754

755755
metadata = {
@@ -852,7 +852,7 @@ def createNetworkFirmwareUpgradesRollback(self, networkId: str, reasons: list, *
852852
kwargs.update(locals())
853853

854854
if 'product' in kwargs:
855-
options = ['appliance', 'camera', 'cellularGateway', 'cloudGateway', 'switch', 'switchCatalyst', 'wireless']
855+
options = ['appliance', 'camera', 'cellularGateway', 'switch', 'switchCatalyst', 'wireless']
856856
assert kwargs['product'] in options, f'''"product" cannot be "{kwargs['product']}", & must be set to one of: {options}'''
857857

858858
metadata = {
@@ -2275,7 +2275,7 @@ def updateNetworkTrafficAnalysis(self, networkId: str, **kwargs):
22752275

22762276
def getNetworkTrafficShapingApplicationCategories(self, networkId: str):
22772277
"""
2278-
**Returns the application categories for traffic shaping rules.**
2278+
**Returns the application categories for traffic shaping rules**
22792279
https://developer.cisco.com/meraki/api-v1/#!get-network-traffic-shaping-application-categories
22802280
22812281
- networkId (string): Network ID

meraki/api/organizations.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1492,7 +1492,7 @@ def getOrganizationDevices(self, organizationId: str, total_pages=1, direction='
14921492
- 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.
14931493
- configurationUpdatedAfter (string): Filter results by whether or not the device's configuration has been updated after the given timestamp
14941494
- networkIds (array): Optional parameter to filter devices by network.
1495-
- productTypes (array): Optional parameter to filter devices by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, sensor, and cloudGateway.
1495+
- productTypes (array): Optional parameter to filter devices by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
14961496
- tags (array): Optional parameter to filter devices by tags.
14971497
- tagsFilterType (string): Optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return networks which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
14981498
- name (string): Optional parameter to filter devices by name. All returned devices will have a name that contains the search term or is an exact match.
@@ -1724,7 +1724,7 @@ def getOrganizationDevicesStatuses(self, organizationId: str, total_pages=1, dir
17241724
- networkIds (array): Optional parameter to filter devices by network ids.
17251725
- serials (array): Optional parameter to filter devices by serials.
17261726
- statuses (array): Optional parameter to filter devices by statuses. Valid statuses are ["online", "alerting", "offline", "dormant"].
1727-
- productTypes (array): An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, sensor, and cloudGateway.
1727+
- productTypes (array): An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
17281728
- models (array): Optional parameter to filter devices by models.
17291729
- tags (array): An optional parameter to filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
17301730
- tagsFilterType (string): An optional parameter of value 'withAnyTags' or 'withAllTags' to indicate whether to return devices which contain ANY or ALL of the included tags. If no type is included, 'withAnyTags' will be selected.
@@ -1762,7 +1762,7 @@ def getOrganizationDevicesStatusesOverview(self, organizationId: str, **kwargs):
17621762
https://developer.cisco.com/meraki/api-v1/#!get-organization-devices-statuses-overview
17631763
17641764
- organizationId (string): Organization ID
1765-
- productTypes (array): An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, sensor, and cloudGateway.
1765+
- productTypes (array): An optional parameter to filter device statuses by product type. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, and sensor.
17661766
- networkIds (array): An optional parameter to filter device statuses by network.
17671767
"""
17681768

@@ -2004,8 +2004,8 @@ def getOrganizationFirmwareUpgrades(self, organizationId: str, **kwargs):
20042004
https://developer.cisco.com/meraki/api-v1/#!get-organization-firmware-upgrades
20052005
20062006
- organizationId (string): Organization ID
2007-
- status (array): The status of an upgrade
2008-
- productTypes (array): The product type in a given upgrade ID
2007+
- status (array): Optional parameter to filter the upgrade by status.
2008+
- productTypes (array): Optional parameter to filter the upgrade by product type.
20092009
"""
20102010

20112011
kwargs.update(locals())
@@ -2117,7 +2117,7 @@ def getOrganizationInventoryDevices(self, organizationId: str, total_pages=1, di
21172117
- orderNumbers (array): Search for devices in inventory based on order numbers.
21182118
- tags (array): Filter devices by tags. The filtering is case-sensitive. If tags are included, 'tagsFilterType' should also be included (see below).
21192119
- tagsFilterType (string): To use with 'tags' parameter, to filter devices which contain ANY or ALL given tags. Accepted values are 'withAnyTags' or 'withAllTags', default is 'withAnyTags'.
2120-
- productTypes (array): Filter devices by product type. Accepted values are appliance, camera, cellularGateway, cloudGateway, sensor, switch, systemsManager, and wireless.
2120+
- productTypes (array): Filter devices by product type. Accepted values are appliance, camera, cellularGateway, sensor, switch, systemsManager, and wireless.
21212121
"""
21222122

21232123
kwargs.update(locals())

meraki/api/wireless.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2092,7 +2092,7 @@ def updateNetworkWirelessSsidSplashSettings(self, networkId: str, number: str, *
20922092

20932093
def updateNetworkWirelessSsidTrafficShapingRules(self, networkId: str, number: str, **kwargs):
20942094
"""
2095-
**Update the traffic shaping settings for an SSID on an MR network**
2095+
**Update the traffic shaping rules for an SSID on an MR network.**
20962096
https://developer.cisco.com/meraki/api-v1/#!update-network-wireless-ssid-traffic-shaping-rules
20972097
20982098
- networkId (string): Network ID

0 commit comments

Comments
 (0)