v1.feature_profile.sd_routing.sse

Operation: POST /dataservice/v1/feature-profile/sd-routing/sse

Create a SD-ROUTING SSE Feature Profile

def post(
    payload: CreateSdRoutingSseFeatureProfilePostRequest,
) -> CreateSdRoutingSseFeatureProfilePostResponse: ...

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

Operation: PUT /dataservice/v1/feature-profile/sd-routing/sse/{sseId}

Edit a SD-ROUTING SSE Feature Profile

def put(
    sse_id: str, payload: EditSdRoutingSseFeatureProfilePutRequest
) -> EditSdRoutingSseFeatureProfilePutResponse: ...

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

Operation: DELETE /dataservice/v1/feature-profile/sd-routing/sse/{sseId}

Delete Feature Profile

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

Operation: GET /dataservice/v1/feature-profile/sd-routing/sse

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

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

Operation: GET /dataservice/v1/feature-profile/sd-routing/sse/{sseId}

@overload
def get(
    sse_id: str, references: Optional[bool] = False
) -> GetSingleSdRoutingSsePayload: ...

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