-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexports.py
More file actions
88 lines (66 loc) · 2.42 KB
/
Copy pathexports.py
File metadata and controls
88 lines (66 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
"""
--------------------------------------------------------------------------------
------------------------- Mist API Python CLI Session --------------------------
Written by: Thomas Munzer (tmunzer@juniper.net)
Github : https://github.com/tmunzer/mistapi_python
This package is licensed under the MIT License.
--------------------------------------------------------------------------------
"""
from mistapi import APISession as _APISession
from mistapi.__api_response import APIResponse as _APIResponse
def getOrgE911Report(mist_session: _APISession, org_id: str) -> _APIResponse:
"""
API doc: https://www.juniper.net/documentation/us/en/software/mist/api/http/api/orgs/reports/get-org-e911-report
PARAMS
-----------
mistapi.APISession : mist_session
mistapi session including authentication and Mist host information
PATH PARAMS
-----------
org_id : str
RETURN
-----------
mistapi.APIResponse
response from the API call
"""
uri = f"/api/v1/orgs/{org_id}/exports/e911_report"
query_params: dict[str, str] = {}
resp = mist_session.mist_get(uri=uri, query=query_params)
return resp
def disableOrgE911Report(mist_session: _APISession, org_id: str) -> _APIResponse:
"""
API doc: https://www.juniper.net/documentation/us/en/software/mist/api/http/api/orgs/reports/disable-org-e911-report
PARAMS
-----------
mistapi.APISession : mist_session
mistapi session including authentication and Mist host information
PATH PARAMS
-----------
org_id : str
RETURN
-----------
mistapi.APIResponse
response from the API call
"""
uri = f"/api/v1/orgs/{org_id}/exports/e911_report"
query_params: dict[str, str] = {}
resp = mist_session.mist_delete(uri=uri, query=query_params)
return resp
def enableOrgE911Report(mist_session: _APISession, org_id: str) -> _APIResponse:
"""
API doc: https://www.juniper.net/documentation/us/en/software/mist/api/http/api/orgs/reports/enable-org-e911-report
PARAMS
-----------
mistapi.APISession : mist_session
mistapi session including authentication and Mist host information
PATH PARAMS
-----------
org_id : str
RETURN
-----------
mistapi.APIResponse
response from the API call
"""
uri = f"/api/v1/orgs/{org_id}/exports/e911_report"
resp = mist_session.mist_post(uri=uri)
return resp