Refresh all docs (#298)

Change the discovery query to fetch all discovery docs, not just the
preferred ones.
diff --git a/docs/dyn/fusiontables_v1.task.html b/docs/dyn/fusiontables_v1.task.html
index 5cd417d..47efde0 100644
--- a/docs/dyn/fusiontables_v1.task.html
+++ b/docs/dyn/fusiontables_v1.task.html
@@ -108,11 +108,11 @@
 Returns:
   An object of the form:
 
-    { # Specifies the id, name and type of a task in a table.
-    "started": True or False, # False while the table is busy with some other task.
+    { # Specifies the identifier, name, and type of a task in a table.
+    "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", # An indication of task progress.
-    "kind": "fusiontables#task", # Type name: a template for an individual task.
-    "type": "A String",
+    "kind": "fusiontables#task", # Type of the resource. This is always "fusiontables#task".
+    "type": "A String", # Type of background task. One of  DELETE_ROWS Deletes one or more rows from the table. ADD_ROWS "Adds one or more rows to a table. Includes importing data into a new table and importing more rows into an existing table. ADD_COLUMN Adds a new column to the table. CHANGE_TYPE Changes the type of a column.
     "taskId": "A String", # Identifier for the task.
   }</pre>
 </div>
@@ -130,18 +130,18 @@
 Returns:
   An object of the form:
 
-    { # Represents a list of tasks in a table.
-    "nextPageToken": "A String", # Token used to access the next page of this result. No token is displayed if there are no more tokens left.
+    { # Represents a list of tasks for a table.
+    "nextPageToken": "A String", # Token used to access the next page of this result. No token is displayed if there are no more pages left.
     "items": [ # List of all requested tasks.
-      { # Specifies the id, name and type of a task in a table.
-        "started": True or False, # False while the table is busy with some other task.
+      { # Specifies the identifier, name, and type of a task in a table.
+        "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", # An indication of task progress.
-        "kind": "fusiontables#task", # Type name: a template for an individual task.
-        "type": "A String",
+        "kind": "fusiontables#task", # Type of the resource. This is always "fusiontables#task".
+        "type": "A String", # Type of background task. One of  DELETE_ROWS Deletes one or more rows from the table. ADD_ROWS "Adds one or more rows to a table. Includes importing data into a new table and importing more rows into an existing table. ADD_COLUMN Adds a new column to the table. CHANGE_TYPE Changes the type of a column.
         "taskId": "A String", # Identifier for the task.
       },
     ],
-    "kind": "fusiontables#taskList", # Type name: a list of all tasks.
+    "kind": "fusiontables#taskList", # Type of the resource. This is always "fusiontables#taskList".
     "totalItems": 42, # Total number of tasks for the table.
   }</pre>
 </div>