networkdesign.profile.template

Operation: PUT /dataservice/networkdesign/profile/template/{templateId}

Deprecated!!!

Edit device profile template

def put(template_id: str, payload: Any) -> 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.networkdesign.profile.template.put()

Operation: GET /dataservice/networkdesign/profile/template

Deprecated!!!

@overload
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.networkdesign.profile.template.get()

Operation: GET /dataservice/networkdesign/profile/template/{templateId}

Deprecated!!!

@overload
def get(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.networkdesign.profile.template.get()