v1.feature_profile.sdwan.system.basic
Operation: POST /dataservice/v1/feature-profile/sdwan/system/{systemId}/basic
Create a Basic Profile Feature for System feature profile
def post(
system_id: str,
payload: CreateBasicProfileFeatureForSystemPostRequest,
) -> CreateBasicProfileFeatureForSystemPostResponse: ...
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.basic.post()
Operation: PUT /dataservice/v1/feature-profile/sdwan/system/{systemId}/basic/{basicId}
Update a Basic Profile Feature for System feature profile
def put(
system_id: str,
basic_id: str,
payload: EditBasicProfileFeatureForSystemPutRequest,
) -> EditBasicProfileFeatureForSystemPutResponse: ...
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.basic.put()
Operation: DELETE /dataservice/v1/feature-profile/sdwan/system/{systemId}/basic/{basicId}
Delete a Basic Profile Feature for System feature profile
def delete(system_id: str, basic_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.basic.delete()
Operation: GET /dataservice/v1/feature-profile/sdwan/system/{systemId}/basic
@overload
def get(system_id: str) -> GetListSdwanSystemBasicPayload: ...
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.basic.get()
Operation: GET /dataservice/v1/feature-profile/sdwan/system/{systemId}/basic/{basicId}
@overload
def get(
system_id: str, basic_id: str
) -> GetSingleSdwanSystemBasicPayload: ...
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.basic.get()