=========
admin.aaa
=========
Operation: GET /dataservice/admin/aaa
-------------------------------------
Get aaa configuration
Note: In a multitenant vManage system, this API is only available in the Provider and Provider-As-Tenant view.
.. code:: python
def get() -> Aaa: ...
Example:
^^^^^^^^
.. code:: python
from catalyswan.core import create_client
url = "example.com"
username = "admin"
password = "password123"
with create_client(
url=url, username=username, password=password
) as client:
client.admin.aaa.get()
Operation: PUT /dataservice/admin/aaa
-------------------------------------
Update aaa configuration
Note: In a multitenant vManage system, this API is only available in the Provider and Provider-As-Tenant view.
.. code:: python
def put(payload: Aaa) -> None: ...
Example:
^^^^^^^^
.. code:: python
from catalyswan.core import create_client
url = "example.com"
username = "admin"
password = "password123"
with create_client(
url=url, username=username, password=password
) as client:
client.admin.aaa.put()
Operation: POST /dataservice/admin/aaa
--------------------------------------
Create aaa configuration
Note: In a multitenant vManage system, this API is only available in the Provider and Provider-As-Tenant view.
.. code:: python
def post(payload: Aaa) -> None: ...
Example:
^^^^^^^^
.. code:: python
from catalyswan.core import create_client
url = "example.com"
username = "admin"
password = "password123"
with create_client(
url=url, username=username, password=password
) as client:
client.admin.aaa.post()
Operation: DELETE /dataservice/admin/aaa
----------------------------------------
Delete aaa configuration
Note: In a multitenant vManage system, this API is only available in the Provider and Provider-As-Tenant view.
.. code:: python
def delete() -> None: ...
Example:
^^^^^^^^
.. code:: python
from catalyswan.core import create_client
url = "example.com"
username = "admin"
password = "password123"
with create_client(
url=url, username=username, password=password
) as client:
client.admin.aaa.delete()
.. toctree::
:maxdepth: 1
models