v1.feature_profile.sdwan.service.routing.eigrp
Operation: POST /dataservice/v1/feature-profile/sdwan/service/{serviceId}/routing/eigrp
Create a Routing Eigrp Profile Feature for Service feature profile
def post(
service_id: str,
payload: CreateRoutingEigrpProfileParcelForServicePostRequest,
) -> CreateRoutingEigrpProfileParcelForServicePostResponse: ...
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.service.routing.eigrp.post()
Operation: PUT /dataservice/v1/feature-profile/sdwan/service/{serviceId}/routing/eigrp/{eigrpId}
Update a Routing Eigrp Profile Feature for Service feature profile
def put(
service_id: str,
eigrp_id: str,
payload: EditRoutingEigrpProfileParcelForServicePutRequest,
) -> EditRoutingEigrpProfileParcelForServicePutResponse: ...
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.service.routing.eigrp.put()
Operation: DELETE /dataservice/v1/feature-profile/sdwan/service/{serviceId}/routing/eigrp/{eigrpId}
Delete a Routing Eigrp Profile Feature for Service feature profile
def delete(service_id: str, eigrp_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.service.routing.eigrp.delete()
Operation: GET /dataservice/v1/feature-profile/sdwan/service/{serviceId}/routing/eigrp
@overload
def get(
service_id: str,
) -> GetListSdwanServiceRoutingEigrpPayload: ...
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.service.routing.eigrp.get()
Operation: GET /dataservice/v1/feature-profile/sdwan/service/{serviceId}/routing/eigrp/{eigrpId}
@overload
def get(
service_id: str, eigrp_id: str
) -> GetSingleSdwanServiceRoutingEigrpPayload: ...
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.service.routing.eigrp.get()