v1.feature_profile.sdwan

Operation: GET /dataservice/v1/feature-profile/sdwan

Get all SDWAN Feature Profiles

def get_sdwan_feature_profile_by_sdwan_family(
    offset: Optional[int] = None, limit: Optional[int] = 0
) -> List[GetSdwanFeatureProfileBySdwanFamilyGetResponse]: ...

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.get_sdwan_feature_profile_by_sdwan_family()