Regen docs (#364)

diff --git a/docs/dyn/drive_v3.permissions.html b/docs/dyn/drive_v3.permissions.html
index d7ca2e1..33341f9 100644
--- a/docs/dyn/drive_v3.permissions.html
+++ b/docs/dyn/drive_v3.permissions.html
@@ -75,43 +75,65 @@
 <h1><a href="drive_v3.html">Drive API</a> . <a href="drive_v3.permissions.html">permissions</a></h1>
 <h2>Instance Methods</h2>
 <p class="toc_element">
-  <code><a href="#create">create(fileId, body, sendNotificationEmail=None, transferOwnership=None, emailMessage=None)</a></code></p>
-<p class="firstline">Creates a permission for a file.</p>
+  <code><a href="#create">create(fileId, body, sendNotificationEmail=None, supportsTeamDrives=None, transferOwnership=None, emailMessage=None)</a></code></p>
+<p class="firstline">Creates a permission for a file or Team Drive.</p>
 <p class="toc_element">
-  <code><a href="#delete">delete(fileId, permissionId)</a></code></p>
+  <code><a href="#delete">delete(fileId, permissionId, supportsTeamDrives=None)</a></code></p>
 <p class="firstline">Deletes a permission.</p>
 <p class="toc_element">
-  <code><a href="#get">get(fileId, permissionId)</a></code></p>
+  <code><a href="#get">get(fileId, permissionId, supportsTeamDrives=None)</a></code></p>
 <p class="firstline">Gets a permission by ID.</p>
 <p class="toc_element">
-  <code><a href="#list">list(fileId)</a></code></p>
-<p class="firstline">Lists a file's permissions.</p>
+  <code><a href="#list">list(fileId, pageToken=None, supportsTeamDrives=None, pageSize=None)</a></code></p>
+<p class="firstline">Lists a file's or Team Drive's permissions.</p>
 <p class="toc_element">
-  <code><a href="#update">update(fileId, permissionId, body, removeExpiration=None, transferOwnership=None)</a></code></p>
+  <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="#update">update(fileId, permissionId, body, removeExpiration=None, supportsTeamDrives=None, transferOwnership=None)</a></code></p>
 <p class="firstline">Updates a permission with patch semantics.</p>
 <h3>Method Details</h3>
 <div class="method">
-    <code class="details" id="create">create(fileId, body, sendNotificationEmail=None, transferOwnership=None, emailMessage=None)</code>
-  <pre>Creates a permission for a file.
+    <code class="details" id="create">create(fileId, body, sendNotificationEmail=None, supportsTeamDrives=None, transferOwnership=None, emailMessage=None)</code>
+  <pre>Creates a permission for a file or Team Drive.
 
 Args:
-  fileId: string, The ID of the file. (required)
+  fileId: string, The ID of the file or Team Drive. (required)
   body: object, The request body. (required)
     The object takes the form of:
 
 { # A permission for a file. A permission grants a user, group, domain or the world access to a file or a folder hierarchy.
   "domain": "A String", # The domain to which this permission refers.
   "displayName": "A String", # A displayable name for users, groups or domains.
+  "teamDrivePermissionDetails": [ # Details of whether the Permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+    {
+      "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
+      "role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
+          # - organizer
+          # - writer
+          # - commenter
+          # - reader
+      "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
+          # - file
+          # -
+          # - member
+      "inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
+    },
+  ],
   "allowFileDiscovery": True or False, # Whether the permission allows the file to be discovered through search. This is only applicable for permissions of type domain or anyone.
   "kind": "drive#permission", # Identifies what kind of resource this is. Value: the fixed string "drive#permission".
   "emailAddress": "A String", # The email address of the user or group to which this permission refers.
   "photoLink": "A String", # A link to the user's profile photo, if available.
-  "role": "A String", # The role granted by this permission. Valid values are:
+  "role": "A String", # The role granted by this permission. While new values may be supported in the future, the following are currently allowed:
+      # - organizer
       # - owner
       # - writer
       # - commenter
       # - reader
-  "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time).
+  "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration times have the following restrictions:
+      # - They can only be set on user and group permissions
+      # - The time must be in the future
+      # - The time cannot be more than a year in the future
   "type": "A String", # The type of the grantee. Valid values are:
       # - user
       # - group
@@ -121,6 +143,7 @@
 }
 
   sendNotificationEmail: boolean, Whether to send a notification email when sharing to users or groups. This defaults to true for users and groups, and is not allowed for other requests. It must not be disabled for ownership transfers.
+  supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
   transferOwnership: boolean, Whether to transfer ownership to the specified user and downgrade the current owner to a writer. This parameter is required as an acknowledgement of the side effect.
   emailMessage: string, A custom message to include in the notification email.
 
@@ -130,16 +153,35 @@
     { # A permission for a file. A permission grants a user, group, domain or the world access to a file or a folder hierarchy.
     "domain": "A String", # The domain to which this permission refers.
     "displayName": "A String", # A displayable name for users, groups or domains.
+    "teamDrivePermissionDetails": [ # Details of whether the Permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+      {
+        "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
+        "role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
+            # - organizer
+            # - writer
+            # - commenter
+            # - reader
+        "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
+            # - file
+            # -
+            # - member
+        "inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
+      },
+    ],
     "allowFileDiscovery": True or False, # Whether the permission allows the file to be discovered through search. This is only applicable for permissions of type domain or anyone.
     "kind": "drive#permission", # Identifies what kind of resource this is. Value: the fixed string "drive#permission".
     "emailAddress": "A String", # The email address of the user or group to which this permission refers.
     "photoLink": "A String", # A link to the user's profile photo, if available.
-    "role": "A String", # The role granted by this permission. Valid values are:
+    "role": "A String", # The role granted by this permission. While new values may be supported in the future, the following are currently allowed:
+        # - organizer
         # - owner
         # - writer
         # - commenter
         # - reader
-    "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time).
+    "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration times have the following restrictions:
+        # - They can only be set on user and group permissions
+        # - The time must be in the future
+        # - The time cannot be more than a year in the future
     "type": "A String", # The type of the grantee. Valid values are:
         # - user
         # - group
@@ -150,22 +192,24 @@
 </div>
 
 <div class="method">
-    <code class="details" id="delete">delete(fileId, permissionId)</code>
+    <code class="details" id="delete">delete(fileId, permissionId, supportsTeamDrives=None)</code>
   <pre>Deletes a permission.
 
 Args:
-  fileId: string, The ID of the file. (required)
+  fileId: string, The ID of the file or Team Drive. (required)
   permissionId: string, The ID of the permission. (required)
+  supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
 </pre>
 </div>
 
 <div class="method">
-    <code class="details" id="get">get(fileId, permissionId)</code>
+    <code class="details" id="get">get(fileId, permissionId, supportsTeamDrives=None)</code>
   <pre>Gets a permission by ID.
 
 Args:
   fileId: string, The ID of the file. (required)
   permissionId: string, The ID of the permission. (required)
+  supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
 
 Returns:
   An object of the form:
@@ -173,16 +217,35 @@
     { # A permission for a file. A permission grants a user, group, domain or the world access to a file or a folder hierarchy.
     "domain": "A String", # The domain to which this permission refers.
     "displayName": "A String", # A displayable name for users, groups or domains.
+    "teamDrivePermissionDetails": [ # Details of whether the Permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+      {
+        "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
+        "role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
+            # - organizer
+            # - writer
+            # - commenter
+            # - reader
+        "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
+            # - file
+            # -
+            # - member
+        "inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
+      },
+    ],
     "allowFileDiscovery": True or False, # Whether the permission allows the file to be discovered through search. This is only applicable for permissions of type domain or anyone.
     "kind": "drive#permission", # Identifies what kind of resource this is. Value: the fixed string "drive#permission".
     "emailAddress": "A String", # The email address of the user or group to which this permission refers.
     "photoLink": "A String", # A link to the user's profile photo, if available.
-    "role": "A String", # The role granted by this permission. Valid values are:
+    "role": "A String", # The role granted by this permission. While new values may be supported in the future, the following are currently allowed:
+        # - organizer
         # - owner
         # - writer
         # - commenter
         # - reader
-    "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time).
+    "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration times have the following restrictions:
+        # - They can only be set on user and group permissions
+        # - The time must be in the future
+        # - The time cannot be more than a year in the future
     "type": "A String", # The type of the grantee. Valid values are:
         # - user
         # - group
@@ -193,31 +256,54 @@
 </div>
 
 <div class="method">
-    <code class="details" id="list">list(fileId)</code>
-  <pre>Lists a file's permissions.
+    <code class="details" id="list">list(fileId, pageToken=None, supportsTeamDrives=None, pageSize=None)</code>
+  <pre>Lists a file's or Team Drive's permissions.
 
 Args:
-  fileId: string, The ID of the file. (required)
+  fileId: string, The ID of the file or Team Drive. (required)
+  pageToken: string, The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response.
+  supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
+  pageSize: integer, The maximum number of permissions to return per page. When not set for files in a Team Drive, at most 100 results will be returned. When not set for files that are not in a Team Drive, the entire list will be returned.
 
 Returns:
   An object of the form:
 
     { # A list of permissions for a file.
+    "nextPageToken": "A String", # The page token for the next page of permissions. This field will be absent if the end of the permissions list has been reached. If the token is rejected for any reason, it should be discarded, and pagination should be restarted from the first page of results.
     "kind": "drive#permissionList", # Identifies what kind of resource this is. Value: the fixed string "drive#permissionList".
-    "permissions": [ # The full list of permissions.
+    "permissions": [ # The list of permissions. If nextPageToken is populated, then this list may be incomplete and an additional page of results should be fetched.
       { # A permission for a file. A permission grants a user, group, domain or the world access to a file or a folder hierarchy.
         "domain": "A String", # The domain to which this permission refers.
         "displayName": "A String", # A displayable name for users, groups or domains.
+        "teamDrivePermissionDetails": [ # Details of whether the Permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+          {
+            "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
+            "role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
+                # - organizer
+                # - writer
+                # - commenter
+                # - reader
+            "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
+                # - file
+                # -
+                # - member
+            "inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
+          },
+        ],
         "allowFileDiscovery": True or False, # Whether the permission allows the file to be discovered through search. This is only applicable for permissions of type domain or anyone.
         "kind": "drive#permission", # Identifies what kind of resource this is. Value: the fixed string "drive#permission".
         "emailAddress": "A String", # The email address of the user or group to which this permission refers.
         "photoLink": "A String", # A link to the user's profile photo, if available.
-        "role": "A String", # The role granted by this permission. Valid values are:
+        "role": "A String", # The role granted by this permission. While new values may be supported in the future, the following are currently allowed:
+            # - organizer
             # - owner
             # - writer
             # - commenter
             # - reader
-        "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time).
+        "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration times have the following restrictions:
+            # - They can only be set on user and group permissions
+            # - The time must be in the future
+            # - The time cannot be more than a year in the future
         "type": "A String", # The type of the grantee. Valid values are:
             # - user
             # - group
@@ -230,11 +316,25 @@
 </div>
 
 <div class="method">
-    <code class="details" id="update">update(fileId, permissionId, body, removeExpiration=None, transferOwnership=None)</code>
+    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
+  <pre>Retrieves the next page of results.
+
+Args:
+  previous_request: The request for the previous page. (required)
+  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
+  page. Returns None if there are no more items in the collection.
+    </pre>
+</div>
+
+<div class="method">
+    <code class="details" id="update">update(fileId, permissionId, body, removeExpiration=None, supportsTeamDrives=None, transferOwnership=None)</code>
   <pre>Updates a permission with patch semantics.
 
 Args:
-  fileId: string, The ID of the file. (required)
+  fileId: string, The ID of the file or Team Drive. (required)
   permissionId: string, The ID of the permission. (required)
   body: object, The request body. (required)
     The object takes the form of:
@@ -242,16 +342,35 @@
 { # A permission for a file. A permission grants a user, group, domain or the world access to a file or a folder hierarchy.
   "domain": "A String", # The domain to which this permission refers.
   "displayName": "A String", # A displayable name for users, groups or domains.
+  "teamDrivePermissionDetails": [ # Details of whether the Permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+    {
+      "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
+      "role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
+          # - organizer
+          # - writer
+          # - commenter
+          # - reader
+      "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
+          # - file
+          # -
+          # - member
+      "inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
+    },
+  ],
   "allowFileDiscovery": True or False, # Whether the permission allows the file to be discovered through search. This is only applicable for permissions of type domain or anyone.
   "kind": "drive#permission", # Identifies what kind of resource this is. Value: the fixed string "drive#permission".
   "emailAddress": "A String", # The email address of the user or group to which this permission refers.
   "photoLink": "A String", # A link to the user's profile photo, if available.
-  "role": "A String", # The role granted by this permission. Valid values are:
+  "role": "A String", # The role granted by this permission. While new values may be supported in the future, the following are currently allowed:
+      # - organizer
       # - owner
       # - writer
       # - commenter
       # - reader
-  "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time).
+  "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration times have the following restrictions:
+      # - They can only be set on user and group permissions
+      # - The time must be in the future
+      # - The time cannot be more than a year in the future
   "type": "A String", # The type of the grantee. Valid values are:
       # - user
       # - group
@@ -261,6 +380,7 @@
 }
 
   removeExpiration: boolean, Whether to remove the expiration date.
+  supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
   transferOwnership: boolean, Whether to transfer ownership to the specified user and downgrade the current owner to a writer. This parameter is required as an acknowledgement of the side effect.
 
 Returns:
@@ -269,16 +389,35 @@
     { # A permission for a file. A permission grants a user, group, domain or the world access to a file or a folder hierarchy.
     "domain": "A String", # The domain to which this permission refers.
     "displayName": "A String", # A displayable name for users, groups or domains.
+    "teamDrivePermissionDetails": [ # Details of whether the Permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+      {
+        "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
+        "role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
+            # - organizer
+            # - writer
+            # - commenter
+            # - reader
+        "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
+            # - file
+            # -
+            # - member
+        "inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
+      },
+    ],
     "allowFileDiscovery": True or False, # Whether the permission allows the file to be discovered through search. This is only applicable for permissions of type domain or anyone.
     "kind": "drive#permission", # Identifies what kind of resource this is. Value: the fixed string "drive#permission".
     "emailAddress": "A String", # The email address of the user or group to which this permission refers.
     "photoLink": "A String", # A link to the user's profile photo, if available.
-    "role": "A String", # The role granted by this permission. Valid values are:
+    "role": "A String", # The role granted by this permission. While new values may be supported in the future, the following are currently allowed:
+        # - organizer
         # - owner
         # - writer
         # - commenter
         # - reader
-    "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time).
+    "expirationTime": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration times have the following restrictions:
+        # - They can only be set on user and group permissions
+        # - The time must be in the future
+        # - The time cannot be more than a year in the future
     "type": "A String", # The type of the grantee. Valid values are:
         # - user
         # - group