===================== networkdesign.circuit ===================== Operation: GET /dataservice/networkdesign/circuit ------------------------------------------------- Deprecated!!! Get network circuits .. code:: python def get() -> 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.networkdesign.circuit.get() Operation: POST /dataservice/networkdesign/circuit -------------------------------------------------- Deprecated!!! Create network circuits .. 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.networkdesign.circuit.post() Operation: DELETE /dataservice/networkdesign/circuit/{id} --------------------------------------------------------- Deprecated!!! Delete network circuits .. code:: python def delete(id: str) -> None: ... 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.networkdesign.circuit.delete()