v1.feature_profile.mobility.global_.wifi

Operation: POST /dataservice/v1/feature-profile/mobility/global/{profileId}/wifi

Create an Wifi Profile Parcel for Mobility feature profile

def post(
    profile_id: str,
    payload: CreateWifiProfileParcelForMobilityPostRequest,
) -> 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.mobility.global_.wifi.post()

Operation: PUT /dataservice/v1/feature-profile/mobility/global/{profileId}/wifi/{wifiId}

Edit an Wifi Profile Parcel for Mobility feature profile

def put(
    profile_id: str,
    wifi_id: str,
    payload: EditWifiProfileParcelForMobilityPutRequest,
) -> 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.mobility.global_.wifi.put()

Operation: DELETE /dataservice/v1/feature-profile/mobility/global/{profileId}/wifi/{wifiId}

Delete an Wifi Profile Parcel for Mobility feature profile

def delete(profile_id: str, wifi_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.mobility.global_.wifi.delete()

Operation: GET /dataservice/v1/feature-profile/mobility/global/{profileId}/wifi

@overload
def get(profile_id: str) -> GetListMobilityGlobalWifiPayload: ...

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.mobility.global_.wifi.get()

Operation: GET /dataservice/v1/feature-profile/mobility/global/{profileId}/wifi/{wifiId}

@overload
def get(
    profile_id: str, wifi_id: str
) -> GetSingleMobilityGlobalWifiPayload: ...

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.mobility.global_.wifi.get()