auditlog.page
Operation: GET /dataservice/auditlog/page
Get raw property data in bulk
def get(
query: str, count: int, scroll_id: Optional[str] = None
) -> GetAuditLogData: ...
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.auditlog.page.get()
Operation: POST /dataservice/auditlog/page
Get raw property data in bulk with post action
def post(
count: int, payload: Any, scroll_id: Optional[str] = None
) -> GetAuditLogData: ...
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.auditlog.page.post()