docs: update docs (#916)
* fix: re-run script
* test: fix noxfile
diff --git a/docs/dyn/bigquery_v2.projects.html b/docs/dyn/bigquery_v2.projects.html
index b13ee09..f86e364 100644
--- a/docs/dyn/bigquery_v2.projects.html
+++ b/docs/dyn/bigquery_v2.projects.html
@@ -78,7 +78,7 @@
<code><a href="#getServiceAccount">getServiceAccount(projectId)</a></code></p>
<p class="firstline">Returns the email address of the service account for your project used for interactions with Google Cloud KMS.</p>
<p class="toc_element">
- <code><a href="#list">list(maxResults=None, pageToken=None)</a></code></p>
+ <code><a href="#list">list(pageToken=None, maxResults=None)</a></code></p>
<p class="firstline">Lists all projects to which you have been granted any project role.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -101,20 +101,17 @@
</div>
<div class="method">
- <code class="details" id="list">list(maxResults=None, pageToken=None)</code>
+ <code class="details" id="list">list(pageToken=None, maxResults=None)</code>
<pre>Lists all projects to which you have been granted any project role.
Args:
- maxResults: integer, Maximum number of results to return
pageToken: string, Page token, returned by a previous call, to request the next page of results
+ maxResults: integer, Maximum number of results to return
Returns:
An object of the form:
{
- "nextPageToken": "A String", # A token to request the next page of results.
- "totalItems": 42, # The total number of projects in the list.
- "kind": "bigquery#projectList", # The type of list.
"etag": "A String", # A hash of the page of results
"projects": [ # Projects to which you have at least READ access.
{
@@ -127,6 +124,9 @@
"kind": "bigquery#project", # The resource type.
},
],
+ "nextPageToken": "A String", # A token to request the next page of results.
+ "totalItems": 42, # The total number of projects in the list.
+ "kind": "bigquery#projectList", # The type of list.
}</pre>
</div>