Skip to content

Commit 31f44e3

Browse files
author
Shiyue Cheng
committed
updated w/ release 1.1.0b4
1 parent 81800a7 commit 31f44e3

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

meraki/__init__.py

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

23-
__version__ = '1.1.0b3'
23+
__version__ = '1.1.0b4'
2424

2525
class DashboardAPI(object):
2626
"""

meraki/aio/api/networks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ def getNetworkEvents(self, networkId: str, total_pages=1, direction='prev', even
496496
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
497497
- direction (string): direction to paginate, either "next" or "prev" (default) page
498498
- event_log_end_time (string): ISO8601 Zulu/UTC time, to use in conjunction with startingAfter, to retrieve events within a time window
499-
- 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
499+
- 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 environmental
500500
- includedEventTypes (array): A list of event types. The returned events will be filtered to only include events with these types.
501501
- excludedEventTypes (array): A list of event types. The returned events will be filtered to exclude events with these types.
502502
- deviceMac (string): The MAC address of the Meraki device which the list of events will be filtered with

meraki/aio/api/organizations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ def createOrganizationNetwork(self, organizationId: str, name: str, productTypes
10391039
10401040
- organizationId (string): (required)
10411041
- name (string): The name of the new network
1042-
- productTypes (array): The product type(s) of the new network. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway. If more than one type is included, the network will be a combined network.
1042+
- productTypes (array): The product type(s) of the new network. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, environmental. If more than one type is included, the network will be a combined network.
10431043
- tags (array): A list of tags to be applied to the network
10441044
- timeZone (string): The timezone of the network. For a list of allowed timezones, please see the 'TZ' column in the table in <a target='_blank' href='https://en.wikipedia.org/wiki/List_of_tz_database_time_zones'>this article.</a>
10451045
- copyFromNetworkId (string): The ID of the network to copy configuration from. Other provided parameters will override the copied configuration, except type which must match this network's type exactly.

meraki/api/networks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ def getNetworkEvents(self, networkId: str, total_pages=1, direction='prev', even
496496
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
497497
- direction (string): direction to paginate, either "next" or "prev" (default) page
498498
- event_log_end_time (string): ISO8601 Zulu/UTC time, to use in conjunction with startingAfter, to retrieve events within a time window
499-
- 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
499+
- 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 environmental
500500
- includedEventTypes (array): A list of event types. The returned events will be filtered to only include events with these types.
501501
- excludedEventTypes (array): A list of event types. The returned events will be filtered to exclude events with these types.
502502
- deviceMac (string): The MAC address of the Meraki device which the list of events will be filtered with

meraki/api/organizations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ def createOrganizationNetwork(self, organizationId: str, name: str, productTypes
10391039
10401040
- organizationId (string): (required)
10411041
- name (string): The name of the new network
1042-
- productTypes (array): The product type(s) of the new network. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway. If more than one type is included, the network will be a combined network.
1042+
- productTypes (array): The product type(s) of the new network. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, environmental. If more than one type is included, the network will be a combined network.
10431043
- tags (array): A list of tags to be applied to the network
10441044
- timeZone (string): The timezone of the network. For a list of allowed timezones, please see the 'TZ' column in the table in <a target='_blank' href='https://en.wikipedia.org/wiki/List_of_tz_database_time_zones'>this article.</a>
10451045
- copyFromNetworkId (string): The ID of the network to copy configuration from. Other provided parameters will override the copied configuration, except type which must match this network's type exactly.

0 commit comments

Comments
 (0)