v1.feature_profile.sdwan.system.aaa
Operation: POST /dataservice/v1/feature-profile/sdwan/system/{systemId}/aaa
Create a Aaa Profile Parcel for System feature profile
def post(
system_id: str,
payload: CreateAaaProfileParcelForSystemPostRequest,
) -> CreateAaaProfileParcelForSystemPostResponse: ...
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.aaa.post()
Operation: PUT /dataservice/v1/feature-profile/sdwan/system/{systemId}/aaa/{aaaId}
Update a Aaa Profile Parcel for System feature profile
def put(
system_id: str,
aaa_id: str,
payload: EditAaaProfileParcelForSystemPutRequest,
) -> EditAaaProfileParcelForSystemPutResponse: ...
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.aaa.put()
Operation: DELETE /dataservice/v1/feature-profile/sdwan/system/{systemId}/aaa/{aaaId}
Delete a Aaa Profile Parcel for System feature profile
def delete(system_id: str, aaa_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.aaa.delete()
Operation: GET /dataservice/v1/feature-profile/sdwan/system/{systemId}/aaa
@overload
def get(system_id: str) -> GetListSdwanSystemAaaPayload: ...
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.aaa.get()
Operation: GET /dataservice/v1/feature-profile/sdwan/system/{systemId}/aaa/{aaaId}
@overload
def get(
system_id: str, aaa_id: str
) -> GetSingleSdwanSystemAaaPayload: ...
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.aaa.get()