v1.feature_profile.sdwan.other.ucse

Operation: POST /dataservice/v1/feature-profile/sdwan/other/{otherId}/ucse

Create a Ucse Profile feature for Other feature profile

def post(
    other_id: str,
    payload: CreateUcseProfileFeatureForOtherPostRequest,
) -> CreateUcseProfileFeatureForOtherPostResponse: ...

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

Operation: PUT /dataservice/v1/feature-profile/sdwan/other/{otherId}/ucse/{ucseId}

Update a Ucse Profile feature for Other feature profile

def put(
    other_id: str,
    ucse_id: str,
    payload: EditUcseProfileFeatureForOtherPutRequest,
) -> EditUcseProfileFeatureForOtherPutResponse: ...

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

Operation: DELETE /dataservice/v1/feature-profile/sdwan/other/{otherId}/ucse/{ucseId}

Delete a Ucse Profile feature for Other feature profile

def delete(other_id: str, ucse_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.other.ucse.delete()

Operation: GET /dataservice/v1/feature-profile/sdwan/other/{otherId}/ucse

@overload
def get(other_id: str) -> GetListSdwanOtherUcsePayload: ...

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

Operation: GET /dataservice/v1/feature-profile/sdwan/other/{otherId}/ucse/{ucseId}

@overload
def get(
    other_id: str, ucse_id: str
) -> GetSingleSdwanOtherUcsePayload: ...

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