fetch_checks_summary
Retrieves a compliance breakdown for checks, showing total, compliant, and non-compliant counts for a given asset run and resource type.
Instructions
Use this to get the summary on checks Use this when total items in 'fetch_checks' is high Get checks summary for given asset run id and resource type. Get a summarized view of resources based on - Compliance breakdown for checks - Total Checks available - Total compliant checks - Total non-compliant checks
Args: - id (str): Asset run id - resourceType (str): Resource type
Returns: - complianceSummary (dict): Summary of compliance status across checks. - error (Optional[str]): An error message if any issues occurred during retrieval.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| resourceType | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| complianceSummary | No | ||
| error | No |
Implementation Reference
- tools/help/help.py:115-115 (helper)The help text describing the tool: 'fetch_checks_summary(id, resourceType) - Get checks summary'
• fetch_checks_summary(id, resourceType) - Get checks summary