v1.feature_profile.sdwan.system
Operation: GET /dataservice/v1/feature-profile/sdwan/system
Get all SDWAN Feature Profiles with giving Family and profile type
def get_sdwan_system_feature_profiles(
offset: Optional[int] = None, limit: Optional[int] = 0
) -> Any: ...
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.system.get_sdwan_system_feature_profiles()
Operation: POST /dataservice/v1/feature-profile/sdwan/system
Create a SDWAN System Feature Profile
def create_sdwan_system_feature_profile(
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.system.create_sdwan_system_feature_profile()
Operation: GET /dataservice/v1/feature-profile/sdwan/system/{systemId}
Get a SDWAN System Feature Profile with systemId
def get_sdwan_system_feature_profile_by_profile_id(
system_id: str,
) -> Any: ...
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.system.get_sdwan_system_feature_profile_by_profile_id()
Operation: PUT /dataservice/v1/feature-profile/sdwan/system/{systemId}
Edit a SDWAN System Feature Profile
def edit_sdwan_system_feature_profile(
system_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.system.edit_sdwan_system_feature_profile()
Operation: DELETE /dataservice/v1/feature-profile/sdwan/system/{systemId}
Delete Feature Profile
def delete_sdwan_system_feature_profile(system_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.system.delete_sdwan_system_feature_profile()
- v1.feature_profile.sdwan.system.aaa
- v1.feature_profile.sdwan.system.banner
- v1.feature_profile.sdwan.system.basic
- v1.feature_profile.sdwan.system.bfd
- v1.feature_profile.sdwan.system.global
- v1.feature_profile.sdwan.system.logging
- v1.feature_profile.sdwan.system.mrf
- v1.feature_profile.sdwan.system.ntp
- v1.feature_profile.sdwan.system.omp
- v1.feature_profile.sdwan.system.snmp
- v1.feature_profile.sdwan.system.security