v1.feature_profile.sdwan.other

Operation: POST /dataservice/v1/feature-profile/sdwan/other

Create a SDWAN Other Feature Profile

def post(
    payload: CreateSdwanOtherFeatureProfilePostRequest,
) -> CreateSdwanOtherFeatureProfilePostResponse: ...

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

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

Edit a SDWAN Other Feature Profile

def put(
    other_id: str, payload: EditSdwanOtherFeatureProfilePutRequest
) -> EditSdwanOtherFeatureProfilePutResponse: ...

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

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

Delete Feature Profile

def delete(other_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.delete()

Operation: GET /dataservice/v1/feature-profile/sdwan/other

@overload
def get(
    offset: Optional[int] = None, limit: Optional[int] = 0
) -> List[GetSdwanOtherFeatureProfilesGetResponse]: ...

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

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

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

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