v1.smart_licensing.association
Operation: GET /dataservice/v1/smart-licensing/association
Get the devices associated with a template
def get_devices_for_template(
template_id: Optional[str] = None,
) -> Any: ...
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.v1.smart_licensing.association.get_devices_for_template()