multicloud.devicelink.edge
Operation: GET /dataservice/multicloud/devicelink/edge
Deprecated!!!
Get Device Links
def get_device_links(
edge_type: Optional[EdgeTypeParam] = None,
device_link_name: 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.devicelink.edge.get_device_links()
Operation: PUT /dataservice/multicloud/devicelink/edge
Deprecated!!!
Update Device Link
def update_device_link(payload: Optional[Any] = 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.devicelink.edge.update_device_link()
Operation: POST /dataservice/multicloud/devicelink/edge
Deprecated!!!
Create Device Link
def create_device_link(payload: Optional[Any] = 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.devicelink.edge.create_device_link()
Operation: DELETE /dataservice/multicloud/devicelink/edge/{deviceLinkName}
Deprecated!!!
Delete Device Link
def delete_device_link(device_link_name: 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.devicelink.edge.delete_device_link()