crawled_urls
Creates, updates, deletes, gets or lists a crawled_urls resource.
Overview
| Name | crawled_urls |
| Type | Resource |
| Id | google.websecurityscanner.crawled_urls |
Fields
The following fields are returned by SELECT queries:
- list
| 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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | projectsId, scanConfigsId, scanRunsId | pageToken, pageSize | List CrawledUrls 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 | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- list
List CrawledUrls under a given ScanRun.
SELECT
body,
httpMethod,
url
FROM google.websecurityscanner.crawled_urls
WHERE projectsId = '{{ projectsId }}' -- required
AND scanConfigsId = '{{ scanConfigsId }}' -- required
AND scanRunsId = '{{ scanRunsId }}' -- required
AND pageToken = '{{ pageToken }}'
AND pageSize = '{{ pageSize }}'
;