auditlog.aggregation
Operation: GET /dataservice/auditlog/aggregation
Get raw property data aggregated
def get(query: str) -> GetAuditLogAggregation: ...
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.aggregation.get()
Operation: POST /dataservice/auditlog/aggregation
Get raw property data aggregated with post action
def post(payload: Any) -> GetAuditLogAggregation: ...
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.aggregation.post()