Skip to content

Commit 7e6df34

Browse files
committed
Update version: 20.15.1 and 20.16.2
1 parent d3f88f9 commit 7e6df34

File tree

10,520 files changed

+853330
-94733
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

10,520 files changed

+853330
-94733
lines changed

docs/source/refcards/v20_15/aas/init/index.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ Initialize SDWAN as a Platform
1111

1212
.. code:: python
1313
14-
def init_aas_properties(
15-
payload: Optional[InitBlob] = None,
16-
) -> None: ...
14+
def post(payload: InitBlob) -> None: ...
1715
1816
1917
Example:
@@ -31,7 +29,7 @@ Example:
3129
with create_client(
3230
url=url, username=username, password=password
3331
) as client:
34-
client.aas.init.init_aas_properties()
32+
client.aas.init.post()
3533
3634
3735
.. toctree::

docs/source/refcards/v20_15/aas/reset_credentials.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ SDWAN as a Platform - Manage Credentials
1111

1212
.. code:: python
1313
14-
def reset_credentials(cred_type: str) -> None: ...
14+
def post(cred_type: str) -> None: ...
1515
1616
1717
Example:
@@ -29,6 +29,6 @@ Example:
2929
with create_client(
3030
url=url, username=username, password=password
3131
) as client:
32-
client.aas.reset_credentials.reset_credentials()
32+
client.aas.reset_credentials.post()
3333
3434

docs/source/refcards/v20_15/accesstoken.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ Get Access Token for SecureX Ribbon
1111

1212
.. code:: python
1313
14-
def get_secure_x_access_token(
15-
client_id: str, region_base_uri: str
16-
) -> str: ...
14+
def get(client_id: str, region_base_uri: str) -> str: ...
1715
1816
1917
Example:
@@ -31,6 +29,6 @@ Example:
3129
with create_client(
3230
url=url, username=username, password=password
3331
) as client:
34-
client.accesstoken.get_secure_x_access_token()
32+
client.accesstoken.get()
3533
3634

docs/source/refcards/v20_15/admin/aaa/index.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Get aaa configuration<br><br><br>Note: In a multitenant vManage system, this API
1111

1212
.. code:: python
1313
14-
def get_aaa_config() -> Aaa: ...
14+
def get() -> Aaa: ...
1515
1616
1717
Example:
@@ -29,7 +29,7 @@ Example:
2929
with create_client(
3030
url=url, username=username, password=password
3131
) as client:
32-
client.admin.aaa.get_aaa_config()
32+
client.admin.aaa.get()
3333
3434
3535
Operation: PUT /dataservice/admin/aaa
@@ -40,7 +40,7 @@ Update aaa configuration<br><br><br>Note: In a multitenant vManage system, this
4040

4141
.. code:: python
4242
43-
def update_aaa_config(payload: Optional[Aaa] = None) -> None: ...
43+
def put(payload: Aaa) -> None: ...
4444
4545
4646
Example:
@@ -58,7 +58,7 @@ Example:
5858
with create_client(
5959
url=url, username=username, password=password
6060
) as client:
61-
client.admin.aaa.update_aaa_config()
61+
client.admin.aaa.put()
6262
6363
6464
Operation: POST /dataservice/admin/aaa
@@ -69,7 +69,7 @@ Create aaa configuration<br><br><br>Note: In a multitenant vManage system, this
6969

7070
.. code:: python
7171
72-
def create_aaa_config(payload: Optional[Aaa] = None) -> None: ...
72+
def post(payload: Aaa) -> None: ...
7373
7474
7575
Example:
@@ -87,7 +87,7 @@ Example:
8787
with create_client(
8888
url=url, username=username, password=password
8989
) as client:
90-
client.admin.aaa.create_aaa_config()
90+
client.admin.aaa.post()
9191
9292
9393
Operation: DELETE /dataservice/admin/aaa
@@ -98,7 +98,7 @@ Delete aaa configuration<br><br><br>Note: In a multitenant vManage system, this
9898

9999
.. code:: python
100100
101-
def delete_aaa_config() -> None: ...
101+
def delete() -> None: ...
102102
103103
104104
Example:
@@ -116,7 +116,7 @@ Example:
116116
with create_client(
117117
url=url, username=username, password=password
118118
) as client:
119-
client.admin.aaa.delete_aaa_config()
119+
client.admin.aaa.delete()
120120
121121
122122
.. toctree::

docs/source/refcards/v20_15/admin/events.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Operation: GET /dataservice/admin/events/{sseSessionId}
99

1010
.. code:: python
1111
12-
def listen_auth_events(sse_session_id: str) -> None: ...
12+
def get(sse_session_id: str) -> None: ...
1313
1414
1515
Example:
@@ -27,6 +27,6 @@ Example:
2727
with create_client(
2828
url=url, username=username, password=password
2929
) as client:
30-
client.admin.events.listen_auth_events()
30+
client.admin.events.get()
3131
3232

docs/source/refcards/v20_15/admin/radius/index.rst

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Get radius configuration<br><br><br>Note: In a multitenant vManage system, this
1111

1212
.. code:: python
1313
14-
def get_radius_config() -> Radius: ...
14+
def get() -> Radius: ...
1515
1616
1717
Example:
@@ -29,7 +29,7 @@ Example:
2929
with create_client(
3030
url=url, username=username, password=password
3131
) as client:
32-
client.admin.radius.get_radius_config()
32+
client.admin.radius.get()
3333
3434
3535
Operation: PUT /dataservice/admin/radius
@@ -40,9 +40,7 @@ Update radius configuration<br><br><br>Note: In a multitenant vManage system, th
4040

4141
.. code:: python
4242
43-
def update_radius_config(
44-
payload: Optional[Radius] = None,
45-
) -> None: ...
43+
def put(payload: Radius) -> None: ...
4644
4745
4846
Example:
@@ -60,7 +58,7 @@ Example:
6058
with create_client(
6159
url=url, username=username, password=password
6260
) as client:
63-
client.admin.radius.update_radius_config()
61+
client.admin.radius.put()
6462
6563
6664
Operation: POST /dataservice/admin/radius
@@ -71,9 +69,7 @@ Create radius configuration<br><br><br>Note: In a multitenant vManage system, th
7169

7270
.. code:: python
7371
74-
def create_radius_config(
75-
payload: Optional[Radius] = None,
76-
) -> None: ...
72+
def post(payload: Radius) -> None: ...
7773
7874
7975
Example:
@@ -91,7 +87,7 @@ Example:
9187
with create_client(
9288
url=url, username=username, password=password
9389
) as client:
94-
client.admin.radius.create_radius_config()
90+
client.admin.radius.post()
9591
9692
9793
Operation: DELETE /dataservice/admin/radius
@@ -102,7 +98,7 @@ Delete radius configuration<br><br><br>Note: In a multitenant vManage system, th
10298

10399
.. code:: python
104100
105-
def delete_radius_config() -> Radius: ...
101+
def delete() -> Radius: ...
106102
107103
108104
Example:
@@ -120,7 +116,7 @@ Example:
120116
with create_client(
121117
url=url, username=username, password=password
122118
) as client:
123-
client.admin.radius.delete_radius_config()
119+
client.admin.radius.delete()
124120
125121
126122
.. toctree::

docs/source/refcards/v20_15/admin/tacacs/index.rst

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Get tacacs configuration<br><br><br>Note: In a multitenant vManage system, this
1111

1212
.. code:: python
1313
14-
def get_tacacs_config() -> Tacacs: ...
14+
def get() -> Tacacs: ...
1515
1616
1717
Example:
@@ -29,7 +29,7 @@ Example:
2929
with create_client(
3030
url=url, username=username, password=password
3131
) as client:
32-
client.admin.tacacs.get_tacacs_config()
32+
client.admin.tacacs.get()
3333
3434
3535
Operation: PUT /dataservice/admin/tacacs
@@ -40,9 +40,7 @@ Update tacacs configuration<br><br><br>Note: In a multitenant vManage system, th
4040

4141
.. code:: python
4242
43-
def update_tacacs_config(
44-
payload: Optional[Tacacs] = None,
45-
) -> None: ...
43+
def put(payload: Tacacs) -> None: ...
4644
4745
4846
Example:
@@ -60,7 +58,7 @@ Example:
6058
with create_client(
6159
url=url, username=username, password=password
6260
) as client:
63-
client.admin.tacacs.update_tacacs_config()
61+
client.admin.tacacs.put()
6462
6563
6664
Operation: POST /dataservice/admin/tacacs
@@ -71,9 +69,7 @@ Create tacacs configuration<br><br><br>Note: In a multitenant vManage system, th
7169

7270
.. code:: python
7371
74-
def create_tacacs_config(
75-
payload: Optional[Tacacs] = None,
76-
) -> None: ...
72+
def post(payload: Tacacs) -> None: ...
7773
7874
7975
Example:
@@ -91,7 +87,7 @@ Example:
9187
with create_client(
9288
url=url, username=username, password=password
9389
) as client:
94-
client.admin.tacacs.create_tacacs_config()
90+
client.admin.tacacs.post()
9591
9692
9793
Operation: DELETE /dataservice/admin/tacacs
@@ -102,7 +98,7 @@ Delete tacacs configuration<br><br><br>Note: In a multitenant vManage system, th
10298

10399
.. code:: python
104100
105-
def delete_tacacs_config() -> Tacacs: ...
101+
def delete() -> Tacacs: ...
106102
107103
108104
Example:
@@ -120,7 +116,7 @@ Example:
120116
with create_client(
121117
url=url, username=username, password=password
122118
) as client:
123-
client.admin.tacacs.delete_tacacs_config()
119+
client.admin.tacacs.delete()
124120
125121
126122
.. toctree::

docs/source/refcards/v20_15/admin/user/active_sessions.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Get active sessions
1111

1212
.. code:: python
1313
14-
def get_active_sessions_1() -> Any: ...
14+
def get() -> Any: ...
1515
1616
1717
Example:
@@ -29,6 +29,6 @@ Example:
2929
with create_client(
3030
url=url, username=username, password=password
3131
) as client:
32-
client.admin.user.active_sessions.get_active_sessions_1()
32+
client.admin.user.active_sessions.get()
3333
3434

docs/source/refcards/v20_15/admin/user/admin/password.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ Update admin default password
1111

1212
.. code:: python
1313
14-
def update_admin_password_1(
15-
payload: Optional[Any] = None,
16-
) -> None: ...
14+
def post(payload: Any) -> None: ...
1715
1816
1917
Example:
@@ -31,6 +29,6 @@ Example:
3129
with create_client(
3230
url=url, username=username, password=password
3331
) as client:
34-
client.admin.user.admin.password.update_admin_password_1()
32+
client.admin.user.admin.password.post()
3533
3634

0 commit comments

Comments
 (0)