=================== template.feature.li =================== Operation: GET /dataservice/template/feature/li ----------------------------------------------- Get LI feature template .. code:: python def get() -> List[Any]: ... 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.template.feature.li.get() Operation: POST /dataservice/template/feature/li ------------------------------------------------ Create LI feature template


Note: In a multitenant vManage system, this API is only available in the Provider view. .. code:: python def post(payload: Any) -> Any: ... 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.template.feature.li.post() Operation: PUT /dataservice/template/feature/li/{templateId} ------------------------------------------------------------ Update LI feature template


Note: In a multitenant vManage system, this API is only available in the Provider view. .. code:: python def put(template_id: str, payload: Any) -> Any: ... 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.template.feature.li.put()