Release v1.6.0 (#324)
* Update version and changelog for v1.6.0
* Update docs
diff --git a/docs/dyn/fusiontables_v2.table.html b/docs/dyn/fusiontables_v2.table.html
index 52cde04..0f1c00e 100644
--- a/docs/dyn/fusiontables_v2.table.html
+++ b/docs/dyn/fusiontables_v2.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">Imports 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">Imports a new table.</p>
<p class="toc_element">
<code><a href="#insert">insert(body)</a></code></p>
@@ -102,7 +102,7 @@
<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="#replaceRows">replaceRows(tableId, media_body=None, startLine=None, isStrict=None, encoding=None, delimiter=None, endLine=None)</a></code></p>
+ <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">
<code><a href="#update">update(tableId, body, replaceViewDefinition=None)</a></code></p>
@@ -223,7 +223,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>Imports more rows into a table.
Args:
@@ -232,6 +232,7 @@
startLine: integer, The index of the first line from which to start importing, inclusive. Default is 0.
isStrict: boolean, Whether the imported 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 line up to which data will be imported. Default is to import the entire file. If endLine is negative, it is an offset from the end of the file; the imported content will exclude the last endLine lines.
@@ -245,7 +246,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>Imports a new table.
Args:
@@ -253,6 +254,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:
@@ -565,7 +567,7 @@
</div>
<div class="method">
- <code class="details" id="replaceRows">replaceRows(tableId, media_body=None, startLine=None, isStrict=None, encoding=None, delimiter=None, endLine=None)</code>
+ <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.
Args:
@@ -574,6 +576,7 @@
startLine: integer, The index of the first line from which to start importing, inclusive. Default is 0.
isStrict: boolean, Whether the imported CSV must have the same number of column values for each row. If true, throws an exception if the CSV does not have the same number of columns. If false, rows with fewer column 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 line up to which data will be imported. Default is to import the entire file. If endLine is negative, it is an offset from the end of the file; the imported content will exclude the last endLine lines.