Skip to main content

finding_type_stats

Creates, updates, deletes, gets or lists a finding_type_stats resource.

Overview

Namefinding_type_stats
TypeResource
Idgoogle.websecurityscanner.finding_type_stats

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
findingTypeStatsarrayThe list of FindingTypeStats returned.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprojectsId, scanConfigsId, scanRunsIdList 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.

NameDatatypeDescription
projectsIdstring
scanConfigsIdstring
scanRunsIdstring

SELECT examples

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;