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:
 
     {
+    &quot;kind&quot;: &quot;bigquery#tableDataInsertAllResponse&quot;, # The resource type of the response.
     &quot;insertErrors&quot;: [ # An array of errors for rows that were not inserted.
       {
         &quot;errors&quot;: [ # Error information for the row indicated by the index property.
@@ -128,29 +129,26 @@
         &quot;index&quot;: 42, # The index of the row that error applies to.
       },
     ],
-    &quot;kind&quot;: &quot;bigquery#tableDataInsertAllResponse&quot;, # 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:
 
     {
-    &quot;totalRows&quot;: &quot;A String&quot;, # The total number of rows in the complete table.
-    &quot;etag&quot;: &quot;A String&quot;, # A hash of this page of results.
     &quot;rows&quot;: [ # Rows of results.
       {
         &quot;f&quot;: [ # Represents a single row in the result set, consisting of one or more fields.
@@ -162,6 +160,8 @@
     ],
     &quot;pageToken&quot;: &quot;A String&quot;, # 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.
     &quot;kind&quot;: &quot;bigquery#tableDataList&quot;, # The resource type of the response.
+    &quot;totalRows&quot;: &quot;A String&quot;, # The total number of rows in the complete table.
+    &quot;etag&quot;: &quot;A String&quot;, # A hash of this page of results.
   }</pre>
 </div>