Skip to content

Commit b25afbe

Browse files
TKIPisalegacycipherGitHub Action
andauthored
Automatically regenerated library. (#244)
Co-authored-by: GitHub Action <support@meraki.com>
1 parent e4673d4 commit b25afbe

File tree

15 files changed

+48
-46
lines changed

15 files changed

+48
-46
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.41.0'
46+
__version__ = '1.42.0'
4747

4848

4949
class DashboardAPI(object):

meraki/aio/api/licensing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def claimAdministeredLicensingSubscriptionSubscriptions(self, claimKey: str, org
5454
5555
- claimKey (string): The subscription's claim key
5656
- organizationId (string): The id of the organization claiming the subscription
57+
- validate (boolean): Check if the provided claim key is valid and can be claimed into the organization.
5758
- name (string): Friendly name to identify the subscription
5859
- description (string): Extra details or notes about the subscription
5960
"""

meraki/aio/api/organizations.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1588,9 +1588,9 @@ def getOrganizationDevicesAvailabilitiesChangeHistory(self, organizationId: str,
15881588
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 1000. Default is 1000.
15891589
- 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.
15901590
- 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.
1591-
- t0 (string): The beginning of the timespan for the data. The maximum lookback period is 14 days from today.
1592-
- t1 (string): The end of the timespan for the data. t1 can be a maximum of 14 days after t0.
1593-
- 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 14 days. The default is 1 day.
1591+
- t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
1592+
- t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
1593+
- 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.
15941594
- serials (array): Optional parameter to filter device availabilities history by device serial numbers
15951595
- productTypes (array): Optional parameter to filter device availabilities history by device product types
15961596
- networkIds (array): Optional parameter to filter device availabilities history by network IDs

meraki/aio/api/sm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def lockNetworkSmDevices(self, networkId: str, **kwargs):
166166
- wifiMacs (array): The wifiMacs of the devices to be locked.
167167
- ids (array): The ids of the devices to be locked.
168168
- serials (array): The serials of the devices to be locked.
169-
- scope (array): The scope (one of all, none, withAny, withAll, withoutAny, or withoutAll) and a set of tags of the devices to be wiped.
169+
- scope (array): The scope (one of all, none, withAny, withAll, withoutAny, or withoutAll) and a set of tags of the devices to be locked.
170170
- pin (integer): The pin number for locking macOS devices (a six digit number). Required only for macOS devices.
171171
"""
172172

meraki/api/batch/appliance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,7 @@ def updateNetworkApplianceVpnBgp(self, networkId: str, enabled: bool, **kwargs):
940940

941941
def updateNetworkApplianceVpnSiteToSiteVpn(self, networkId: str, mode: str, **kwargs):
942942
"""
943-
**Update the site-to-site VPN settings of a network**
943+
**Update the site-to-site VPN settings of a network. Only valid for MX networks in NAT mode.**
944944
https://developer.cisco.com/meraki/api-v1/#!update-network-appliance-vpn-site-to-site-vpn
945945
946946
- networkId (string): Network ID
@@ -1026,7 +1026,7 @@ def swapNetworkApplianceWarmSpare(self, networkId: str):
10261026

10271027
action = {
10281028
"resource": resource,
1029-
"operation": "create",
1029+
"operation": "swap",
10301030
}
10311031
return action
10321032

meraki/api/batch/camera.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def updateDeviceCameraVideoSettings(self, serial: str, **kwargs):
154154

155155
def updateDeviceCameraWirelessProfiles(self, serial: str, ids: dict):
156156
"""
157-
**Assign wireless profiles to the given camera**
157+
**Assign wireless profiles to the given camera. Incremental updates are not supported, all profile assignment need to be supplied at once.**
158158
https://developer.cisco.com/meraki/api-v1/#!update-device-camera-wireless-profiles
159159
160160
- serial (string): Serial

meraki/api/batch/insight.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def __init__(self):
99

1010
def createOrganizationInsightMonitoredMediaServer(self, organizationId: str, name: str, address: str, **kwargs):
1111
"""
12-
**Add a media server to be monitored for this organization**
12+
**Add a media server to be monitored for this organization. Only valid for organizations with Meraki Insight.**
1313
https://developer.cisco.com/meraki/api-v1/#!create-organization-insight-monitored-media-server
1414
1515
- organizationId (string): Organization ID
@@ -42,7 +42,7 @@ def createOrganizationInsightMonitoredMediaServer(self, organizationId: str, nam
4242

4343
def updateOrganizationInsightMonitoredMediaServer(self, organizationId: str, monitoredMediaServerId: str, **kwargs):
4444
"""
45-
**Update a monitored media server for this organization**
45+
**Update a monitored media server for this organization. Only valid for organizations with Meraki Insight.**
4646
https://developer.cisco.com/meraki/api-v1/#!update-organization-insight-monitored-media-server
4747
4848
- organizationId (string): Organization ID
@@ -76,7 +76,7 @@ def updateOrganizationInsightMonitoredMediaServer(self, organizationId: str, mon
7676

7777
def deleteOrganizationInsightMonitoredMediaServer(self, organizationId: str, monitoredMediaServerId: str):
7878
"""
79-
**Delete a monitored media server from this organization**
79+
**Delete a monitored media server from this organization. Only valid for organizations with Meraki Insight.**
8080
https://developer.cisco.com/meraki/api-v1/#!delete-organization-insight-monitored-media-server
8181
8282
- organizationId (string): Organization ID

meraki/api/batch/networks.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def bindNetwork(self, networkId: str, configTemplateId: str, **kwargs):
8989
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
9090
action = {
9191
"resource": resource,
92-
"operation": "create",
92+
"operation": "bind",
9393
"body": payload
9494
}
9595
return action
@@ -101,7 +101,7 @@ def bindNetwork(self, networkId: str, configTemplateId: str, **kwargs):
101101

102102
def provisionNetworkClients(self, networkId: str, clients: list, devicePolicy: str, **kwargs):
103103
"""
104-
**Provisions a client with a name and policy**
104+
**Provisions a client with a name and policy. Clients can be provisioned before they associate to the network.**
105105
https://developer.cisco.com/meraki/api-v1/#!provision-network-clients
106106
107107
- networkId (string): Network ID
@@ -128,7 +128,7 @@ def provisionNetworkClients(self, networkId: str, clients: list, devicePolicy: s
128128
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
129129
action = {
130130
"resource": resource,
131-
"operation": "create",
131+
"operation": "provision",
132132
"body": payload
133133
}
134134
return action
@@ -159,7 +159,7 @@ def claimNetworkDevices(self, networkId: str, serials: list):
159159
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
160160
action = {
161161
"resource": resource,
162-
"operation": "create",
162+
"operation": "claim",
163163
"body": payload
164164
}
165165
return action
@@ -194,7 +194,7 @@ def vmxNetworkDevicesClaim(self, networkId: str, size: str):
194194
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
195195
action = {
196196
"resource": resource,
197-
"operation": "create",
197+
"operation": "claim",
198198
"body": payload
199199
}
200200
return action
@@ -225,7 +225,7 @@ def removeNetworkDevices(self, networkId: str, serial: str):
225225
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
226226
action = {
227227
"resource": resource,
228-
"operation": "create",
228+
"operation": "remove",
229229
"body": payload
230230
}
231231
return action
@@ -800,7 +800,7 @@ def splitNetwork(self, networkId: str):
800800

801801
action = {
802802
"resource": resource,
803-
"operation": "create",
803+
"operation": "split",
804804
}
805805
return action
806806

@@ -830,7 +830,7 @@ def unbindNetwork(self, networkId: str, **kwargs):
830830
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
831831
action = {
832832
"resource": resource,
833-
"operation": "create",
833+
"operation": "unbind",
834834
"body": payload
835835
}
836836
return action
@@ -937,7 +937,7 @@ def createNetworkWebhooksPayloadTemplate(self, networkId: str, name: str, **kwar
937937

938938
def deleteNetworkWebhooksPayloadTemplate(self, networkId: str, payloadTemplateId: str):
939939
"""
940-
**Destroy a webhook payload template for a network**
940+
**Destroy a webhook payload template for a network. Does not work for included templates ('wpt_00001', 'wpt_00002', 'wpt_00003', 'wpt_00004', 'wpt_00005' or 'wpt_00006')**
941941
https://developer.cisco.com/meraki/api-v1/#!delete-network-webhooks-payload-template
942942
943943
- networkId (string): Network ID

meraki/api/batch/organizations.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def updateOrganizationAdaptivePolicyAcl(self, organizationId: str, aclId: str, *
8686

8787
def deleteOrganizationAdaptivePolicyAcl(self, organizationId: str, aclId: str):
8888
"""
89-
**Deletes the specified adaptive policy ACL**
89+
**Deletes the specified adaptive policy ACL. Note this adaptive policy ACL will also be removed from policies using it.**
9090
https://developer.cisco.com/meraki/api-v1/#!delete-organization-adaptive-policy-acl
9191
9292
- organizationId (string): Organization ID
@@ -146,7 +146,7 @@ def createOrganizationAdaptivePolicyGroup(self, organizationId: str, name: str,
146146

147147
def updateOrganizationAdaptivePolicyGroup(self, organizationId: str, id: str, **kwargs):
148148
"""
149-
**Updates an adaptive policy group**
149+
**Updates an adaptive policy group. If updating "Infrastructure", only the SGT is allowed. Cannot update "Unknown".**
150150
https://developer.cisco.com/meraki/api-v1/#!update-organization-adaptive-policy-group
151151
152152
- organizationId (string): Organization ID
@@ -682,7 +682,7 @@ def updateOrganizationEarlyAccessFeaturesOptIn(self, organizationId: str, optInI
682682

683683
def assignOrganizationLicensesSeats(self, organizationId: str, licenseId: str, networkId: str, seatCount: int):
684684
"""
685-
**Assign SM seats to a network**
685+
**Assign SM seats to a network. This will increase the managed SM device limit of the network**
686686
https://developer.cisco.com/meraki/api-v1/#!assign-organization-licenses-seats
687687
688688
- organizationId (string): Organization ID
@@ -703,7 +703,7 @@ def assignOrganizationLicensesSeats(self, organizationId: str, licenseId: str, n
703703
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
704704
action = {
705705
"resource": resource,
706-
"operation": "create",
706+
"operation": "assignSeats",
707707
"body": payload
708708
}
709709
return action
@@ -715,7 +715,7 @@ def assignOrganizationLicensesSeats(self, organizationId: str, licenseId: str, n
715715

716716
def moveOrganizationLicenses(self, organizationId: str, destOrganizationId: str, licenseIds: list):
717717
"""
718-
**Move licenses to another organization**
718+
**Move licenses to another organization. This will also move any devices that the licenses are assigned to**
719719
https://developer.cisco.com/meraki/api-v1/#!move-organization-licenses
720720
721721
- organizationId (string): Organization ID
@@ -735,7 +735,7 @@ def moveOrganizationLicenses(self, organizationId: str, destOrganizationId: str,
735735
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
736736
action = {
737737
"resource": resource,
738-
"operation": "create",
738+
"operation": "move",
739739
"body": payload
740740
}
741741
return action
@@ -768,7 +768,7 @@ def moveOrganizationLicensesSeats(self, organizationId: str, destOrganizationId:
768768
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
769769
action = {
770770
"resource": resource,
771-
"operation": "create",
771+
"operation": "moveSeats",
772772
"body": payload
773773
}
774774
return action
@@ -780,7 +780,7 @@ def moveOrganizationLicensesSeats(self, organizationId: str, destOrganizationId:
780780

781781
def renewOrganizationLicensesSeats(self, organizationId: str, licenseIdToRenew: str, unusedLicenseId: str):
782782
"""
783-
**Renew SM seats of a license**
783+
**Renew SM seats of a license. This will extend the license expiration date of managed SM devices covered by this license**
784784
https://developer.cisco.com/meraki/api-v1/#!renew-organization-licenses-seats
785785
786786
- organizationId (string): Organization ID
@@ -800,7 +800,7 @@ def renewOrganizationLicensesSeats(self, organizationId: str, licenseIdToRenew:
800800
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
801801
action = {
802802
"resource": resource,
803-
"operation": "create",
803+
"operation": "renewSeats",
804804
"body": payload
805805
}
806806
return action
@@ -944,7 +944,7 @@ def combineOrganizationNetworks(self, organizationId: str, name: str, networkIds
944944
payload = {k.strip(): v for k, v in kwargs.items() if k.strip() in body_params}
945945
action = {
946946
"resource": resource,
947-
"operation": "create",
947+
"operation": "combine",
948948
"body": payload
949949
}
950950
return action

meraki/api/batch/sensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def deleteNetworkSensorAlertsProfile(self, networkId: str, id: str):
137137

138138
def updateNetworkSensorMqttBroker(self, networkId: str, mqttBrokerId: str, enabled: bool):
139139
"""
140-
**Update the sensor settings of an MQTT broker**
140+
**Update the sensor settings of an MQTT broker. To update the broker itself, use /networks/{networkId}/mqttBrokers/{mqttBrokerId}.**
141141
https://developer.cisco.com/meraki/api-v1/#!update-network-sensor-mqtt-broker
142142
143143
- networkId (string): Network ID

0 commit comments

Comments
 (0)