crawled_urls
Creates, updates, deletes, gets or lists a crawled_urls
resource.
Overview
Name | crawled_urls |
Type | Resource |
Id | google.websecurityscanner.crawled_urls |
Fields
Name | Datatype | Description |
---|---|---|
body | string | Output only. The body of the request that was used to visit the URL. |
httpMethod | string | Output only. The http method of the request that was used to visit the URL, in uppercase. |
url | string | Output only. The URL that was crawled. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | projectsId, scanConfigsId, scanRunsId | List CrawledUrls under a given ScanRun. |
SELECT
examples
List CrawledUrls under a given ScanRun.
SELECT
body,
httpMethod,
url
FROM google.websecurityscanner.crawled_urls
WHERE projectsId = '{{ projectsId }}'
AND scanConfigsId = '{{ scanConfigsId }}'
AND scanRunsId = '{{ scanRunsId }}';