v1.feature_profile.sd_routing.system.global

Operation: POST /dataservice/v1/feature-profile/sd-routing/system/{systemId}/global

Create a SD-Routing global setting feature from a specific system feature profile

def post(
    system_id: str,
    payload: CreateSdroutingGlobalSettingFeaturePostRequest,
) -> CreateSdroutingGlobalSettingFeaturePostResponse: ...

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

Operation: PUT /dataservice/v1/feature-profile/sd-routing/system/{systemId}/global/{globalId}

Edit the SD-Routing global setting feature from a specific system feature profile

def put(
    system_id: str,
    global_id: str,
    payload: EditSdroutingGlobalSettingFeaturePutRequest,
) -> EditSdroutingGlobalSettingFeaturePutResponse: ...

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

Operation: DELETE /dataservice/v1/feature-profile/sd-routing/system/{systemId}/global/{globalId}

Delete the SD-Routing global setting feature from a specific system feature profile

def delete(system_id: str, global_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.system.global_.delete()

Operation: GET /dataservice/v1/feature-profile/sd-routing/system/{systemId}/global

@overload
def get(system_id: str) -> GetListSdRoutingSystemGlobalPayload: ...

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

Operation: GET /dataservice/v1/feature-profile/sd-routing/system/{systemId}/global/{globalId}

@overload
def get(
    system_id: str, global_id: str
) -> GetSingleSdRoutingSystemGlobalPayload: ...

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