fetch_resources_by_check_name_summary
Retrieve a compliance summary for resources by check and resource type, showing total, compliant, and non-compliant counts.
Instructions
Use this to get the summary on check resources Use this when total items in 'fetch_resources_for_check' is high Get check resources summary for given asset run id, resource type and check Paginated data is enough for summary Get a summarized view of check resources based on - Compliance breakdown for resources - Total Resources available - Total compliant resources - Total non-compliant resources
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 | ||
| check | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| complianceSummary | No | ||
| error | No |
Implementation Reference
- constants/constants.py:79-79 (helper)The API endpoint constant used by the tool to fetch the integration detail summary from the backend service.
URL_FETCH_ASSETS_DETAIL_SUMMARY = "/v1/plan-instances/fetch-integration-detail-summary"