v1.feature_profile.sd_routing.service.vrf.routing.eigrp

Operation: GET /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/routing/eigrp

@overload
def get(
    service_id: str,
) -> GetListSdRoutingServiceVrfRoutingEigrpPayload: ...

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.service.vrf.routing.eigrp.get()

Operation: GET /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/routing/eigrp/{eigrpId}

@overload
def get(
    service_id: str, eigrp_id: str
) -> GetSingleSdRoutingServiceVrfRoutingEigrpPayload: ...

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.service.vrf.routing.eigrp.get()

Operation: GET /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/routing/eigrp

@overload
def get(
    service_id: str, vrf_id: str
) -> List[GetServiceVrfAssociatedRoutingEigrpFeaturesGetResponse]: ...

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.service.vrf.routing.eigrp.get()

Operation: GET /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/routing/eigrp/{eigrpId}

@overload
def get(
    service_id: str, vrf_id: str, eigrp_id: str
) -> GetSingleSdRoutingServiceVrfVrfRoutingEigrpPayload: ...

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.service.vrf.routing.eigrp.get()

Operation: POST /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/routing/eigrp

@overload
def post(
    service_id: str,
    payload: CreateSdroutingServiceVrfEigrpFeaturePostRequest,
) -> CreateSdroutingServiceVrfEigrpFeaturePostResponse: ...

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.service.vrf.routing.eigrp.post()

Operation: POST /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/routing/eigrp

@overload
def post(
    service_id: str,
    payload: CreateServiceVrfAndRoutingEigrpFeatureAssociationPostRequest,
    vrf_id: str,
) -> (
    CreateServiceVrfAndRoutingEigrpFeatureAssociationPostResponse
): ...

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.service.vrf.routing.eigrp.post()

Operation: PUT /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/routing/eigrp/{eigrpId}

@overload
def put(
    service_id: str,
    eigrp_id: str,
    payload: EditSdroutingServiceVrfEigrpFeaturePutRequest,
) -> EditSdroutingServiceVrfEigrpFeaturePutResponse: ...

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.service.vrf.routing.eigrp.put()

Operation: PUT /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/routing/eigrp/{eigrpId}

@overload
def put(
    service_id: str,
    eigrp_id: str,
    payload: EditServiceVrfAndRoutingEigrpFeatureAssociationPutRequest,
    vrf_id: str,
) -> EditServiceVrfAndRoutingEigrpFeatureAssociationPutResponse: ...

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.service.vrf.routing.eigrp.put()

Operation: DELETE /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/routing/eigrp/{eigrpId}

@overload
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.sd_routing.service.vrf.routing.eigrp.delete()

Operation: DELETE /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/routing/eigrp/{eigrpId}

@overload
def delete(service_id: str, eigrp_id: str, vrf_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.service.vrf.routing.eigrp.delete()