v1.feature_profile.sdwan.service.lan.vpn.interface.ethernet.trackergroup
Operation: GET /dataservice/v1/feature-profile/sdwan/service/{serviceId}/lan/vpn/{vpnId}/interface/ethernet/{ethernetId}/trackergroup
Get LanVpnInterfaceEthernet associated TrackerGroup Parcels for service feature profile
def get_lan_vpn_interface_ethernet_associated_tracker_group_parcels_for_transport(
service_id: str, vpn_id: str, ethernet_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.sdwan.service.lan.vpn.interface.ethernet.trackergroup.get_lan_vpn_interface_ethernet_associated_tracker_group_parcels_for_transport()
Operation: GET /dataservice/v1/feature-profile/sdwan/service/{serviceId}/lan/vpn/{vpnId}/interface/ethernet/{ethernetId}/trackergroup/{trackergroupId}
Get LanVpnInterfaceEthernet associated TrackerGroup Parcel by trackergroupId for service feature profile
def get_lan_vpn_interface_ethernet_associated_tracker_group_parcel_by_parcel_id_for_transport(
service_id: str,
vpn_id: str,
ethernet_id: str,
trackergroup_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.sdwan.service.lan.vpn.interface.ethernet.trackergroup.get_lan_vpn_interface_ethernet_associated_tracker_group_parcel_by_parcel_id_for_transport()
Operation: PUT /dataservice/v1/feature-profile/sdwan/service/{serviceId}/lan/vpn/{vpnId}/interface/ethernet/{ethernetId}/trackergroup/{trackergroupId}
Update a LanVpnInterfaceEthernet parcel and a TrackerGroup Parcel association for service feature profile
def edit_lan_vpn_interface_ethernet_and_tracker_group_parcel_association_for_transport(
service_id: str,
vpn_id: str,
ethernet_id: str,
trackergroup_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.sdwan.service.lan.vpn.interface.ethernet.trackergroup.edit_lan_vpn_interface_ethernet_and_tracker_group_parcel_association_for_transport()
Operation: DELETE /dataservice/v1/feature-profile/sdwan/service/{serviceId}/lan/vpn/{vpnId}/interface/ethernet/{ethernetId}/trackergroup/{trackergroupId}
Delete a LanVpnInterfaceEthernet and a TrackerGroup Parcel association for service feature profile
def delete_lan_vpn_interface_ethernet_and_tracker_group_association_for_transport(
service_id: str,
vpn_id: str,
ethernet_id: str,
trackergroup_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.service.lan.vpn.interface.ethernet.trackergroup.delete_lan_vpn_interface_ethernet_and_tracker_group_association_for_transport()
Operation: POST /dataservice/v1/feature-profile/sdwan/service/{serviceId}/lan/vpn/{vpnParcelId}/interface/ethernet/{ethernetId}/trackergroup
Associate a LanVpnInterfaceEthernet parcel with a TrackerGroup Parcel for service feature profile
def create_lan_vpn_interface_ethernet_and_tracker_group_parcel_association_for_transport(
service_id: str,
vpn_parcel_id: str,
ethernet_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.sdwan.service.lan.vpn.interface.ethernet.trackergroup.create_lan_vpn_interface_ethernet_and_tracker_group_parcel_association_for_transport()