Refresh docs
diff --git a/docs/dyn/fusiontables_v1.table.html b/docs/dyn/fusiontables_v1.table.html
index 88bd29d..0157063 100644
--- a/docs/dyn/fusiontables_v1.table.html
+++ b/docs/dyn/fusiontables_v1.table.html
@@ -87,6 +87,9 @@
<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="#importTable">importTable(name, media_body=None, encoding=None, delimiter=None)</a></code></p>
+<p class="firstline">Import a new 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">
@@ -209,6 +212,46 @@
</div>
<div class="method">
+ <code class="details" id="importTable">importTable(name, media_body=None, encoding=None, delimiter=None)</code>
+ <pre>Import a new table.
+
+Args:
+ name: string, The name to be assigned to the new table. (required)
+ media_body: string, The filename of the media request body, or an instance of a MediaUpload object.
+ 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 ','.
+
+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="insert">insert(body)</code>
<pre>Creates a new table.