v1.feature_profile.sdwan.transport.cellular_controller
Operation: POST /dataservice/v1/feature-profile/sdwan/transport/{transportId}/cellular-controller
Create a Cellular Controller Profile Parcel for Transport feature profile
def post(
transport_id: str,
payload: CreateCellularControllerProfileParcelForTransportPostRequest,
) -> (
CreateCellularControllerProfileParcelForTransportPostResponse
): ...
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.v1.feature_profile.sdwan.transport.cellular_controller.post()
Operation: PUT /dataservice/v1/feature-profile/sdwan/transport/{transportId}/cellular-controller/{cellularControllerId}
Update a Cellular Controller Profile Parcel for Transport feature profile
def put(
transport_id: str,
cellular_controller_id: str,
payload: EditCellularControllerProfileParcelForTransportPutRequest,
) -> EditCellularControllerProfileParcelForTransportPutResponse: ...
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.v1.feature_profile.sdwan.transport.cellular_controller.put()
Operation: DELETE /dataservice/v1/feature-profile/sdwan/transport/{transportId}/cellular-controller/{cellularControllerId}
Delete a Cellular Controller Profile Parcel for Transport feature profile
def delete(
transport_id: str, cellular_controller_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.v1.feature_profile.sdwan.transport.cellular_controller.delete()
Operation: GET /dataservice/v1/feature-profile/sdwan/transport/{transportId}/cellular-controller
@overload
def get(
transport_id: str,
) -> GetListSdwanTransportCellularControllerPayload: ...
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.v1.feature_profile.sdwan.transport.cellular_controller.get()
Operation: GET /dataservice/v1/feature-profile/sdwan/transport/{transportId}/cellular-controller/{cellularControllerId}
@overload
def get(
transport_id: str, cellular_controller_id: str
) -> GetSingleSdwanTransportCellularControllerPayload: ...
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.v1.feature_profile.sdwan.transport.cellular_controller.get()