Regen docs (#364)

diff --git a/docs/dyn/drive_v3.changes.html b/docs/dyn/drive_v3.changes.html
index 0dcb58f..e34cffe 100644
--- a/docs/dyn/drive_v3.changes.html
+++ b/docs/dyn/drive_v3.changes.html
@@ -75,23 +75,25 @@
 <h1><a href="drive_v3.html">Drive API</a> . <a href="drive_v3.changes.html">changes</a></h1>
 <h2>Instance Methods</h2>
 <p class="toc_element">
-  <code><a href="#getStartPageToken">getStartPageToken()</a></code></p>
+  <code><a href="#getStartPageToken">getStartPageToken(supportsTeamDrives=None, teamDriveId=None)</a></code></p>
 <p class="firstline">Gets the starting pageToken for listing future changes.</p>
 <p class="toc_element">
-  <code><a href="#list">list(pageToken, restrictToMyDrive=None, spaces=None, pageSize=None, includeRemoved=None)</a></code></p>
-<p class="firstline">Lists changes for a user.</p>
+  <code><a href="#list">list(pageToken, pageSize=None, includeTeamDriveItems=None, supportsTeamDrives=None, restrictToMyDrive=None, spaces=None, teamDriveId=None, includeCorpusRemovals=None, includeRemoved=None)</a></code></p>
+<p class="firstline">Lists the changes for a user or Team Drive.</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(pageToken, body, pageSize=None, restrictToMyDrive=None, spaces=None, includeRemoved=None)</a></code></p>
+  <code><a href="#watch">watch(pageToken, body, pageSize=None, includeTeamDriveItems=None, includeRemoved=None, supportsTeamDrives=None, restrictToMyDrive=None, spaces=None, includeCorpusRemovals=None, teamDriveId=None)</a></code></p>
 <p class="firstline">Subscribes to changes for a user.</p>
 <h3>Method Details</h3>
 <div class="method">
-    <code class="details" id="getStartPageToken">getStartPageToken()</code>
+    <code class="details" id="getStartPageToken">getStartPageToken(supportsTeamDrives=None, teamDriveId=None)</code>
   <pre>Gets the starting pageToken for listing future changes.
 
 Args:
+  supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
+  teamDriveId: string, The ID of the Team Drive for which the starting pageToken for listing future changes from that Team Drive will be returned.
 
 Returns:
   An object of the form:
@@ -103,39 +105,61 @@
 </div>
 
 <div class="method">
-    <code class="details" id="list">list(pageToken, restrictToMyDrive=None, spaces=None, pageSize=None, includeRemoved=None)</code>
-  <pre>Lists changes for a user.
+    <code class="details" id="list">list(pageToken, pageSize=None, includeTeamDriveItems=None, supportsTeamDrives=None, restrictToMyDrive=None, spaces=None, teamDriveId=None, includeCorpusRemovals=None, includeRemoved=None)</code>
+  <pre>Lists the changes for a user or Team Drive.
 
 Args:
   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 or to the response from the getStartPageToken method. (required)
+  pageSize: integer, The maximum number of changes to return per page.
+  includeTeamDriveItems: boolean, Whether Team Drive files or changes should be included in results.
+  supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
   restrictToMyDrive: boolean, Whether to restrict the results to changes inside the My Drive hierarchy. This omits changes to files such as those in the Application Data folder or shared files which have not been added to My Drive.
   spaces: string, A comma-separated list of spaces to query within the user corpus. Supported values are 'drive', 'appDataFolder' and 'photos'.
-  pageSize: integer, The maximum number of changes to return per page.
-  includeRemoved: boolean, Whether to include changes indicating that items have left the view of the changes list, for example by deletion or lost access.
+  teamDriveId: string, The Team Drive from which changes will be returned. If specified the change IDs will be reflective of the Team Drive; use the combined Team Drive ID and change ID as an identifier.
+  includeCorpusRemovals: boolean, Whether changes should include the file resource if the file is still accessible by the user at the time of the request, even when a file was removed from the list of changes and there will be no further change entries for this file.
+  includeRemoved: boolean, Whether to include changes indicating that items have been removed from the list of changes, for example by deletion or loss of access.
 
 Returns:
   An object of the form:
 
     { # A list of changes for a user.
-    "nextPageToken": "A String", # The page token for the next page of changes. This will be absent if the end of the current changes list has been reached.
+    "nextPageToken": "A String", # The page token for the next page of changes. This will be absent if the end of the changes 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#changeList", # Identifies what kind of resource this is. Value: the fixed string "drive#changeList".
-    "changes": [ # The page of changes.
-      { # A change to a file.
+    "changes": [ # The list of changes. If nextPageToken is populated, then this list may be incomplete and an additional page of results should be fetched.
+      { # A change to a file or Team Drive.
+        "teamDrive": { # Representation of a Team Drive. # The updated state of the Team Drive. Present if the type is teamDrive, the user is still a member of the Team Drive, and the Team Drive has not been removed.
+          "kind": "drive#teamDrive", # Identifies what kind of resource this is. Value: the fixed string "drive#teamDrive".
+          "id": "A String", # The ID of this Team Drive which is also the ID of the top level folder for this Team Drive.
+          "capabilities": { # Capabilities the current user has on this Team Drive.
+            "canReadRevisions": True or False, # Whether the current user has read access to the Revisions resource of files in this Team Drive.
+            "canCopy": True or False, # Whether files in this Team Drive can be copied by the current user.
+            "canRename": True or False, # Whether files or folders in this Team Drive can be renamed by the current user.
+            "canListChildren": True or False, # Whether the current user can list the children of folders in this Team Drive.
+            "canShare": True or False, # Whether the current user can share files or folders in this Team Drive.
+            "canManageMembers": True or False, # Whether the current user can add members to this Team Drive or remove them or change their role.
+            "canDownload": True or False, # Whether files in this Team Drive can be downloaded by the current user.
+            "canComment": True or False, # Whether the current user can comment on files in this Team Drive.
+            "canDeleteTeamDrive": True or False, # Whether this Team Drive can be deleted by the current user.
+            "canRenameTeamDrive": True or False, # Whether this Team Drive can be renamed by the current user.
+            "canRemoveChildren": True or False, # Whether the current user can remove children from folders in this Team Drive.
+            "canAddChildren": True or False, # Whether the current user can add children to folders in this Team Drive.
+            "canEdit": True or False, # Whether files in this Team Drive can be edited by the current user.
+          },
+          "name": "A String", # The name of this Team Drive.
+        },
         "kind": "drive#change", # Identifies what kind of resource this is. Value: the fixed string "drive#change".
-        "removed": True or False, # Whether the file has been removed from the view of the changes list, for example by deletion or lost access.
-        "time": "A String", # The time of this change (RFC 3339 date-time).
-        "file": { # The metadata for a file. # The updated state of the file. Present if the file has not been removed.
+        "file": { # The metadata for a file. # The updated state of the file. Present if the type is file and the file has not been removed from this list of changes.
           "hasThumbnail": True or False, # Whether this file has a thumbnail.
           "mimeType": "A String", # The MIME type of the file.
               # Drive will attempt to automatically detect an appropriate value from uploaded content if no value is provided. The value cannot be changed unless a new revision is uploaded.
               # If a file is created with a Google Doc MIME type, the uploaded content will be imported if possible. The supported import formats are published in the About resource.
           "modifiedByMeTime": "A String", # The last time the file was modified by the user (RFC 3339 date-time).
           "thumbnailLink": "A String", # A short-lived link to the file's thumbnail, if available. Typically lasts on the order of hours. Only populated when the requesting app can access the file's content.
-          "thumbnailVersion": "A String", # The thumbnail version for use in client-contructable thumbnail URLs or thumbnail cache invalidation.
+          "thumbnailVersion": "A String", # The thumbnail version for use in thumbnail cache invalidation.
           "explicitlyTrashed": True or False, # Whether the file has been explicitly trashed, as opposed to recursively trashed from a parent folder.
           "isAppAuthorized": True or False, # Whether the file was created or opened by the requesting app.
-          "writersCanShare": True or False, # Whether users with only writer permission can modify the file's permissions.
-          "ownedByMe": True or False, # Whether the user owns the file.
+          "writersCanShare": True or False, # Whether users with only writer permission can modify the file's permissions. Not populated for Team Drive files.
+          "ownedByMe": True or False, # Whether the user owns the file. Not populated for Team Drive files.
           "viewedByMeTime": "A String", # The last time the file was viewed by the user (RFC 3339 date-time).
           "id": "A String", # The ID of the file.
           "sharingUser": { # Information about a Drive user. # The user who shared the file with the requesting user, if applicable.
@@ -166,13 +190,25 @@
               # Entries with null values are cleared in update and copy requests.
             "a_key": "A String",
           },
-          "capabilities": { # Capabilities the current user has on the file.
-            "canReadRevisions": True or False, # Whether the current user has read access to the Revisions resource of the file.
-            "canCopy": True or False, # Whether the user can copy the file.
+          "capabilities": { # Capabilities the current user has on the file. Each capability corresponds to a fine-grained action that a user may take.
+            "canReadRevisions": True or False, # Whether the user has read access to the Revisions resource of the file. For a Team Drive item, whether revisions of non-folder descendants of this item, or this item itself if it is not a folder, can be read.
+            "canTrash": True or False, # Whether the file can be trashed by the user.
+            "canCopy": True or False, # Whether the user can copy the file. For a Team Drive item, whether non-folder descendants of this item, or this item itself if it is not a folder, can be copied.
             "canShare": True or False, # Whether the user can modify the file's permissions and sharing settings.
-            "canEdit": True or False, # Whether the user can edit the file's content.
+            "canDelete": True or False, # Whether the file can be deleted by the user.
+            "canMoveTeamDriveItem": True or False, # Whether the user can move this Team Drive item by changing its parent. Note that a request to change the parent for this item may still fail depending on the new parent that is being added. Only populated for Team Drive files.
+            "canRename": True or False, # Whether the file can be renamed by the user.
+            "canListChildren": True or False, # Whether the user can list the children of this folder. This is always false when the item is not a folder.
+            "canMoveItemIntoTeamDrive": True or False, # Whether the current user can move this item into a Team Drive. If the item is in a Team Drive, this field is equivalent to canMoveTeamDriveItem.
+            "canDownload": True or False, # Whether the file can be downloaded by the user.
             "canComment": True or False, # Whether the user can comment on the file.
+            "canRemoveChildren": True or False, # Whether the user can remove children from this folder. This is always false when the item is not a folder.
+            "canReadTeamDrive": True or False, # Whether the user has read access to the Team Drive to which this file belongs. Only populated for Team Drive files.
+            "canAddChildren": True or False, # Whether the user can add children to this folder. This is always false when the item is not a folder.
+            "canEdit": True or False, # Whether the user can edit the file's content.
+            "canUntrash": True or False, # Whether the file can be restored from the trash by the current user.
           },
+          "trashedTime": "A String", # The time that the item was trashed (RFC 3339 date-time). Only populated for Team Drive files.
           "webViewLink": "A String", # A link for opening the file in a relevant Google editor or viewer in a browser.
           "version": "A String", # A monotonically increasing version number for the file. This reflects every change made to the file on the server, even those not visible to the user.
           "parents": [ # The IDs of the parent folders which contain the file.
@@ -180,21 +216,40 @@
             "A String",
           ],
           "sharedWithMeTime": "A String", # The time at which the file was shared with the user, if applicable (RFC 3339 date-time).
-          "shared": True or False, # Whether the file has been shared.
-          "permissions": [ # The full list of permissions for the file. This is only available if the requesting user can share the file.
+          "shared": True or False, # Whether the file has been shared. Not populated for Team Drive files.
+          "permissions": [ # The full list of permissions for the file. This is only available if the requesting user can share the file. Not populated for Team Drive files.
             { # 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
@@ -212,7 +267,7 @@
               # Note that setting modifiedTime will also update modifiedByMeTime for the user.
           "viewedByMe": True or False, # Whether the file has been viewed by this user.
           "modifiedByMe": True or False, # Whether the file has been modified by this user.
-          "owners": [ # The owners of the file. Currently, only certain legacy files may have more than one owner.
+          "owners": [ # The owners of the file. Currently, only certain legacy files may have more than one owner. Not populated for Team Drive files.
             { # Information about a Drive user.
               "me": True or False, # Whether this user is the requesting user.
               "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user".
@@ -224,6 +279,7 @@
           ],
           "createdTime": "A String", # The time at which the file was created (RFC 3339 date-time).
           "quotaBytesUsed": "A String", # The number of storage quota bytes used by the file. This includes the head revision as well as previous revisions with keepForever enabled.
+          "teamDriveId": "A String", # ID of the Team Drive the file resides in.
           "properties": { # A collection of arbitrary key-value pairs which are visible to all apps.
               # Entries with null values are cleared in update and copy requests.
             "a_key": "A String",
@@ -260,6 +316,14 @@
           "kind": "drive#file", # Identifies what kind of resource this is. Value: the fixed string "drive#file".
           "name": "A String", # The name of the file. This is not necessarily unique within a folder.
           "webContentLink": "A String", # A link for downloading the content of the file in a browser. This is only available for files with binary content in Drive.
+          "trashingUser": { # Information about a Drive user. # If the file has been explicitly trashed, the user who trashed it. Only populated for Team Drive files.
+            "me": True or False, # Whether this user is the requesting user.
+            "kind": "drive#user", # Identifies what kind of resource this is. Value: the fixed string "drive#user".
+            "displayName": "A String", # A plain text displayable name for this user.
+            "permissionId": "A String", # The user's ID as visible in Permission resources.
+            "emailAddress": "A String", # The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester.
+            "photoLink": "A String", # A link to the user's profile photo, if available.
+          },
           "spaces": [ # The list of spaces which contain the file. The currently supported values are 'drive', 'appDataFolder' and 'photos'.
             "A String",
           ],
@@ -272,9 +336,14 @@
             },
           },
           "fileExtension": "A String", # The final component of fullFileExtension. This is only available for files with binary content in Drive.
+          "hasAugmentedPermissions": True or False, # Whether any users are granted file access directly on this file. This field is only populated for Team Drive files.
           "starred": True or False, # Whether the user has starred the file.
           "headRevisionId": "A String", # The ID of the file's head revision. This is currently only available for files with binary content in Drive.
         },
+        "time": "A String", # The time of this change (RFC 3339 date-time).
+        "teamDriveId": "A String", # The ID of the Team Drive associated with this change.
+        "removed": True or False, # Whether the file or Team Drive has been removed from this list of changes, for example by deletion or loss of access.
+        "type": "A String", # The type of the change. Possible values are file and teamDrive.
         "fileId": "A String", # The ID of the file which has changed.
       },
     ],
@@ -297,7 +366,7 @@
 </div>
 
 <div class="method">
-    <code class="details" id="watch">watch(pageToken, body, pageSize=None, restrictToMyDrive=None, spaces=None, includeRemoved=None)</code>
+    <code class="details" id="watch">watch(pageToken, body, pageSize=None, includeTeamDriveItems=None, includeRemoved=None, supportsTeamDrives=None, restrictToMyDrive=None, spaces=None, includeCorpusRemovals=None, teamDriveId=None)</code>
   <pre>Subscribes to changes for a user.
 
 Args:
@@ -321,9 +390,13 @@
   }
 
   pageSize: integer, The maximum number of changes to return per page.
+  includeTeamDriveItems: boolean, Whether Team Drive files or changes should be included in results.
+  includeRemoved: boolean, Whether to include changes indicating that items have been removed from the list of changes, for example by deletion or loss of access.
+  supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
   restrictToMyDrive: boolean, Whether to restrict the results to changes inside the My Drive hierarchy. This omits changes to files such as those in the Application Data folder or shared files which have not been added to My Drive.
   spaces: string, A comma-separated list of spaces to query within the user corpus. Supported values are 'drive', 'appDataFolder' and 'photos'.
-  includeRemoved: boolean, Whether to include changes indicating that items have left the view of the changes list, for example by deletion or lost access.
+  includeCorpusRemovals: boolean, Whether changes should include the file resource if the file is still accessible by the user at the time of the request, even when a file was removed from the list of changes and there will be no further change entries for this file.
+  teamDriveId: string, The Team Drive from which changes will be returned. If specified the change IDs will be reflective of the Team Drive; use the combined Team Drive ID and change ID as an identifier.
 
 Returns:
   An object of the form: