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:
 
     {
+    &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to request the next page of results.
+    &quot;kind&quot;: &quot;bigquery#projectList&quot;, # The type of list.
+    &quot;totalItems&quot;: 42, # The total number of projects in the list.
     &quot;projects&quot;: [ # Projects to which you have at least READ access.
       {
-        &quot;numericId&quot;: &quot;A String&quot;, # The numeric ID of this project.
-        &quot;friendlyName&quot;: &quot;A String&quot;, # A descriptive name for this project.
         &quot;projectReference&quot;: { # A unique reference to this project.
           &quot;projectId&quot;: &quot;A String&quot;, # [Required] ID of the project. Can be either the numeric ID or the assigned ID of the project.
         },
+        &quot;numericId&quot;: &quot;A String&quot;, # The numeric ID of this project.
+        &quot;friendlyName&quot;: &quot;A String&quot;, # A descriptive name for this project.
         &quot;kind&quot;: &quot;bigquery#project&quot;, # The resource type.
         &quot;id&quot;: &quot;A String&quot;, # An opaque ID of this project.
       },
     ],
-    &quot;kind&quot;: &quot;bigquery#projectList&quot;, # The type of list.
-    &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to request the next page of results.
-    &quot;totalItems&quot;: 42, # The total number of projects in the list.
     &quot;etag&quot;: &quot;A String&quot;, # A hash of the page of results
   }</pre>
 </div>