docs: update docs/dyn (#1096)

This PR was generated using Autosynth. :rainbow:

Synth log will be available here:
https://source.cloud.google.com/results/invocations/6f0f288a-a1e8-4b2d-a85f-00b1c6150185/targets

- [ ] To automatically regenerate this PR, check this box.

Source-Link: https://github.com/googleapis/synthtool/commit/39b7149da4026765385403632db3c6f63db96b2c
Source-Link: https://github.com/googleapis/synthtool/commit/9a7d9fbb7045c34c9d3d22c1ff766eeae51f04c9
Source-Link: https://github.com/googleapis/synthtool/commit/dc9903a8c30c3662b6098f0e4a97f221d67268b2
Source-Link: https://github.com/googleapis/synthtool/commit/7fcc405a579d5d53a726ff3da1b7c8c08f0f2d58
Source-Link: https://github.com/googleapis/synthtool/commit/d5fc0bcf9ea9789c5b0e3154a9e3b29e5cea6116
Source-Link: https://github.com/googleapis/synthtool/commit/e89175cf074dccc4babb4eca66ae913696e47a71
Source-Link: https://github.com/googleapis/synthtool/commit/7d652819519dfa24da9e14548232e4aaba71a11c
Source-Link: https://github.com/googleapis/synthtool/commit/7db8a6c5ffb12a6e4c2f799c18f00f7f3d60e279
Source-Link: https://github.com/googleapis/synthtool/commit/1f1148d3c7a7a52f0c98077f976bd9b3c948ee2b
Source-Link: https://github.com/googleapis/synthtool/commit/2c8aecedd55b0480fb4e123b6e07fa5b12953862
Source-Link: https://github.com/googleapis/synthtool/commit/3d3e94c4e02370f307a9a200b0c743c3d8d19f29
Source-Link: https://github.com/googleapis/synthtool/commit/c7824ea48ff6d4d42dfae0849aec8a85acd90bd9
Source-Link: https://github.com/googleapis/synthtool/commit/ba9918cd22874245b55734f57470c719b577e591
Source-Link: https://github.com/googleapis/synthtool/commit/b19b401571e77192f8dd38eab5fb2300a0de9324
Source-Link: https://github.com/googleapis/synthtool/commit/6542bd723403513626f61642fc02ddca528409aa
diff --git a/docs/dyn/calendar_v3.settings.html b/docs/dyn/calendar_v3.settings.html
index 6e270ea..e18c157 100644
--- a/docs/dyn/calendar_v3.settings.html
+++ b/docs/dyn/calendar_v3.settings.html
@@ -81,13 +81,13 @@
   <code><a href="#get">get(setting)</a></code></p>
 <p class="firstline">Returns a single user setting.</p>
 <p class="toc_element">
-  <code><a href="#list">list(maxResults=None, syncToken=None, pageToken=None)</a></code></p>
+  <code><a href="#list">list(maxResults=None, pageToken=None, syncToken=None)</a></code></p>
 <p class="firstline">Returns all user settings for the authenticated user.</p>
 <p class="toc_element">
   <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
 <p class="firstline">Retrieves the next page of results.</p>
 <p class="toc_element">
-  <code><a href="#watch">watch(body=None, pageToken=None, syncToken=None, maxResults=None)</a></code></p>
+  <code><a href="#watch">watch(body=None, syncToken=None, maxResults=None, pageToken=None)</a></code></p>
 <p class="firstline">Watch for changes to Settings resources.</p>
 <h3>Method Details</h3>
 <div class="method">
@@ -106,41 +106,41 @@
   An object of the form:
 
     {
-    &quot;kind&quot;: &quot;calendar#setting&quot;, # Type of the resource (&quot;calendar#setting&quot;).
+    &quot;id&quot;: &quot;A String&quot;, # The id of the user setting.
     &quot;value&quot;: &quot;A String&quot;, # Value of the user setting. The format of the value depends on the ID of the setting. It must always be a UTF-8 string of length up to 1024 characters.
     &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource.
-    &quot;id&quot;: &quot;A String&quot;, # The id of the user setting.
+    &quot;kind&quot;: &quot;calendar#setting&quot;, # Type of the resource (&quot;calendar#setting&quot;).
   }</pre>
 </div>
 
 <div class="method">
-    <code class="details" id="list">list(maxResults=None, syncToken=None, pageToken=None)</code>
+    <code class="details" id="list">list(maxResults=None, pageToken=None, syncToken=None)</code>
   <pre>Returns all user settings for the authenticated user.
 
 Args:
   maxResults: integer, Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional.
+  pageToken: string, Token specifying which result page to return. Optional.
   syncToken: string, Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then.
 If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken.
 Learn more about incremental synchronization.
 Optional. The default is to return all entries.
-  pageToken: string, Token specifying which result page to return. Optional.
 
 Returns:
   An object of the form:
 
     {
-    &quot;items&quot;: [ # List of user settings.
-      {
-        &quot;kind&quot;: &quot;calendar#setting&quot;, # Type of the resource (&quot;calendar#setting&quot;).
-        &quot;value&quot;: &quot;A String&quot;, # Value of the user setting. The format of the value depends on the ID of the setting. It must always be a UTF-8 string of length up to 1024 characters.
-        &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource.
-        &quot;id&quot;: &quot;A String&quot;, # The id of the user setting.
-      },
-    ],
-    &quot;nextSyncToken&quot;: &quot;A String&quot;, # Token used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case nextPageToken is provided.
     &quot;nextPageToken&quot;: &quot;A String&quot;, # Token used to access the next page of this result. Omitted if no further results are available, in which case nextSyncToken is provided.
     &quot;etag&quot;: &quot;A String&quot;, # Etag of the collection.
     &quot;kind&quot;: &quot;calendar#settings&quot;, # Type of the collection (&quot;calendar#settings&quot;).
+    &quot;nextSyncToken&quot;: &quot;A String&quot;, # Token used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case nextPageToken is provided.
+    &quot;items&quot;: [ # List of user settings.
+      {
+        &quot;id&quot;: &quot;A String&quot;, # The id of the user setting.
+        &quot;value&quot;: &quot;A String&quot;, # Value of the user setting. The format of the value depends on the ID of the setting. It must always be a UTF-8 string of length up to 1024 characters.
+        &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource.
+        &quot;kind&quot;: &quot;calendar#setting&quot;, # Type of the resource (&quot;calendar#setting&quot;).
+      },
+    ],
   }</pre>
 </div>
 
@@ -159,7 +159,7 @@
 </div>
 
 <div class="method">
-    <code class="details" id="watch">watch(body=None, pageToken=None, syncToken=None, maxResults=None)</code>
+    <code class="details" id="watch">watch(body=None, syncToken=None, maxResults=None, pageToken=None)</code>
   <pre>Watch for changes to Settings resources.
 
 Args:
@@ -167,43 +167,43 @@
     The object takes the form of:
 
 {
-    &quot;id&quot;: &quot;A String&quot;, # A UUID or similar unique string that identifies this channel.
+    &quot;resourceUri&quot;: &quot;A String&quot;, # A version-specific identifier for the watched resource.
     &quot;address&quot;: &quot;A String&quot;, # The address where notifications are delivered for this channel.
     &quot;payload&quot;: True or False, # A Boolean value to indicate whether payload is wanted. Optional.
     &quot;expiration&quot;: &quot;A String&quot;, # Date and time of notification channel expiration, expressed as a Unix timestamp, in milliseconds. Optional.
-    &quot;resourceUri&quot;: &quot;A String&quot;, # A version-specific identifier for the watched resource.
-    &quot;resourceId&quot;: &quot;A String&quot;, # An opaque ID that identifies the resource being watched on this channel. Stable across different API versions.
-    &quot;kind&quot;: &quot;api#channel&quot;, # Identifies this as a notification channel used to watch for changes to a resource, which is &quot;api#channel&quot;.
     &quot;token&quot;: &quot;A String&quot;, # An arbitrary string delivered to the target address with each notification delivered over this channel. Optional.
-    &quot;type&quot;: &quot;A String&quot;, # The type of delivery mechanism used for this channel.
+    &quot;id&quot;: &quot;A String&quot;, # A UUID or similar unique string that identifies this channel.
+    &quot;resourceId&quot;: &quot;A String&quot;, # An opaque ID that identifies the resource being watched on this channel. Stable across different API versions.
     &quot;params&quot;: { # Additional parameters controlling delivery channel behavior. Optional.
       &quot;a_key&quot;: &quot;A String&quot;, # Declares a new parameter by name.
     },
+    &quot;type&quot;: &quot;A String&quot;, # The type of delivery mechanism used for this channel.
+    &quot;kind&quot;: &quot;api#channel&quot;, # Identifies this as a notification channel used to watch for changes to a resource, which is &quot;api#channel&quot;.
   }
 
-  pageToken: string, Token specifying which result page to return. Optional.
   syncToken: string, Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then.
 If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken.
 Learn more about incremental synchronization.
 Optional. The default is to return all entries.
   maxResults: integer, Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional.
+  pageToken: string, Token specifying which result page to return. Optional.
 
 Returns:
   An object of the form:
 
     {
-      &quot;id&quot;: &quot;A String&quot;, # A UUID or similar unique string that identifies this channel.
+      &quot;resourceUri&quot;: &quot;A String&quot;, # A version-specific identifier for the watched resource.
       &quot;address&quot;: &quot;A String&quot;, # The address where notifications are delivered for this channel.
       &quot;payload&quot;: True or False, # A Boolean value to indicate whether payload is wanted. Optional.
       &quot;expiration&quot;: &quot;A String&quot;, # Date and time of notification channel expiration, expressed as a Unix timestamp, in milliseconds. Optional.
-      &quot;resourceUri&quot;: &quot;A String&quot;, # A version-specific identifier for the watched resource.
-      &quot;resourceId&quot;: &quot;A String&quot;, # An opaque ID that identifies the resource being watched on this channel. Stable across different API versions.
-      &quot;kind&quot;: &quot;api#channel&quot;, # Identifies this as a notification channel used to watch for changes to a resource, which is &quot;api#channel&quot;.
       &quot;token&quot;: &quot;A String&quot;, # An arbitrary string delivered to the target address with each notification delivered over this channel. Optional.
-      &quot;type&quot;: &quot;A String&quot;, # The type of delivery mechanism used for this channel.
+      &quot;id&quot;: &quot;A String&quot;, # A UUID or similar unique string that identifies this channel.
+      &quot;resourceId&quot;: &quot;A String&quot;, # An opaque ID that identifies the resource being watched on this channel. Stable across different API versions.
       &quot;params&quot;: { # Additional parameters controlling delivery channel behavior. Optional.
         &quot;a_key&quot;: &quot;A String&quot;, # Declares a new parameter by name.
       },
+      &quot;type&quot;: &quot;A String&quot;, # The type of delivery mechanism used for this channel.
+      &quot;kind&quot;: &quot;api#channel&quot;, # Identifies this as a notification channel used to watch for changes to a resource, which is &quot;api#channel&quot;.
     }</pre>
 </div>