v1.feature_profile.sdwan.transport
Operation: POST /dataservice/v1/feature-profile/sdwan/transport
Create a SDWAN Transport Feature Profile
def post(
payload: CreateSdwanTransportFeatureProfilePostRequest,
) -> CreateSdwanTransportFeatureProfilePostResponse: ...
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.transport.post()
Operation: PUT /dataservice/v1/feature-profile/sdwan/transport/{transportId}
Edit a SDWAN Transport Feature Profile
def put(
transport_id: str,
payload: EditSdwanTransportFeatureProfilePutRequest,
) -> EditSdwanTransportFeatureProfilePutResponse: ...
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.transport.put()
Operation: DELETE /dataservice/v1/feature-profile/sdwan/transport/{transportId}
Delete Feature Profile
def delete(transport_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.transport.delete()
Operation: GET /dataservice/v1/feature-profile/sdwan/transport
@overload
def get(
offset: Optional[int] = None, limit: Optional[int] = 0
) -> List[GetSdwanTransportFeatureProfilesGetResponse]: ...
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.transport.get()
Operation: GET /dataservice/v1/feature-profile/sdwan/transport/{transportId}
@overload
def get(transport_id: str) -> GetSingleSdwanTransportPayload: ...
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.transport.get()
- v1.feature_profile.sdwan.transport.cellular_controller
- v1.feature_profile.sdwan.transport.cellular_profile
- v1.feature_profile.sdwan.transport.ipv6_tracker
- v1.feature_profile.sdwan.transport.ipv6_trackergroup
- v1.feature_profile.sdwan.transport.management
- v1.feature_profile.sdwan.transport.routing
- v1.feature_profile.sdwan.transport.t1_e1_controller
- v1.feature_profile.sdwan.transport.tracker
- v1.feature_profile.sdwan.transport.trackergroup
- v1.feature_profile.sdwan.transport.wan
- v1.feature_profile.sdwan.transport.esimcellular_controller
- v1.feature_profile.sdwan.transport.esimcellular_profile
- v1.feature_profile.sdwan.transport.gps
- Models