Skip to content

Commit 37cd136

Browse files
Automatically regenerated library. (#232)
Co-authored-by: GitHub Action <support@meraki.com> Fixes #231
1 parent 559e4d3 commit 37cd136

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

meraki/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
)
4444
from meraki.rest_session import *
4545

46-
__version__ = '1.39.0'
46+
__version__ = '1.39.1'
4747

4848

4949
class DashboardAPI(object):

meraki/aio/api/networks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def getNetworkClients(self, networkId: str, total_pages=1, direction='next', **k
246246
- direction (string): direction to paginate, either "next" (default) or "prev" page
247247
- t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
248248
- 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 1 day.
249-
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 1000. Default is 10.
249+
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 5000. Default is 10.
250250
- 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.
251251
- 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.
252252
- statuses (array): Filters clients based on status. Can be one of 'Online' or 'Offline'.

meraki/aio/api/organizations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@ def getOrganizationInventoryDevices(self, organizationId: str, total_pages=1, di
21172117
- usedState (string): Filter results by used or unused inventory. Accepted values are 'used' or 'unused'.
21182118
- search (string): Search for devices in inventory based on serial number, mac address, or model.
21192119
- macs (array): Search for devices in inventory based on mac addresses.
2120-
- networkIds (array): Search for devices in inventory based on network ids.
2120+
- networkIds (array): Search for devices in inventory based on network ids. Use explicit 'null' value to get available devices only.
21212121
- serials (array): Search for devices in inventory based on serials.
21222122
- models (array): Search for devices in inventory based on model.
21232123
- orderNumbers (array): Search for devices in inventory based on order numbers.

meraki/aio/api/sm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def getNetworkSmDevices(self, networkId: str, total_pages=1, direction='next', *
6868
ownerEmail, ownerUsername, osBuild, publicIp, phoneNumber, diskInfoJson, deviceCapacity, isManaged, hadMdm, isSupervised, meid, imei, iccid,
6969
simCarrierNetwork, cellularDataUsed, isHotspotEnabled, createdAt, batteryEstCharge, quarantined, avName, avRunning, asName, fwName,
7070
isRooted, loginRequired, screenLockEnabled, screenLockDelay, autoLoginDisabled, autoTags, hasMdm, hasDesktopAgent, diskEncryptionEnabled,
71-
hardwareEncryptionCaps, passCodeLock, usesHardwareKeystore, androidSecurityPatchVersion, and url.
71+
hardwareEncryptionCaps, passCodeLock, usesHardwareKeystore, androidSecurityPatchVersion, cellular, and url.
7272
- wifiMacs (array): Filter devices by wifi mac(s).
7373
- serials (array): Filter devices by serial(s).
7474
- ids (array): Filter devices by id(s).

meraki/api/networks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def getNetworkClients(self, networkId: str, total_pages=1, direction='next', **k
246246
- direction (string): direction to paginate, either "next" (default) or "prev" page
247247
- t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
248248
- 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 1 day.
249-
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 1000. Default is 10.
249+
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 5000. Default is 10.
250250
- 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.
251251
- 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.
252252
- statuses (array): Filters clients based on status. Can be one of 'Online' or 'Offline'.

meraki/api/organizations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@ def getOrganizationInventoryDevices(self, organizationId: str, total_pages=1, di
21172117
- usedState (string): Filter results by used or unused inventory. Accepted values are 'used' or 'unused'.
21182118
- search (string): Search for devices in inventory based on serial number, mac address, or model.
21192119
- macs (array): Search for devices in inventory based on mac addresses.
2120-
- networkIds (array): Search for devices in inventory based on network ids.
2120+
- networkIds (array): Search for devices in inventory based on network ids. Use explicit 'null' value to get available devices only.
21212121
- serials (array): Search for devices in inventory based on serials.
21222122
- models (array): Search for devices in inventory based on model.
21232123
- orderNumbers (array): Search for devices in inventory based on order numbers.

meraki/api/sm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def getNetworkSmDevices(self, networkId: str, total_pages=1, direction='next', *
6868
ownerEmail, ownerUsername, osBuild, publicIp, phoneNumber, diskInfoJson, deviceCapacity, isManaged, hadMdm, isSupervised, meid, imei, iccid,
6969
simCarrierNetwork, cellularDataUsed, isHotspotEnabled, createdAt, batteryEstCharge, quarantined, avName, avRunning, asName, fwName,
7070
isRooted, loginRequired, screenLockEnabled, screenLockDelay, autoLoginDisabled, autoTags, hasMdm, hasDesktopAgent, diskEncryptionEnabled,
71-
hardwareEncryptionCaps, passCodeLock, usesHardwareKeystore, androidSecurityPatchVersion, and url.
71+
hardwareEncryptionCaps, passCodeLock, usesHardwareKeystore, androidSecurityPatchVersion, cellular, and url.
7272
- wifiMacs (array): Filter devices by wifi mac(s).
7373
- serials (array): Filter devices by serial(s).
7474
- ids (array): Filter devices by id(s).

0 commit comments

Comments
 (0)