docs: update generated docs (#1053)
Updates for both discovery docs and epydoc API Documentation
Fixes: #1049
diff --git a/docs/dyn/bigquery_v2.projects.html b/docs/dyn/bigquery_v2.projects.html
index a41840d..cddf593 100644
--- a/docs/dyn/bigquery_v2.projects.html
+++ b/docs/dyn/bigquery_v2.projects.html
@@ -75,6 +75,9 @@
<h1><a href="bigquery_v2.html">BigQuery API</a> . <a href="bigquery_v2.projects.html">projects</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
+ <code><a href="#close">close()</a></code></p>
+<p class="firstline">Close httplib2 connections.</p>
+<p class="toc_element">
<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">
@@ -85,6 +88,11 @@
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
+ <code class="details" id="close">close()</code>
+ <pre>Close httplib2 connections.</pre>
+</div>
+
+<div class="method">
<code class="details" id="getServiceAccount">getServiceAccount(projectId)</code>
<pre>Returns the email address of the service account for your project used for interactions with Google Cloud KMS.
@@ -95,8 +103,8 @@
An object of the form:
{
- "email": "A String", # The service account email address.
"kind": "bigquery#getServiceAccountResponse", # The resource type of the response.
+ "email": "A String", # The service account email address.
}</pre>
</div>
@@ -113,20 +121,20 @@
{
"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
+ "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.
{
+ "friendlyName": "A String", # A descriptive name for this project.
+ "id": "A String", # An opaque ID of this 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.
"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.
},
- "friendlyName": "A String", # A descriptive name for this project.
},
],
- "nextPageToken": "A String", # A token to request the next page of results.
}</pre>
</div>