Skip to content

Commit

Permalink
update minimum python version to 3.10 to avoid urlib issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tmunzer committed Apr 12, 2024
1 parent bef831e commit f42569b
Show file tree
Hide file tree
Showing 110 changed files with 135 additions and 135 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ build-backend = "setuptools.build_meta"

[project]
name = "mistapi"
version = "0.47.3"
version = "0.47.4"
authors = [{name="Thomas Munzer", email="[email protected]"}]
description = "Python package to simplify the Mist System APIs usage"
keywords = ["Mist", "Juniper", "API"]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/alarm_defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listAlarmDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listAlarmDefinitions")
def getAlarmDefinitions(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listAlarmDefinitions
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/ap_channels.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listApChannels")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listApChannels")
def getApChannels(mist_session:_APISession, country_code:str=None) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listApChannels
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/ap_led_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listApLedDefinition")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listApLedDefinition")
def getApLedDefinition(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listApLedDefinition
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listApplications")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listApplications")
def getApplications(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listApplications
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/client_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listClientEventsDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listClientEventsDefinitions")
def getClientEventsDefinitions(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listClientEventsDefinitions
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/countries.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listCountryCodes")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listCountryCodes")
def getCountryCodes(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listCountryCodes
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/device_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listDeviceEventsDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listDeviceEventsDefinitions")
def getDeviceEventsDefinitions(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listDeviceEventsDefinitions
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/device_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listDeviceModels")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listDeviceModels")
def getDeviceModels(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listDeviceModels
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/gateway_applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listGatewayApplications")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listGatewayApplications")
def getGatewayApplications(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listGatewayApplications
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/insight_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listInsightMetrics")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listInsightMetrics")
def getInsightMetrics(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listInsightMetrics
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/languages.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listSiteLanguages")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listSiteLanguages")
def getSiteLanguages(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listSiteLanguages
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/mxedge_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listMxEdgeEventsDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listMxEdgeEventsDefinitions")
def getMxEdgeEventsDefinitions(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listMxEdgeEventsDefinitions
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/mxedge_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listMxEdgeModels")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listMxEdgeModels")
def getMxEdgeModels(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listMxEdgeModels
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/nac_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listNacEventsDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listNacEventsDefinitions")
def getNacEventsDefinitions(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listNacEventsDefinitions
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/otherdevice_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listOtherDeviceEventsDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listOtherDeviceEventsDefinitions")
def getOtherDeviceEventsDefinitions(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listOtherDeviceEventsDefinitions
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/otherdevice_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listSupportedOtherDeviceModels")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listSupportedOtherDeviceModels")
def getSupportedOtherDeviceModels(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listSupportedOtherDeviceModels
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/const/traffic_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listTrafficTypes")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listTrafficTypes")
def getTrafficTypes(mist_session:_APISession) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listTrafficTypes
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/installer/orgs/alarmtemplates.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listInstallerAlarmTemplates")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listInstallerAlarmTemplates")
def getInstallerAlarmTemplates(mist_session:_APISession, org_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listInstallerAlarmTemplates
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/installer/orgs/deviceprofiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listInstallerDeviceProfiles")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listInstallerDeviceProfiles")
def getInstallerDeviceProfiles(mist_session:_APISession, org_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listInstallerDeviceProfiles
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/installer/orgs/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listInstallerListOfRenctlyClaimedDevices")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listInstallerListOfRenctlyClaimedDevices")
def getInstallerListOfRenctlyClaimedDevices(mist_session:_APISession, org_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listInstallerListOfRenctlyClaimedDevices
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/installer/orgs/rftemplates.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listInstallerRfTemplatesNames")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listInstallerRfTemplatesNames")
def getInstallerRfTemplatesNames(mist_session:_APISession, org_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listInstallerRfTemplatesNames
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/installer/orgs/secpolicies.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listInstallerSecPolicies")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listInstallerSecPolicies")
def getInstallerSecPolicies(mist_session:_APISession, org_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listInstallerSecPolicies
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/installer/orgs/sitegroups.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listInstallerSiteGroups")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listInstallerSiteGroups")
def getInstallerSiteGroups(mist_session:_APISession, org_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listInstallerSiteGroups
Expand Down
4 changes: 2 additions & 2 deletions src/mistapi/api/v1/installer/orgs/sites.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listInstallerSites")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listInstallerSites")
def getInstallerSites(mist_session:_APISession, org_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listInstallerSites
Expand Down Expand Up @@ -89,7 +89,7 @@ def createOrUpdateInstallerSites(mist_session:_APISession, org_id:str, site_name
resp = mist_session.mist_put(uri=uri, body=body)
return resp

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listInstallerMaps")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listInstallerMaps")
def getInstallerMaps(mist_session:_APISession, org_id:str, site_name:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listInstallerMaps
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/msps/admins.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listMspAdmins")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listMspAdmins")
def getMspAdmins(mist_session:_APISession, msp_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listMspAdmins
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/msps/licenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listMspLicenses")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listMspLicenses")
def getMspLicenses(mist_session:_APISession, msp_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listMspLicenses
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/msps/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listMspLogs")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listMspLogs")
def getMspLogs(mist_session:_APISession, msp_id:str, site_id:str=None, admin_name:str=None, message:str=None, sort:str=None, start:int=None, end:int=None, limit:int=100, page:int=1, duration:str="1d") -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listMspLogs
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/msps/orggroups.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listMspOrgGroups")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listMspOrgGroups")
def getMspOrgGroups(mist_session:_APISession, msp_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listMspOrgGroups
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/msps/orgs.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listMspOrgs")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listMspOrgs")
def getMspOrgs(mist_session:_APISession, msp_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listMspOrgs
Expand Down
2 changes: 1 addition & 1 deletion src/mistapi/api/v1/msps/ssoroles.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listMspSsoRoles")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listMspSsoRoles")
def getMspSsoRoles(mist_session:_APISession, msp_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listMspSsoRoles
Expand Down
4 changes: 2 additions & 2 deletions src/mistapi/api/v1/msps/ssos.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mistapi.__api_response import APIResponse as _APIResponse
import deprecation

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listMspSsos")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listMspSsos")
def getMspSsos(mist_session:_APISession, msp_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listMspSsos
Expand Down Expand Up @@ -164,7 +164,7 @@ def updateMspSso(mist_session:_APISession, msp_id:str, sso_id:str, body:object)
resp = mist_session.mist_put(uri=uri, body=body)
return resp

@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.3", details="function replaced with listMspSsoLatestFailures")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.4", details="function replaced with listMspSsoLatestFailures")
def getMspSsoLatestFailures(mist_session:_APISession, msp_id:str, sso_id:str) -> _APIResponse:
"""
API doc: https://doc.mist-lab.fr/#operation/listMspSsoLatestFailures
Expand Down
Loading

0 comments on commit f42569b

Please sign in to comment.