v1.feature_profile.sd_routing.service.objecttrackergroup
Operation: GET /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/objecttrackergroup
Get all SD-Routing object tracker group features from a specific service feature profile
def get_sdrouting_service_object_tracker_group_features(
service_id: str,
) -> str: ...
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_sdrouting_service_object_tracker_group_features()
Operation: POST /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/objecttrackergroup
Create a SD-Routing object tracker group feature from a specific service feature profile
def create_sdrouting_service_object_tracker_group_feature(
service_id: str, payload: Optional[str] = None
) -> str: ...
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.create_sdrouting_service_object_tracker_group_feature()
Operation: GET /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/objecttrackergroup/{objectTrackerGroupId}
Get the SD-Routing object tracker group feature from a specific service feature profile
def get_sdrouting_service_object_tracker_group_feature(
service_id: str, object_tracker_group_id: str
) -> str: ...
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_sdrouting_service_object_tracker_group_feature()
Operation: PUT /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/objecttrackergroup/{objectTrackerGroupId}
Edit the SD-Routing object tracker group feature from a specific service feature profile
def edit_sdrouting_service_object_tracker_group_feature(
service_id: str,
object_tracker_group_id: str,
payload: Optional[str] = None,
) -> str: ...
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.edit_sdrouting_service_object_tracker_group_feature()
Operation: DELETE /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/objecttrackergroup/{objectTrackerGroupId}
Delete the SD-Routing object tracker group feature from a specific service feature profile
def delete_sdrouting_service_object_tracker_group_feature(
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_sdrouting_service_object_tracker_group_feature()