v1.feature_profile.sdwan.transport.routing.ospfv3.ipv4

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

Create a routing OSPFv3 IPv4 address family profile parcel for transport feature profile

def post(
    transport_id: str,
    payload: CreateRoutingOspfv3Ipv4AfProfileParcelForTransportPostRequest,
) -> (
    CreateRoutingOspfv3Ipv4AfProfileParcelForTransportPostResponse
): ...

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.transport.routing.ospfv3.ipv4.post()

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

Update a routing OSPFv3 IPv4 address family profile parcel for transport feature profile

def put(
    transport_id: str,
    ospfv3_id: str,
    payload: EditRoutingOspfv3Ipv4AfProfileParcelForTransportPutRequest,
) -> EditRoutingOspfv3Ipv4AfProfileParcelForTransportPutResponse: ...

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.transport.routing.ospfv3.ipv4.put()

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

Delete the routing OSPFv3 IPv4 address family profile parcel by ID for transport feature profile

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

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

@overload
def get(
    transport_id: str,
) -> GetListSdwanTransportRoutingOspfv3Ipv4Payload: ...

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.transport.routing.ospfv3.ipv4.get()

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

@overload
def get(
    transport_id: str, ospfv3_id: str
) -> GetSingleSdwanTransportRoutingOspfv3Ipv4Payload: ...

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.transport.routing.ospfv3.ipv4.get()