============
admin.radius
============
Operation: GET /dataservice/admin/radius
----------------------------------------
Get radius configuration
Note: In a multitenant vManage system, this API is only available in the Provider and Provider-As-Tenant view.
.. code:: python
def get() -> Radius: ...
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.radius.get()
Operation: PUT /dataservice/admin/radius
----------------------------------------
Update radius 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: Radius) -> 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.radius.put()
Operation: POST /dataservice/admin/radius
-----------------------------------------
Create radius 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: Radius) -> 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.radius.post()
Operation: DELETE /dataservice/admin/radius
-------------------------------------------
Delete radius configuration
Note: In a multitenant vManage system, this API is only available in the Provider and Provider-As-Tenant view.
.. code:: python
def delete() -> Radius: ...
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.radius.delete()
.. toctree::
:maxdepth: 1
models