v1.feature_profile.sd_routing.other.cybervision

Operation: POST /dataservice/v1/feature-profile/sd-routing/other/{otherId}/cybervision

Create a Cybervision Profile feature for Other feature profile

def post(
    other_id: str,
    payload: CreateCybervisionProfileFeatureForOtherPostRequest,
) -> CreateCybervisionProfileFeatureForOtherPostResponse: ...

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

Operation: PUT /dataservice/v1/feature-profile/sd-routing/other/{otherId}/cybervision/{cybervisionId}

Update a Cybervision Profile feature for Other feature profile

def put(
    other_id: str,
    cybervision_id: str,
    payload: EditCybervisionProfileFeatureForOtherPutRequest,
) -> EditCybervisionProfileFeatureForOtherPutResponse: ...

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

Operation: DELETE /dataservice/v1/feature-profile/sd-routing/other/{otherId}/cybervision/{cybervisionId}

Delete a Cybervision Profile feature for Other feature profile

def delete(other_id: str, cybervision_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.sd_routing.other.cybervision.delete()

Operation: GET /dataservice/v1/feature-profile/sd-routing/other/{otherId}/cybervision

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

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

Operation: GET /dataservice/v1/feature-profile/sd-routing/other/{otherId}/cybervision/{cybervisionId}

@overload
def get(
    other_id: str, cybervision_id: str
) -> GetSingleSdRoutingOtherCybervisionPayload: ...

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