device.tools.admintech.supportedfeatures
Operation: GET /dataservice/device/tools/admintech/supportedfeatures/{deviceModel}/{deviceIP}/{personality}
Get supported admin tech features
def get(
device_model: DeviceModel, device_ip: DeviceIp, personality: str
) -> None: ...
Example:
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.device.tools.admintech.supportedfeatures.get()