Release v1.6.0 (#324)
* Update version and changelog for v1.6.0
* Update docs
diff --git a/docs/dyn/fusiontables_v1.table.html b/docs/dyn/fusiontables_v1.table.html
index 6cba52c..a229092 100644
--- a/docs/dyn/fusiontables_v1.table.html
+++ b/docs/dyn/fusiontables_v1.table.html
@@ -84,10 +84,10 @@
<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>
+ <code><a href="#importRows">importRows(tableId, media_body=None, startLine=None, isStrict=None, encoding=None, media_mime_type=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>
+ <code><a href="#importTable">importTable(name, media_body=None, encoding=None, delimiter=None, media_mime_type=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>
@@ -194,7 +194,7 @@
</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>
+ <code class="details" id="importRows">importRows(tableId, media_body=None, startLine=None, isStrict=None, encoding=None, media_mime_type=None, delimiter=None, endLine=None)</code>
<pre>Import more rows into a table.
Args:
@@ -203,6 +203,7 @@
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.
+ media_mime_type: string, The MIME type of the media request body, or an instance of a MediaUpload object.
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.
@@ -216,7 +217,7 @@
</div>
<div class="method">
- <code class="details" id="importTable">importTable(name, media_body=None, encoding=None, delimiter=None)</code>
+ <code class="details" id="importTable">importTable(name, media_body=None, encoding=None, delimiter=None, media_mime_type=None)</code>
<pre>Import a new table.
Args:
@@ -224,6 +225,7 @@
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 ','.
+ media_mime_type: string, The MIME type of the media request body, or an instance of a MediaUpload object.
Returns:
An object of the form: