v1.feature_profile.sd_routing.transport.gps
Operation: POST /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/gps
Create a GPS Profile Feature for Transport feature profile
def post(
transport_id: str,
payload: CreateGpsProfileParcelForTransportPostRequest,
) -> CreateGpsProfileParcelForTransportPostResponse: ...
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.gps.post()
Operation: DELETE /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/gps/{gpsId}
Delete a GPS Profile Feature for Transport feature profile
def delete(transport_id: str, gps_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.gps.delete()
Operation: GET /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/gps
@overload
def get(transport_id: str) -> GetListSdRoutingTransportGpsPayload: ...
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.gps.get()
Operation: GET /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/gps/{gpsId}
@overload
def get(
transport_id: str, gps_id: str
) -> GetSingleSdRoutingTransportGpsPayload: ...
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.gps.get()
Operation: PUT /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/gps/{gpsId}
@overload
def put(
transport_id: str,
gps_id: str,
payload: EditGpsProfileParcelForTransportPutRequest,
) -> EditGpsProfileParcelForTransportPutResponse: ...
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.gps.put()
Operation: PUT /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/{cellularControllerId}/gps/{gpsId}
@overload
def put(
transport_id: str,
gps_id: str,
payload: EditCellularControllerAndGpsParcelAssociationForTransport1PutRequest,
cellular_controller_id: str,
) -> EditCellularControllerAndGpsParcelAssociationForTransport1PutResponse: ...
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.gps.put()