template.cloudx.manage.apps
Operation: GET /dataservice/template/cloudx/manage/apps
Get apps and vpns
def get() -> List[Any]: ...
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.template.cloudx.manage.apps.get()
Operation: PUT /dataservice/template/cloudx/manage/apps
Edit apps and vpns
def put(payload: Any) -> Any: ...
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.template.cloudx.manage.apps.put()
Operation: POST /dataservice/template/cloudx/manage/apps
Add apps and vpns
def post(payload: Any) -> List[Any]: ...
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.template.cloudx.manage.apps.post()