Refresh docs
diff --git a/docs/dyn/fusiontables_v1.table.html b/docs/dyn/fusiontables_v1.table.html
index 2709f64..d19fc40 100644
--- a/docs/dyn/fusiontables_v1.table.html
+++ b/docs/dyn/fusiontables_v1.table.html
@@ -75,12 +75,18 @@
 <h1><a href="fusiontables_v1.html">Fusion Tables API</a> . <a href="fusiontables_v1.table.html">table</a></h1>
 <h2>Instance Methods</h2>
 <p class="toc_element">
+  <code><a href="#copy">copy(tableId)</a></code></p>
+<p class="firstline">Copies a table.</p>
+<p class="toc_element">
   <code><a href="#delete">delete(tableId)</a></code></p>
 <p class="firstline">Deletes a table.</p>
 <p class="toc_element">
   <code><a href="#get">get(tableId)</a></code></p>
 <p class="firstline">Retrieves a specific table by its id.</p>
 <p class="toc_element">
+  <code><a href="#importRows">importRows(tableId, media_body=None, startLine=None, isStrict=None, encoding=None, delimiter=None, endLine=None)</a></code></p>
+<p class="firstline">Import more rows into a table.</p>
+<p class="toc_element">
   <code><a href="#insert">insert(body)</a></code></p>
 <p class="firstline">Creates a new table.</p>
 <p class="toc_element">
@@ -97,11 +103,48 @@
 <p class="firstline">Updates an existing table. Unless explicitly requested, only the name, description, and attribution will be updated.</p>
 <h3>Method Details</h3>
 <div class="method">
+    <code class="details" id="copy">copy(tableId)</code>
+  <pre>Copies a table.
+
+Args:
+  tableId: string, ID of the table that is being copied. (required)
+
+Returns:
+  An object of the form:
+
+    { # Represents a table. Specifies the name, whether it is exportable, description, attribution, and attribution link.
+      "kind": "fusiontables#table", # Type name: a template for an individual table.
+      "attribution": "A String", # Optional attribution assigned to the table.
+      "description": "A String", # Optional description assigned to the table.
+      "isExportable": True or False, # Variable for whether table is exportable.
+      "baseTableIds": [ # Optional base table identifier if this table is a view or merged table.
+        "A String",
+      ],
+      "attributionLink": "A String", # Optional link for attribution.
+      "sql": "A String", # Optional sql that encodes the table definition for derived tables.
+      "tableId": "A String", # Encrypted unique alphanumeric identifier for the table.
+      "columns": [ # Columns in the table.
+        { # Specifies the id, name and type of a column in a table.
+            "kind": "fusiontables#column", # Type name: a template for an individual column.
+            "type": "A String", # Required type of the column.
+            "columnId": 42, # Identifier for the column.
+            "name": "A String", # Required name of the column.
+            "baseColumn": { # Optional identifier of the base column. If present, this column is derived from the specified base column.
+              "tableIndex": 42, # Offset to the entry in the list of base tables in the table definition.
+              "columnId": 42, # The id of the column in the base table from which this column is derived.
+            },
+          },
+      ],
+      "name": "A String", # Name assigned to a table.
+    }</pre>
+</div>
+
+<div class="method">
     <code class="details" id="delete">delete(tableId)</code>
   <pre>Deletes a table.
 
 Args:
-  tableId: string, Id of the table that is being deleted. (required)
+  tableId: string, ID of the table that is being deleted. (required)
 </pre>
 </div>
 
@@ -143,6 +186,28 @@
 </div>
 
 <div class="method">
+    <code class="details" id="importRows">importRows(tableId, media_body=None, startLine=None, isStrict=None, encoding=None, delimiter=None, endLine=None)</code>
+  <pre>Import more rows into a table.
+
+Args:
+  tableId: string, The table into which new rows are being imported. (required)
+  media_body: string, The filename of the media request body, or an instance of a MediaUpload object.
+  startLine: integer, The index of the first line from which to start importing, inclusive. Default is 0.
+  isStrict: boolean, Whether the CSV must have the same number of values for each row. If false, rows with fewer values will be padded with empty values. Default is true.
+  encoding: string, The encoding of the content. Default is UTF-8. Use 'auto-detect' if you are unsure of the encoding.
+  delimiter: string, The delimiter used to separate cell values. This can only consist of a single character. Default is ','.
+  endLine: integer, The index of the last line from which to start importing, exclusive. Thus, the number of imported lines is endLine - startLine. If this parameter is not provided, the file will be imported until the last line of the file. If endLine is negative, then the imported content will exclude the last endLine lines. That is, if endline is negative, no line will be imported whose index is greater than N + endLine where N is the number of lines in the file, and the number of imported lines will be N + endLine - startLine.
+
+Returns:
+  An object of the form:
+
+    { # Represents an import request.
+    "numRowsReceived": "A String", # The number of rows received from the import request.
+    "kind": "fusiontables#import", # Type name: a template for an import request.
+  }</pre>
+</div>
+
+<div class="method">
     <code class="details" id="insert">insert(body)</code>
   <pre>Creates a new table.
 
@@ -270,7 +335,7 @@
   <pre>Updates an existing table. Unless explicitly requested, only the name, description, and attribution will be updated. This method supports patch semantics.
 
 Args:
-  tableId: string, Id of the table that is being updated. (required)
+  tableId: string, ID of the table that is being updated. (required)
   body: object, The request body. (required)
     The object takes the form of:
 
@@ -337,7 +402,7 @@
   <pre>Updates an existing table. Unless explicitly requested, only the name, description, and attribution will be updated.
 
 Args:
-  tableId: string, Id of the table that is being updated. (required)
+  tableId: string, ID of the table that is being updated. (required)
   body: object, The request body. (required)
     The object takes the form of: