finding_type_stats
Creates, updates, deletes, gets or lists a finding_type_stats resource.
Overview
| Name | finding_type_stats |
| Type | Resource |
| Id | google.websecurityscanner.finding_type_stats |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
findingTypeStats | array | The list of FindingTypeStats returned. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | projectsId, scanConfigsId, scanRunsId | List all FindingTypeStats under a given ScanRun. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
projectsId | string | |
scanConfigsId | string | |
scanRunsId | string |
SELECT examples
- list
List all FindingTypeStats under a given ScanRun.
SELECT
findingTypeStats
FROM google.websecurityscanner.finding_type_stats
WHERE projectsId = '{{ projectsId }}' -- required
AND scanConfigsId = '{{ scanConfigsId }}' -- required
AND scanRunsId = '{{ scanRunsId }}' -- required
;