ise.credentials.pxgrid
Operation: GET /dataservice/ise/credentials/pxgrid
Get PxGrid account
def get_px_grid_account() -> PxGridInfo: ...
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.ise.credentials.pxgrid.get_px_grid_account()
Operation: DELETE /dataservice/ise/credentials/pxgrid
Delete PxGrid account information
def delete_px_grid() -> bool: ...
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.ise.credentials.pxgrid.delete_px_grid()