Skip to content

Commit

Permalink
update mistapi specs
Browse files Browse the repository at this point in the history
  • Loading branch information
tmunzer committed May 14, 2024
1 parent f42569b commit 7498ff7
Show file tree
Hide file tree
Showing 111 changed files with 139 additions and 135 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mistapi"
version = "0.47.4"
version = "0.47.5"
authors = [{name="Thomas Munzer", email="[email protected]"}]
description = "Python package to simplify the Mist System APIs usage"
keywords = ["Mist", "Juniper", "API"]
Expand Down
6 changes: 5 additions & 1 deletion src/mistapi/__api_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def set_cloud(self, cloud_uri: str) -> None:
"""
logger.debug("apisession:set_cloud")
self._cloud_uri = None
if cloud_uri in ["api.mistsys.com", "api.ac99.mist.com"]:
if cloud_uri in ["api.mistsys.com", "api.ac99.mist.com", "api.gc1.mistsys.com"]:
self._cloud_uri = cloud_uri
else:
for cloud in CLOUDS:
Expand Down Expand Up @@ -246,6 +246,8 @@ def select_cloud(self) -> None:
self._cloud_uri = "api.mistsys.com"
elif resp == "c":
self._cloud_uri = "api.ac99.mist.com"
elif resp == "g":
self._cloud_uri = "api.gc1.mistsys.com"
else:
try:
resp_num = int(resp)
Expand Down Expand Up @@ -624,6 +626,8 @@ def _set_authenticated(self, authentication_status: bool) -> None:
cookies_ext = ""
elif self._cloud_uri == "api.ac99.mist.com":
cookies_ext= ".ac99"
elif self._cloud_uri == "api.gc1.mistsys.com":
cookies_ext= ".gc1"
else:
cookies_ext = next(
item["cookies_ext"]
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.4", details="function replaced with listAlarmDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listApChannels")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listApLedDefinition")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listApplications")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listClientEventsDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listCountryCodes")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listDeviceEventsDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listDeviceModels")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listGatewayApplications")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listInsightMetrics")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listSiteLanguages")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listMxEdgeEventsDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listMxEdgeModels")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listNacEventsDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listOtherDeviceEventsDefinitions")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listSupportedOtherDeviceModels")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listTrafficTypes")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listInstallerAlarmTemplates")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listInstallerDeviceProfiles")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listInstallerListOfRenctlyClaimedDevices")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listInstallerRfTemplatesNames")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listInstallerSecPolicies")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listInstallerSiteGroups")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listInstallerSites")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listInstallerMaps")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listMspAdmins")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listMspLicenses")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listMspLogs")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listMspOrgGroups")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listMspOrgs")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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.4", details="function replaced with listMspSsoRoles")
@deprecation.deprecated(deprecated_in="0.37.7", removed_in="0.52.0", current_version="0.47.5", 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
Loading

0 comments on commit 7498ff7

Please sign in to comment.