Update docs for 1.3.2 release.
diff --git a/docs/dyn/androidpublisher_v2.edits.apks.html b/docs/dyn/androidpublisher_v2.edits.apks.html
index 54bd683..37755f7 100644
--- a/docs/dyn/androidpublisher_v2.edits.apks.html
+++ b/docs/dyn/androidpublisher_v2.edits.apks.html
@@ -75,6 +75,9 @@
 <h1><a href="androidpublisher_v2.html">Google Play Android Developer API</a> . <a href="androidpublisher_v2.edits.html">edits</a> . <a href="androidpublisher_v2.edits.apks.html">apks</a></h1>
 <h2>Instance Methods</h2>
 <p class="toc_element">
+  <code><a href="#addexternallyhosted">addexternallyhosted(packageName, editId, body)</a></code></p>
+<p class="firstline">Creates a new APK without uploading the APK itself to Google Play, instead hosting the APK at a specified URL. This function is only available to enterprises using Google Play for work whose application is configured to restrict distribution to the enterprise domain.</p>
+<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>
 <p class="toc_element">
@@ -82,6 +85,83 @@
 <p class="firstline">A description of how to use this function</p>
 <h3>Method Details</h3>
 <div class="method">
+    <code class="details" id="addexternallyhosted">addexternallyhosted(packageName, editId, body)</code>
+  <pre>Creates a new APK without uploading the APK itself to Google Play, instead hosting the APK at a specified URL. This function is only available to enterprises using Google Play for work whose application is configured to restrict distribution to the enterprise domain.
+
+Args:
+  packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
+  editId: string, Unique identifier for this edit. (required)
+  body: object, The request body. (required)
+    The object takes the form of:
+
+{
+    "externallyHostedApk": { # Defines an APK available for this application that is hosted externally and not uploaded to Google Play. This function is only available to enterprises who are using Android for Work, and whos application is restricted to the enterprise private channel # The definition of the externally-hosted APK and where it is located.
+      "iconBase64": "A String", # The icon image from the APK, as a base64 encoded byte array.
+      "certificateBase64s": [ # A certificate (or array of certificates if a certificate-chain is used) used to signed this APK, represented as a base64 encoded byte array.
+        "A String",
+      ],
+      "externallyHostedUrl": "A String", # The URL at which the APK is hosted. This must be an https URL.
+      "maximumSdk": 42, # The maximum SDK supported by this APK (optional).
+      "fileSha256Base64": "A String", # The SHA256 checksum of this APK, represented as a base64 encoded byte array.
+      "usesPermissions": [ # The permissions requested by this APK.
+        { # A permission used by this APK.
+          "maxSdkVersion": 42, # Optionally, the maximum SDK version for which the permission is required.
+          "name": "A String", # The name of the permission requested.
+        },
+      ],
+      "fileSha1Base64": "A String", # The SHA1 checksum of this APK, represented as a base64 encoded byte array.
+      "usesFeatures": [ # The features required by this APK (optional).
+        "A String",
+      ],
+      "fileSize": "A String", # The file size in bytes of this APK.
+      "versionName": "A String", # The version name of this APK.
+      "versionCode": 42, # The version code of this APK.
+      "packageName": "A String", # The package name.
+      "minimumSdk": 42, # The minimum SDK targeted by this APK.
+      "applicationLabel": "A String", # The application label.
+      "nativeCodes": [ # The native code environments supported by this APK (optional).
+        "A String",
+      ],
+    },
+  }
+
+
+Returns:
+  An object of the form:
+
+    {
+    "externallyHostedApk": { # Defines an APK available for this application that is hosted externally and not uploaded to Google Play. This function is only available to enterprises who are using Android for Work, and whos application is restricted to the enterprise private channel # The definition of the externally-hosted APK and where it is located.
+      "iconBase64": "A String", # The icon image from the APK, as a base64 encoded byte array.
+      "certificateBase64s": [ # A certificate (or array of certificates if a certificate-chain is used) used to signed this APK, represented as a base64 encoded byte array.
+        "A String",
+      ],
+      "externallyHostedUrl": "A String", # The URL at which the APK is hosted. This must be an https URL.
+      "maximumSdk": 42, # The maximum SDK supported by this APK (optional).
+      "fileSha256Base64": "A String", # The SHA256 checksum of this APK, represented as a base64 encoded byte array.
+      "usesPermissions": [ # The permissions requested by this APK.
+        { # A permission used by this APK.
+          "maxSdkVersion": 42, # Optionally, the maximum SDK version for which the permission is required.
+          "name": "A String", # The name of the permission requested.
+        },
+      ],
+      "fileSha1Base64": "A String", # The SHA1 checksum of this APK, represented as a base64 encoded byte array.
+      "usesFeatures": [ # The features required by this APK (optional).
+        "A String",
+      ],
+      "fileSize": "A String", # The file size in bytes of this APK.
+      "versionName": "A String", # The version name of this APK.
+      "versionCode": 42, # The version code of this APK.
+      "packageName": "A String", # The package name.
+      "minimumSdk": 42, # The minimum SDK targeted by this APK.
+      "applicationLabel": "A String", # The application label.
+      "nativeCodes": [ # The native code environments supported by this APK (optional).
+        "A String",
+      ],
+    },
+  }</pre>
+</div>
+
+<div class="method">
     <code class="details" id="list">list(packageName, editId)</code>
   <pre>A description of how to use this function