chore: regens API reference docs (#889)
diff --git a/docs/dyn/drive_v2.children.html b/docs/dyn/drive_v2.children.html
index 73d569a..d1c3ef2 100644
--- a/docs/dyn/drive_v2.children.html
+++ b/docs/dyn/drive_v2.children.html
@@ -75,13 +75,13 @@
<h1><a href="drive_v2.html">Drive API</a> . <a href="drive_v2.children.html">children</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#delete">delete(folderId, childId)</a></code></p>
+ <code><a href="#delete">delete(folderId, childId, enforceSingleParent=None)</a></code></p>
<p class="firstline">Removes a child from a folder.</p>
<p class="toc_element">
<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, supportsTeamDrives=None, supportsAllDrives=None)</a></code></p>
+ <code><a href="#insert">insert(folderId, body=None, enforceSingleParent=None, supportsTeamDrives=None, supportsAllDrives=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>
@@ -91,12 +91,13 @@
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="delete">delete(folderId, childId)</code>
+ <code class="details" id="delete">delete(folderId, childId, enforceSingleParent=None)</code>
<pre>Removes a child from a folder.
Args:
folderId: string, The ID of the folder. (required)
childId: string, The ID of the child. (required)
+ enforceSingleParent: boolean, Set to true to opt in to API behavior that aims for all items to have exactly one parent. This parameter only takes effect if the item is not in a shared drive. If the item's last parent is removed, the item is placed under its owner's root.
</pre>
</div>
@@ -120,12 +121,12 @@
</div>
<div class="method">
- <code class="details" id="insert">insert(folderId, body, supportsTeamDrives=None, supportsAllDrives=None)</code>
+ <code class="details" id="insert">insert(folderId, body=None, enforceSingleParent=None, supportsTeamDrives=None, supportsAllDrives=None)</code>
<pre>Inserts a file into a folder.
Args:
folderId: string, The ID of the folder. (required)
- body: object, The request body. (required)
+ body: object, The request body.
The object takes the form of:
{ # A reference to a folder's child.
@@ -135,6 +136,7 @@
"selfLink": "A String", # A link back to this reference.
}
+ enforceSingleParent: boolean, Set to true to opt in to API behavior that aims for all items to have exactly one parent. This parameter only takes effect if the item is not in a shared drive. If the child's owner makes the request, the child is removed from all current folders and placed in the requested folder. Any other requests that increase the number of the child's parents fail, except when the canAddMyDriveParent file capability is true and a single parent is being added.
supportsTeamDrives: boolean, Deprecated use supportsAllDrives instead.
supportsAllDrives: boolean, Deprecated - Whether the requesting application supports both My Drives and shared drives. This parameter will only be effective until June 1, 2020. Afterwards all applications are assumed to support shared drives.