msla.devices
Operation: PUT /dataservice/msla/devices
Release licenses assigned to the devices
def put(payload: ReleaseLicensesRequest) -> 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.msla.devices.put()
Operation: GET /dataservice/msla/devices
@overload
def get(site_id: Optional[str] = None) -> GetMslaDevicesPayload: ...
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.msla.devices.get()
Operation: GET /dataservice/msla/devices/{uuid}
@overload
def get(uuid: str) -> List[GetDeviceLicensesInner]: ...
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.msla.devices.get()