v1.feature_profile.sd_routing.transport.objecttrackergroup
Operation: POST /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/objecttrackergroup
Create a SD-Routing object tracker group feature from a specific transport feature profile
def post(
transport_id: str,
payload: CreateSdroutingTransportObjectTrackerGroupFeaturePostRequest,
) -> (
CreateSdroutingTransportObjectTrackerGroupFeaturePostResponse
): ...
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.objecttrackergroup.post()
Operation: PUT /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/objecttrackergroup/{objectTrackerGroupId}
Edit the SD-Routing object tracker group feature from a specific transport feature profile
def put(
transport_id: str,
object_tracker_group_id: str,
payload: EditSdroutingTransportObjectTrackerGroupFeaturePutRequest,
) -> EditSdroutingTransportObjectTrackerGroupFeaturePutResponse: ...
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.objecttrackergroup.put()
Operation: DELETE /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/objecttrackergroup/{objectTrackerGroupId}
Delete the SD-Routing object tracker group feature from a specific transport feature profile
def delete(
transport_id: str, object_tracker_group_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.objecttrackergroup.delete()
Operation: GET /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/objecttrackergroup
@overload
def get(
transport_id: str,
) -> GetListSdRoutingTransportObjecttrackergroupPayload: ...
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.objecttrackergroup.get()
Operation: GET /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/objecttrackergroup/{objectTrackerGroupId}
@overload
def get(
transport_id: str, object_tracker_group_id: str
) -> GetSingleSdRoutingTransportObjecttrackergroupPayload: ...
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.objecttrackergroup.get()