v1.feature_profile.sd_routing.service.objecttrackergroup

Operation: POST /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/objecttrackergroup

Create a SD-Routing Object Tracker Group Feature for Service Feature Profile

def post(
    service_id: str,
    payload: CreateSdroutingServiceObjectTrackerGroupFeaturePostRequest,
) -> CreateSdroutingServiceObjectTrackerGroupFeaturePostResponse: ...

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.service.objecttrackergroup.post()

Operation: PUT /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/objecttrackergroup/{objectTrackerGroupId}

Edit a SD-Routing Object Tracker Group Feature for Service Feature Profile

def put(
    service_id: str,
    object_tracker_group_id: str,
    payload: EditSdroutingServiceObjectTrackerGroupFeaturePutRequest,
) -> EditSdroutingServiceObjectTrackerGroupFeaturePutResponse: ...

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.service.objecttrackergroup.put()

Operation: DELETE /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/objecttrackergroup/{objectTrackerGroupId}

Delete a SD-Routing Object Tracker Group Feature for Service Feature Profile

def delete(service_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.service.objecttrackergroup.delete()

Operation: GET /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/objecttrackergroup

@overload
def get(
    service_id: str,
) -> GetListSdRoutingServiceObjecttrackergroupPayload: ...

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.service.objecttrackergroup.get()

Operation: GET /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/objecttrackergroup/{objectTrackerGroupId}

@overload
def get(
    service_id: str, object_tracker_group_id: str
) -> GetSingleSdRoutingServiceObjecttrackergroupPayload: ...

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.service.objecttrackergroup.get()