docs: update generated docs (#981)

diff --git a/docs/dyn/androidpublisher_v3.edits.bundles.html b/docs/dyn/androidpublisher_v3.edits.bundles.html
index 3fa567d..6a92c33 100644
--- a/docs/dyn/androidpublisher_v3.edits.bundles.html
+++ b/docs/dyn/androidpublisher_v3.edits.bundles.html
@@ -72,56 +72,78 @@
 
 </style>
 
-<h1><a href="androidpublisher_v3.html">Google Play Developer API</a> . <a href="androidpublisher_v3.edits.html">edits</a> . <a href="androidpublisher_v3.edits.bundles.html">bundles</a></h1>
+<h1><a href="androidpublisher_v3.html">Google Play Android Developer API</a> . <a href="androidpublisher_v3.edits.html">edits</a> . <a href="androidpublisher_v3.edits.bundles.html">bundles</a></h1>
 <h2>Instance Methods</h2>
 <p class="toc_element">
-  <code><a href="#list">list(packageName, editId)</a></code></p>
-<p class="firstline">A description of how to use this function</p>
+  <code><a href="#list">list(packageName, editId, x__xgafv=None)</a></code></p>
+<p class="firstline">Lists all current Android App Bundles of the app and edit.</p>
 <p class="toc_element">
-  <code><a href="#upload">upload(packageName, editId, ackBundleInstallationWarning=None, media_body=None, media_mime_type=None)</a></code></p>
-<p class="firstline">Uploads a new Android App Bundle to this edit. If you are using the Google API client libraries, please increase the timeout of the http request before calling this endpoint (a timeout of 2 minutes is recommended). See: https://developers.google.com/api-client-library/java/google-api-java-client/errors for an example in java.</p>
+  <code><a href="#upload">upload(packageName, editId, ackBundleInstallationWarning=None, x__xgafv=None, media_body=None, media_mime_type=None)</a></code></p>
+<p class="firstline">Uploads a new Android App Bundle to this edit.</p>
 <h3>Method Details</h3>
 <div class="method">
-    <code class="details" id="list">list(packageName, editId)</code>
-  <pre>A description of how to use this function
+    <code class="details" id="list">list(packageName, editId, x__xgafv=None)</code>
+  <pre>Lists all current Android App Bundles of the app and edit.
 
 Args:
-  packageName: string, Unique identifier for the Android app that is being updated; for example, &quot;com.spiffygame&quot;. (required)
-  editId: string, Unique identifier for this edit. (required)
+  packageName: string, Package name of the app. (required)
+  editId: string, Identifier of the edit. (required)
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
 
 Returns:
   An object of the form:
 
-    {
-    &quot;bundles&quot;: [
-      {
-        &quot;sha1&quot;: &quot;A String&quot;, # A sha1 hash of the upload payload, encoded as a hex string and matching the output of the sha1sum command.
-        &quot;sha256&quot;: &quot;A String&quot;, # A sha256 hash of the upload payload, encoded as a hex string and matching the output of the sha256sum command.
-        &quot;versionCode&quot;: 42, # The version code of the Android App Bundle. As specified in the Android App Bundle&#x27;s base module APK manifest file.
+    { # Response listing all bundles.
+    &quot;kind&quot;: &quot;A String&quot;, # The kind of this response (&quot;androidpublisher#bundlesListResponse&quot;).
+    &quot;bundles&quot;: [ # All bundles.
+      { # Information about a bundle. The resource for BundlesService.
+        &quot;sha256&quot;: &quot;A String&quot;, # A sha256 hash of the upload payload, encoded as a hex string and matching
+            # the output of the sha256sum command.
+        &quot;sha1&quot;: &quot;A String&quot;, # A sha1 hash of the upload payload, encoded as a hex string and matching
+            # the output of the sha1sum command.
+        &quot;versionCode&quot;: 42, # The version code of the Android App Bundle, as specified in the Android App
+            # Bundle&#x27;s base module APK manifest file.
       },
     ],
-    &quot;kind&quot;: &quot;androidpublisher#bundlesListResponse&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;androidpublisher#bundlesListResponse&quot;.
   }</pre>
 </div>
 
 <div class="method">
-    <code class="details" id="upload">upload(packageName, editId, ackBundleInstallationWarning=None, media_body=None, media_mime_type=None)</code>
-  <pre>Uploads a new Android App Bundle to this edit. If you are using the Google API client libraries, please increase the timeout of the http request before calling this endpoint (a timeout of 2 minutes is recommended). See: https://developers.google.com/api-client-library/java/google-api-java-client/errors for an example in java.
+    <code class="details" id="upload">upload(packageName, editId, ackBundleInstallationWarning=None, x__xgafv=None, media_body=None, media_mime_type=None)</code>
+  <pre>Uploads a new Android App Bundle to this edit.
+If you are using the Google API client libraries, please increase the
+timeout of the http request before calling this endpoint
+(a timeout of 2 minutes is recommended).
+See [Timeouts and
+Errors](https://developers.google.com/api-client-library/java/google-api-java-client/errors)
+for an example in java.
 
 Args:
-  packageName: string, Unique identifier for the Android app that is being updated; for example, &quot;com.spiffygame&quot;. (required)
-  editId: string, Unique identifier for this edit. (required)
-  ackBundleInstallationWarning: boolean, Must be set to true if the bundle installation may trigger a warning on user devices (for example, if installation size may be over a threshold, typically 100 MB).
+  packageName: string, Package name of the app. (required)
+  editId: string, Identifier of the edit. (required)
+  ackBundleInstallationWarning: boolean, Must be set to true if the bundle installation may trigger a warning on
+user devices (for example, if installation size may be over a threshold,
+typically 100 MB).
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
   media_body: string, The filename of the media request body, or an instance of a MediaUpload object.
   media_mime_type: string, The MIME type of the media request body, or an instance of a MediaUpload object.
 
 Returns:
   An object of the form:
 
-    {
-    &quot;sha1&quot;: &quot;A String&quot;, # A sha1 hash of the upload payload, encoded as a hex string and matching the output of the sha1sum command.
-    &quot;sha256&quot;: &quot;A String&quot;, # A sha256 hash of the upload payload, encoded as a hex string and matching the output of the sha256sum command.
-    &quot;versionCode&quot;: 42, # The version code of the Android App Bundle. As specified in the Android App Bundle&#x27;s base module APK manifest file.
+    { # Information about a bundle. The resource for BundlesService.
+    &quot;sha256&quot;: &quot;A String&quot;, # A sha256 hash of the upload payload, encoded as a hex string and matching
+        # the output of the sha256sum command.
+    &quot;sha1&quot;: &quot;A String&quot;, # A sha1 hash of the upload payload, encoded as a hex string and matching
+        # the output of the sha1sum command.
+    &quot;versionCode&quot;: 42, # The version code of the Android App Bundle, as specified in the Android App
+        # Bundle&#x27;s base module APK manifest file.
   }</pre>
 </div>