docs: docs update (#911)

Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)

Fixes #<issue_number_goes_here> 🦕
diff --git a/docs/dyn/bigquery_v2.projects.html b/docs/dyn/bigquery_v2.projects.html
index a87a5f5..b13ee09 100644
--- a/docs/dyn/bigquery_v2.projects.html
+++ b/docs/dyn/bigquery_v2.projects.html
@@ -78,7 +78,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>
@@ -95,36 +95,36 @@
   An object of the form:
 
     {
-    "kind": "bigquery#getServiceAccountResponse", # The resource type of the response.
-    "email": "A String", # The service account email address.
+    &quot;email&quot;: &quot;A String&quot;, # The service account email address.
+    &quot;kind&quot;: &quot;bigquery#getServiceAccountResponse&quot;, # The resource type of the response.
   }</pre>
 </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:
 
     {
-    "nextPageToken": "A String", # A token to request the next page of results.
-    "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
-    "projects": [ # Projects to which you have at least READ access.
+    &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;kind&quot;: &quot;bigquery#projectList&quot;, # The type of list.
+    &quot;etag&quot;: &quot;A String&quot;, # A hash of the page of results
+    &quot;projects&quot;: [ # Projects to which you have at least READ access.
       {
-        "friendlyName": "A String", # A descriptive name for this project.
-        "kind": "bigquery#project", # The resource type.
-        "numericId": "A String", # The numeric ID of this project.
-        "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.
+        &quot;id&quot;: &quot;A String&quot;, # An opaque ID of 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;friendlyName&quot;: &quot;A String&quot;, # A descriptive name for this project.
+        &quot;numericId&quot;: &quot;A String&quot;, # The numeric ID of this project.
+        &quot;kind&quot;: &quot;bigquery#project&quot;, # The resource type.
       },
     ],
   }</pre>
@@ -139,7 +139,7 @@
   previous_response: The response from the request for the previous page. (required)
 
 Returns:
-  A request object that you can call 'execute()' on to request the next
+  A request object that you can call &#x27;execute()&#x27; on to request the next
   page. Returns None if there are no more items in the collection.
     </pre>
 </div>