chore: update docs/dyn , add static discovery files to discovery_cache/documents (#1111)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/78f53313-0c78-4a29-8841-f031665a4c6a/targets
- [ ] To automatically regenerate this PR, check this box.
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 7a44eb5..bd9e5fe 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(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>
@@ -109,30 +109,30 @@
</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.
- "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.
+ "numericId": "A String", # The numeric 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.
},
- "numericId": "A String", # The numeric ID of 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>