v1.feature_profile.sd_routing.transport.objecttracker
Operation: POST /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/objecttracker
Create a SD-Routing object tracker feature from a specific transport feature profile
def post(
transport_id: str,
payload: CreateSdroutingTransportObjectTrackerFeaturePostRequest,
) -> CreateSdroutingTransportObjectTrackerFeaturePostResponse: ...
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.objecttracker.post()
Operation: PUT /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/objecttracker/{objectTrackerId}
Edit the SD-Routing object tracker feature from a specific transport feature profile
def put(
transport_id: str,
object_tracker_id: str,
payload: EditSdroutingTransportObjectTrackerFeaturePutRequest,
) -> EditSdroutingTransportObjectTrackerFeaturePutResponse: ...
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.objecttracker.put()
Operation: DELETE /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/objecttracker/{objectTrackerId}
Delete the SD-Routing object tracker feature from a specific transport feature profile
def delete(transport_id: str, object_tracker_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.objecttracker.delete()
Operation: GET /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/objecttracker
@overload
def get(
transport_id: str,
) -> GetListSdRoutingTransportObjecttrackerPayload: ...
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.objecttracker.get()
Operation: GET /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/objecttracker/{objectTrackerId}
@overload
def get(
transport_id: str, object_tracker_id: str
) -> GetSingleSdRoutingTransportObjecttrackerPayload: ...
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.objecttracker.get()