v1.feature_profile.sd_routing.service.vrf.dmvpn_tunnel
Operation: POST /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/dmvpn-tunnel
Create a SD-Routing VRF DMVPN Tunnel Feature for Service Feature Profile
def post(
service_id: str,
vrf_id: str,
payload: CreateSdroutingServiceVrfDmvpnTunnelFeatureForServicePostRequest,
) -> (
CreateSdroutingServiceVrfDmvpnTunnelFeatureForServicePostResponse
): ...
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.dmvpn_tunnel.post()
Operation: PUT /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/dmvpn-tunnel/{tunnelId}
Edit a SD-Routing VRF DMVPN Tunnel Feature for Service Feature Profile
def put(
service_id: str,
vrf_id: str,
tunnel_id: str,
payload: EditSdroutingServiceVrfDmvpnTunnelFeatureForServicePutRequest,
) -> (
EditSdroutingServiceVrfDmvpnTunnelFeatureForServicePutResponse
): ...
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.dmvpn_tunnel.put()
Operation: DELETE /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/dmvpn-tunnel/{tunnelId}
Delete a SD-Routing VRF DMVPN Tunnel Feature for Service Feature Profile
def delete(service_id: str, vrf_id: str, tunnel_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.dmvpn_tunnel.delete()
Operation: GET /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/dmvpn-tunnel
@overload
def get(
service_id: str, vrf_id: str
) -> GetListSdRoutingServiceVrfLanDmvpnTunnelPayload: ...
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.dmvpn_tunnel.get()
Operation: GET /dataservice/v1/feature-profile/sd-routing/service/{serviceId}/vrf/{vrfId}/dmvpn-tunnel/{tunnelId}
@overload
def get(
service_id: str, vrf_id: str, tunnel_id: str
) -> GetSingleSdRoutingServiceVrfLanDmvpnTunnelPayload: ...
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.dmvpn_tunnel.get()