networkdesign.circuit

Operation: GET /dataservice/networkdesign/circuit

Deprecated!!!

Get network circuits

def get() -> 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.circuit.get()

Operation: POST /dataservice/networkdesign/circuit

Deprecated!!!

Create network circuits

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.networkdesign.circuit.post()

Operation: DELETE /dataservice/networkdesign/circuit/{id}

Deprecated!!!

Delete network circuits

def delete(id: str) -> 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.circuit.delete()