v1.feature_profile.sdwan.transport.trackergroup
Operation: POST /dataservice/v1/feature-profile/sdwan/transport/{transportId}/trackergroup
Create a TrackerGroup Profile Parcel for Transport feature profile
def post(
transport_id: str,
payload: CreateTrackerGroupProfileParcelForTransportPostRequest,
) -> CreateTrackerGroupProfileParcelForTransportPostResponse: ...
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.sdwan.transport.trackergroup.post()
Operation: PUT /dataservice/v1/feature-profile/sdwan/transport/{transportId}/trackergroup/{trackergroupId}
Update a TrackerGroup Profile Parcel for Transport feature profile
def put(
transport_id: str,
trackergroup_id: str,
payload: EditTrackerGroupProfileParcelForTransportPutRequest,
) -> EditTrackerGroupProfileParcelForTransportPutResponse: ...
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.sdwan.transport.trackergroup.put()
Operation: DELETE /dataservice/v1/feature-profile/sdwan/transport/{transportId}/trackergroup/{trackergroupId}
Delete a TrackerGroup Profile Parcel for Transport feature profile
def delete(transport_id: str, trackergroup_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.sdwan.transport.trackergroup.delete()
Operation: GET /dataservice/v1/feature-profile/sdwan/transport/{transportId}/trackergroup
@overload
def get(
transport_id: str,
) -> GetListSdwanTransportTrackergroupPayload: ...
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.sdwan.transport.trackergroup.get()
Operation: GET /dataservice/v1/feature-profile/sdwan/transport/{transportId}/trackergroup/{trackergroupId}
@overload
def get(
transport_id: str, trackergroup_id: str
) -> GetSingleSdwanTransportTrackergroupPayload: ...
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.sdwan.transport.trackergroup.get()