multicloud.accounts.edge

Operation: POST /dataservice/multicloud/accounts/edge

Deprecated!!!

Authenticate edge account credentials

def post(payload: Any) -> 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.multicloud.accounts.edge.post()

Operation: PUT /dataservice/multicloud/accounts/edge/{accountId}

Deprecated!!!

Update Multicloud edge account

def put(account_id: str, payload: Any) -> 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.multicloud.accounts.edge.put()

Operation: DELETE /dataservice/multicloud/accounts/edge/{accountId}

Deprecated!!!

Delete edge account

def delete(account_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.multicloud.accounts.edge.delete()

Operation: GET /dataservice/multicloud/accounts/edge

Deprecated!!!

@overload
def get(edge_type: Optional[EdgeTypeParam] = None) -> 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.multicloud.accounts.edge.get()

Operation: GET /dataservice/multicloud/accounts/edge/{accountId}

Deprecated!!!

@overload
def get(account_id: str) -> 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.multicloud.accounts.edge.get()