Regen docs (#364)
diff --git a/docs/dyn/drive_v2.children.html b/docs/dyn/drive_v2.children.html
index 03529ab..59d9772 100644
--- a/docs/dyn/drive_v2.children.html
+++ b/docs/dyn/drive_v2.children.html
@@ -81,7 +81,7 @@
<code><a href="#get">get(folderId, childId)</a></code></p>
<p class="firstline">Gets a specific child reference.</p>
<p class="toc_element">
- <code><a href="#insert">insert(folderId, body)</a></code></p>
+ <code><a href="#insert">insert(folderId, body, supportsTeamDrives=None)</a></code></p>
<p class="firstline">Inserts a file into a folder.</p>
<p class="toc_element">
<code><a href="#list">list(folderId, orderBy=None, q=None, pageToken=None, maxResults=None)</a></code></p>
@@ -120,7 +120,7 @@
</div>
<div class="method">
- <code class="details" id="insert">insert(folderId, body)</code>
+ <code class="details" id="insert">insert(folderId, body, supportsTeamDrives=None)</code>
<pre>Inserts a file into a folder.
Args:
@@ -135,6 +135,7 @@
"selfLink": "A String", # A link back to this reference.
}
+ supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
Returns:
An object of the form:
@@ -162,9 +163,9 @@
An object of the form:
{ # A list of children of a file.
- "nextPageToken": "A String", # The page token for the next page of children.
+ "nextPageToken": "A String", # The page token for the next page of children. This will be absent if the end of the children 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#childList", # This is always drive#childList.
- "items": [ # The actual list of children.
+ "items": [ # The list of children. If nextPageToken is populated, then this list may be incomplete and an additional page of results should be fetched.
{ # A reference to a folder's child.
"kind": "drive#childReference", # This is always drive#childReference.
"childLink": "A String", # A link to the child.