chore: update docs/dyn (#1106)
diff --git a/docs/dyn/bigquery_v2.projects.html b/docs/dyn/bigquery_v2.projects.html
index 17f40cb..7a44eb5 100644
--- a/docs/dyn/bigquery_v2.projects.html
+++ b/docs/dyn/bigquery_v2.projects.html
@@ -81,7 +81,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(pageToken=None, maxResults=None)</a></code></p>
+ <code><a href="#list">list(maxResults=None, pageToken=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>
@@ -109,32 +109,32 @@
</div>
<div class="method">
- <code class="details" id="list">list(pageToken=None, maxResults=None)</code>
+ <code class="details" id="list">list(maxResults=None, pageToken=None)</code>
<pre>Lists all projects to which you have been granted any project role.
Args:
- pageToken: string, Page token, returned by a previous call, to request the next page of results
maxResults: integer, Maximum number of results to return
+ pageToken: string, Page token, returned by a previous call, to request the next page of results
Returns:
An object of the form:
{
- "totalItems": 42, # The total number of projects in the list.
- "kind": "bigquery#projectList", # The type of list.
"nextPageToken": "A String", # A token to request the next page of results.
- "etag": "A String", # A hash of the page of results
+ "kind": "bigquery#projectList", # The type of list.
"projects": [ # Projects to which you have at least READ access.
{
+ "id": "A String", # An opaque ID of this project.
+ "friendlyName": "A String", # A descriptive name for this project.
+ "kind": "bigquery#project", # The resource type.
"projectReference": { # A unique reference to this project.
"projectId": "A String", # [Required] ID of the project. Can be either the numeric ID or the assigned ID of the project.
},
- "id": "A String", # An opaque ID of this project.
"numericId": "A String", # The numeric ID of this project.
- "friendlyName": "A String", # A descriptive name for this project.
- "kind": "bigquery#project", # The resource type.
},
],
+ "totalItems": 42, # The total number of projects in the list.
+ "etag": "A String", # A hash of the page of results
}</pre>
</div>