v1.feature_profile.sd_routing.transport.routing.ospfv3.ipv4

Operation: GET /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/routing/ospfv3/ipv4

Get all SD-Routing WAN OSPFv3 IPv4 features from a specific transport feature profile

def get_sdrouting_transport_routing_ospfv3_ipv4_features(
    transport_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.transport.routing.ospfv3.ipv4.get_sdrouting_transport_routing_ospfv3_ipv4_features()

Operation: POST /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/routing/ospfv3/ipv4

Create a SD-Routing WAN OSPFv3 IPv4 feature from a specific transport feature profile

def create_sdrouting_transport_routing_ospfv3_ipv4_feature(
    transport_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.transport.routing.ospfv3.ipv4.create_sdrouting_transport_routing_ospfv3_ipv4_feature()

Operation: GET /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/routing/ospfv3/ipv4/{ospfv3Id}

Get the SD-Routing WAN OSPFv3 IPv4 feature from a specific transport feature profile

def get_sdrouting_transport_routing_ospfv3_ipv4_feature(
    transport_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.transport.routing.ospfv3.ipv4.get_sdrouting_transport_routing_ospfv3_ipv4_feature()

Operation: PUT /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/routing/ospfv3/ipv4/{ospfv3Id}

Edit the SD-Routing WAN OSPFv3 IPv4 feature from a specific transport feature profile

def edit_sdrouting_transport_routing_ospfv3_ipv4_feature(
    transport_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.transport.routing.ospfv3.ipv4.edit_sdrouting_transport_routing_ospfv3_ipv4_feature()

Operation: DELETE /dataservice/v1/feature-profile/sd-routing/transport/{transportId}/routing/ospfv3/ipv4/{ospfv3Id}

Delete the SD-Routing WAN OSPFv3 IPv4 feature from a specific transport feature profile

def delete_sdrouting_transport_routing_ospfv3_ipv4_feature(
    transport_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.transport.routing.ospfv3.ipv4.delete_sdrouting_transport_routing_ospfv3_ipv4_feature()