template.feature.li
Operation: GET /dataservice/template/feature/li
Get LI feature template
def get() -> List[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.li.get()
Operation: POST /dataservice/template/feature/li
Create LI feature template<br><br><br>Note: In a multitenant vManage system, this API is only available in the Provider view.
def post(payload: Any) -> 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.li.post()
Operation: PUT /dataservice/template/feature/li/{templateId}
Update LI feature template<br><br><br>Note: In a multitenant vManage system, this API is only available in the Provider view.
def put(template_id: str, payload: Any) -> 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.li.put()