v1.feature_profile.sd_routing.system
Operation: POST /dataservice/v1/feature-profile/sd-routing/system
Create a SD-Routing System Feature Profile
def post(
    payload: CreateSdroutingSystemFeatureProfilePostRequest,
) -> CreateSdroutingSystemFeatureProfilePostResponse: ...
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.post()
Operation: PUT /dataservice/v1/feature-profile/sd-routing/system/{systemId}
Edit a SD-Routing System Feature Profile
def put(
    system_id: str,
    payload: EditSdroutingSystemFeatureProfilePutRequest,
) -> EditSdroutingSystemFeatureProfilePutResponse: ...
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.put()
Operation: DELETE /dataservice/v1/feature-profile/sd-routing/system/{systemId}
Delete a SD-Routing System Feature Profile
def delete(system_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.delete()
Operation: GET /dataservice/v1/feature-profile/sd-routing/system
@overload
def get(
    offset: Optional[int] = None, limit: Optional[int] = 0
) -> List[GetSdroutingSystemFeatureProfilesGetResponse]: ...
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.get()
Operation: GET /dataservice/v1/feature-profile/sd-routing/system/{systemId}
@overload
def get(system_id: str) -> GetSingleSdRoutingSystemPayload: ...
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.get()
- v1.feature_profile.sd_routing.system.aaa
 - v1.feature_profile.sd_routing.system.banner
 - v1.feature_profile.sd_routing.system.certificate
 - v1.feature_profile.sd_routing.system.flexible_port_speed
 - v1.feature_profile.sd_routing.system.global
 - v1.feature_profile.sd_routing.system.logging
 - v1.feature_profile.sd_routing.system.ntp
 - v1.feature_profile.sd_routing.system.snmp
 - Models