template.feature.devicetemplates

Operation: GET /dataservice/template/feature/devicetemplates/{templateId}

Get all device templates for this feature template<br><br><br>Note: In a multitenant vManage system, this API is only available in the Provider view.

def get_device_templates_attached_to_feature(
    template_id: str,
) -> 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.template.feature.devicetemplates.get_device_templates_attached_to_feature()