Regen all docs. (#700)

* Stop recursing if discovery == {}

* Generate docs with 'make docs'.
diff --git a/docs/dyn/fusiontables_v2.table.html b/docs/dyn/fusiontables_v2.table.html
index 0f1c00e..5133a07 100644
--- a/docs/dyn/fusiontables_v2.table.html
+++ b/docs/dyn/fusiontables_v2.table.html
@@ -102,6 +102,9 @@
   <code><a href="#patch">patch(tableId, body, replaceViewDefinition=None)</a></code></p>
 <p class="firstline">Updates an existing table. Unless explicitly requested, only the name, description, and attribution will be updated. This method supports patch semantics.</p>
 <p class="toc_element">
+  <code><a href="#refetchSheet">refetchSheet(tableId)</a></code></p>
+<p class="firstline">Replaces rows of the table with the rows of the spreadsheet that is first imported from. Current rows remain visible until all replacement rows are ready.</p>
+<p class="toc_element">
   <code><a href="#replaceRows">replaceRows(tableId, media_body=None, startLine=None, isStrict=None, encoding=None, media_mime_type=None, delimiter=None, endLine=None)</a></code></p>
 <p class="firstline">Replaces rows of an existing table. Current rows remain visible until all replacement rows are ready.</p>
 <p class="toc_element">
@@ -567,6 +570,25 @@
 </div>
 
 <div class="method">
+    <code class="details" id="refetchSheet">refetchSheet(tableId)</code>
+  <pre>Replaces rows of the table with the rows of the spreadsheet that is first imported from. Current rows remain visible until all replacement rows are ready.
+
+Args:
+  tableId: string, Table whose rows will be replaced from the spreadsheet. (required)
+
+Returns:
+  An object of the form:
+
+    { # A background task on a table, initiated for time- or resource-consuming operations such as changing column types or deleting all rows.
+    "started": True or False, # false while the table is busy with some other task. true if this background task is currently running.
+    "progress": "A String", # Task percentage completion.
+    "kind": "fusiontables#task", # Type of the resource. This is always "fusiontables#task".
+    "type": "A String", # Type of background task.
+    "taskId": "A String", # Identifier for the task.
+  }</pre>
+</div>
+
+<div class="method">
     <code class="details" id="replaceRows">replaceRows(tableId, media_body=None, startLine=None, isStrict=None, encoding=None, media_mime_type=None, delimiter=None, endLine=None)</code>
   <pre>Replaces rows of an existing table. Current rows remain visible until all replacement rows are ready.