v1.feature_profile.sdwan.transport.gps

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

Create a Gps Profile Parcel for Transport feature profile

def post(
    transport_id: str,
    payload: CreateGpsProfileParcelForTransportPostRequest,
) -> CreateGpsProfileParcelForTransportPostResponse: ...

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

Operation: PUT /dataservice/v1/feature-profile/sdwan/transport/{transportId}/gps/{gpsId}

Update a Gps Profile Parcel for Transport feature profile

def put(
    transport_id: str,
    gps_id: str,
    payload: EditGpsProfileParcelForTransportPutRequest,
) -> EditGpsProfileParcelForTransportPutResponse: ...

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

Operation: DELETE /dataservice/v1/feature-profile/sdwan/transport/{transportId}/gps/{gpsId}

Delete a Gps Profile Parcel for Transport feature profile

def delete(transport_id: str, gps_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.gps.delete()

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

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

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

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

@overload
def get(
    transport_id: str, gps_id: str
) -> GetSingleSdwanTransportGpsPayload: ...

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