chore: update generated docs (#1115)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/2ed9ab0e-55b4-4ab2-aede-c95e765f7376/targets
- [x] To automatically regenerate this PR, check this box.
Source-Link: https://github.com/googleapis/discovery-artifact-manager/commit/0bed8bdae25d545e796cfcdd7a9bfffff11e69da
Source-Link: https://github.com/googleapis/synthtool/commit/c2de32114ec484aa708d32012d1fa8d75232daf5
diff --git a/docs/dyn/bigquery_v2.projects.html b/docs/dyn/bigquery_v2.projects.html
index bd9e5fe..daae582 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,31 +109,31 @@
</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:
{
+ "nextPageToken": "A String", # A token to request the next page of results.
+ "kind": "bigquery#projectList", # The type of list.
+ "totalItems": 42, # The total number of projects in the list.
"projects": [ # Projects to which you have at least READ access.
{
- "numericId": "A String", # The numeric ID of this project.
- "friendlyName": "A String", # A descriptive name for this project.
"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.
},
+ "numericId": "A String", # The numeric ID of this project.
+ "friendlyName": "A String", # A descriptive name for this project.
"kind": "bigquery#project", # The resource type.
"id": "A String", # An opaque ID of this project.
},
],
- "kind": "bigquery#projectList", # The type of list.
- "nextPageToken": "A String", # A token to request the next page of results.
- "totalItems": 42, # The total number of projects in the list.
"etag": "A String", # A hash of the page of results
}</pre>
</div>