chore: regens API reference docs (#889)
diff --git a/docs/dyn/websecurityscanner_v1alpha.projects.scanConfigs.scanRuns.crawledUrls.html b/docs/dyn/websecurityscanner_v1alpha.projects.scanConfigs.scanRuns.crawledUrls.html
index 0f5edfd..d683ea5 100644
--- a/docs/dyn/websecurityscanner_v1alpha.projects.scanConfigs.scanRuns.crawledUrls.html
+++ b/docs/dyn/websecurityscanner_v1alpha.projects.scanConfigs.scanRuns.crawledUrls.html
@@ -75,24 +75,20 @@
<h1><a href="websecurityscanner_v1alpha.html">Web Security Scanner API</a> . <a href="websecurityscanner_v1alpha.projects.html">projects</a> . <a href="websecurityscanner_v1alpha.projects.scanConfigs.html">scanConfigs</a> . <a href="websecurityscanner_v1alpha.projects.scanConfigs.scanRuns.html">scanRuns</a> . <a href="websecurityscanner_v1alpha.projects.scanConfigs.scanRuns.crawledUrls.html">crawledUrls</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
+ <code><a href="#list">list(parent, pageToken=None, x__xgafv=None, pageSize=None)</a></code></p>
<p class="firstline">List CrawledUrls under a given ScanRun.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code>
+ <code class="details" id="list">list(parent, pageToken=None, x__xgafv=None, pageSize=None)</code>
<pre>List CrawledUrls under a given ScanRun.
Args:
- parent: string, Required.
-The parent resource name, which should be a scan run resource name in the
+ parent: string, Required. The parent resource name, which should be a scan run resource name in the
format
'projects/{projectId}/scanConfigs/{scanConfigId}/scanRuns/{scanRunId}'. (required)
- pageSize: integer, The maximum number of CrawledUrls to return, can be limited by server.
-If not specified or not positive, the implementation will select a
-reasonable value.
pageToken: string, A token identifying a page of results to be returned. This should be a
`next_page_token` value returned from a previous List request.
If unspecified, the first page of results is returned.
@@ -100,6 +96,9 @@
Allowed values
1 - v1 error format
2 - v2 error format
+ pageSize: integer, The maximum number of CrawledUrls to return, can be limited by server.
+If not specified or not positive, the implementation will select a
+reasonable value.
Returns:
An object of the form:
@@ -111,13 +110,10 @@
{ # A CrawledUrl resource represents a URL that was crawled during a ScanRun. Web
# Security Scanner Service crawls the web applications, following all links
# within the scope of sites, to find the URLs to test against.
- "body": "A String", # Output only.
- # The body of the request that was used to visit the URL.
- "httpMethod": "A String", # Output only.
- # The http method of the request that was used to visit the URL, in
+ "url": "A String", # Output only. The URL that was crawled.
+ "httpMethod": "A String", # Output only. The http method of the request that was used to visit the URL, in
# uppercase.
- "url": "A String", # Output only.
- # The URL that was crawled.
+ "body": "A String", # Output only. The body of the request that was used to visit the URL.
},
],
}</pre>