v1.feature_profile.sd_routing.service.vrf.routing.ospfv3.ipv6

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

Get the LAN VRF associated OSPFv3 IPv6 features for service feature profile

def get_service_vrf_associated_routing_ospfv3_ipv6_parcels(
    service_id: str, vrf_id: str
) -> str: ...

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.ospfv3.ipv6.get_service_vrf_associated_routing_ospfv3_ipv6_parcels()

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

Associate an OSPFv3 IPv6 feature with the LAN VRF feature for service feature profile

def create_service_vrf_and_routing_ospfv3_ipv6_feature_association(
    service_id: str, vrf_id: str, payload: Optional[str] = None
) -> str: ...

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.ospfv3.ipv6.create_service_vrf_and_routing_ospfv3_ipv6_feature_association()

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

Get LAN VRF associated OSPFv3 IPv6 feature by feature ID for service feature profile

def get_service_vrf_associated_routing_ospfv3_ipv6_feature_by_id(
    service_id: str, vrf_id: str, ospfv3_id: str
) -> str: ...

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.ospfv3.ipv6.get_service_vrf_associated_routing_ospfv3_ipv6_feature_by_id()

Operation: PUT /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/routing/ospfv3/ipv6/{ospfv3Id}

Replace the OSPFv3 IPv6 feature for LAN VRF feature in service feature profile

def edit_service_vrf_and_routing_ospfv3_ipv6_feature_association(
    service_id: str,
    vrf_id: str,
    ospfv3_id: str,
    payload: Optional[str] = None,
) -> str: ...

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.ospfv3.ipv6.edit_service_vrf_and_routing_ospfv3_ipv6_feature_association()

Operation: DELETE /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/routing/ospfv3/ipv6/{ospfv3Id}

Delete the VRF feature and OSPFv3 IPv6 feature association for service feature profile

def delete_service_vrf_and_routing_ospfv3_ipv6_association(
    service_id: str, vrf_id: str, ospfv3_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.ospfv3.ipv6.delete_service_vrf_and_routing_ospfv3_ipv6_association()