docs: update docs (#916)
* fix: re-run script
* test: fix noxfile
diff --git a/docs/dyn/bigquery_v2.tabledata.html b/docs/dyn/bigquery_v2.tabledata.html
index 02d00e1..81a78e8 100644
--- a/docs/dyn/bigquery_v2.tabledata.html
+++ b/docs/dyn/bigquery_v2.tabledata.html
@@ -78,7 +78,7 @@
<code><a href="#insertAll">insertAll(projectId, datasetId, tableId, body=None)</a></code></p>
<p class="firstline">Streams data into BigQuery one record at a time without needing to run a load job. Requires the WRITER dataset role.</p>
<p class="toc_element">
- <code><a href="#list">list(projectId, datasetId, tableId, pageToken=None, maxResults=None, selectedFields=None, startIndex=None)</a></code></p>
+ <code><a href="#list">list(projectId, datasetId, tableId, selectedFields=None, startIndex=None, pageToken=None, maxResults=None)</a></code></p>
<p class="firstline">Retrieves table data from a specified set of rows. Requires the READER dataset role.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -115,6 +115,7 @@
An object of the form:
{
+ "kind": "bigquery#tableDataInsertAllResponse", # The resource type of the response.
"insertErrors": [ # An array of errors for rows that were not inserted.
{
"errors": [ # Error information for the row indicated by the index property.
@@ -128,29 +129,26 @@
"index": 42, # The index of the row that error applies to.
},
],
- "kind": "bigquery#tableDataInsertAllResponse", # The resource type of the response.
}</pre>
</div>
<div class="method">
- <code class="details" id="list">list(projectId, datasetId, tableId, pageToken=None, maxResults=None, selectedFields=None, startIndex=None)</code>
+ <code class="details" id="list">list(projectId, datasetId, tableId, selectedFields=None, startIndex=None, pageToken=None, maxResults=None)</code>
<pre>Retrieves table data from a specified set of rows. Requires the READER dataset role.
Args:
projectId: string, Project ID of the table to read (required)
datasetId: string, Dataset ID of the table to read (required)
tableId: string, Table ID of the table to read (required)
- pageToken: string, Page token, returned by a previous call, identifying the result set
- maxResults: integer, Maximum number of results to return
selectedFields: string, List of fields to return (comma-separated). If unspecified, all fields are returned
startIndex: string, Zero-based index of the starting row to read
+ pageToken: string, Page token, returned by a previous call, identifying the result set
+ maxResults: integer, Maximum number of results to return
Returns:
An object of the form:
{
- "totalRows": "A String", # The total number of rows in the complete table.
- "etag": "A String", # A hash of this page of results.
"rows": [ # Rows of results.
{
"f": [ # Represents a single row in the result set, consisting of one or more fields.
@@ -162,6 +160,8 @@
],
"pageToken": "A String", # A token used for paging results. Providing this token instead of the startIndex parameter can help you retrieve stable results when an underlying table is changing.
"kind": "bigquery#tableDataList", # The resource type of the response.
+ "totalRows": "A String", # The total number of rows in the complete table.
+ "etag": "A String", # A hash of this page of results.
}</pre>
</div>