v1.feature_profile.sd_routing.transport.cellular_profile

Operation: POST /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/cellular-profile

Create a Cellular Profile Feature for Transport feature profile

def post(
    transport_id: str,
    payload: CreateCellularProfileParcelForTransportPostRequest,
) -> CreateCellularProfileParcelForTransportPostResponse: ...

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.sd_routing.transport.cellular_profile.post()

Operation: PUT /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/cellular-profile/{cellularProfileId}

Update a Cellular Profile Feature for Transport feature profile

def put(
    transport_id: str,
    cellular_profile_id: str,
    payload: EditCellularProfileParcelForTransportPutRequest,
) -> EditCellularProfileParcelForTransportPutResponse: ...

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.sd_routing.transport.cellular_profile.put()

Operation: DELETE /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/cellular-profile/{cellularProfileId}

Delete a Cellular Profile Feature for Transport feature profile

def delete(transport_id: str, cellular_profile_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.sd_routing.transport.cellular_profile.delete()

Operation: GET /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/cellular-profile

@overload
def get(
    transport_id: str,
) -> GetListSdRoutingTransportCellularProfilePayload: ...

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.sd_routing.transport.cellular_profile.get()

Operation: GET /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/cellular-profile/{cellularProfileId}

@overload
def get(
    transport_id: str, cellular_profile_id: str
) -> GetSingleSdRoutingTransportCellularProfilePayload: ...

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.sd_routing.transport.cellular_profile.get()