multicloud.locations.edge

Operation: GET /dataservice/multicloud/locations/edge/{edgeType}

Deprecated!!!

Get Edge Locations

def get_edge_locations_info(
    edge_type: EdgeTypeParam,
    account_id: Optional[str] = None,
    region: Optional[str] = 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.locations.edge.get_edge_locations_info()

Operation: DELETE /dataservice/multicloud/locations/edge/{edgeType}

Deprecated!!!

Delete edge account

def delete_edge_account_1(edge_type: EdgeTypeParam) -> 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.locations.edge.delete_edge_account_1()