v1.feature_profile.sdwan.transport.tracker

Operation: POST /dataservice/v1/feature-profile/sdwan/transport/{transportId}/tracker

Create a Tracker Profile Parcel for Transport feature profile

def post(
    transport_id: str,
    payload: CreateTrackerProfileParcelForTransportPostRequest,
) -> CreateTrackerProfileParcelForTransportPostResponse: ...

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

Operation: PUT /dataservice/v1/feature-profile/sdwan/transport/{transportId}/tracker/{trackerId}

Update a Tracker Profile Parcel for Transport feature profile

def put(
    transport_id: str,
    tracker_id: str,
    payload: EditTrackerProfileParcelForTransportPutRequest,
) -> EditTrackerProfileParcelForTransportPutResponse: ...

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

Operation: DELETE /dataservice/v1/feature-profile/sdwan/transport/{transportId}/tracker/{trackerId}

Delete a Tracker Profile Parcel for Transport feature profile

def delete(transport_id: str, 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.sdwan.transport.tracker.delete()

Operation: GET /dataservice/v1/feature-profile/sdwan/transport/{transportId}/tracker

@overload
def get(transport_id: str) -> GetListSdwanTransportTrackerPayload: ...

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

Operation: GET /dataservice/v1/feature-profile/sdwan/transport/{transportId}/tracker/{trackerId}

@overload
def get(
    transport_id: str, tracker_id: str
) -> GetSingleSdwanTransportTrackerPayload: ...

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