Update docs for 1.4.1 release
diff --git a/docs/dyn/bigquery_v2.tabledata.html b/docs/dyn/bigquery_v2.tabledata.html
index 2b5978b..5592d2c 100644
--- a/docs/dyn/bigquery_v2.tabledata.html
+++ b/docs/dyn/bigquery_v2.tabledata.html
@@ -76,14 +76,14 @@
 <h2>Instance Methods</h2>
 <p class="toc_element">
   <code><a href="#insertAll">insertAll(projectId, datasetId, tableId, body)</a></code></p>
-<p class="firstline">Streams data into BigQuery one record at a time without needing to run a load job.</p>
+<p class="firstline">Streams data into BigQuery one record at a time without needing to run a load job. Requires the WRITER dataset role.</p>
 <p class="toc_element">
   <code><a href="#list">list(projectId, datasetId, tableId, pageToken=None, maxResults=None, startIndex=None)</a></code></p>
-<p class="firstline">Retrieves table data from a specified set of rows.</p>
+<p class="firstline">Retrieves table data from a specified set of rows. Requires the READER dataset role.</p>
 <h3>Method Details</h3>
 <div class="method">
     <code class="details" id="insertAll">insertAll(projectId, datasetId, tableId, body)</code>
-  <pre>Streams data into BigQuery one record at a time without needing to run a load job.
+  <pre>Streams data into BigQuery one record at a time without needing to run a load job. Requires the WRITER dataset role.
 
 Args:
   projectId: string, Project ID of the destination table. (required)
@@ -93,6 +93,7 @@
     The object takes the form of:
 
 {
+    "ignoreUnknownValues": True or False, # [Optional] Accept rows that contain values that do not match the schema. The unknown values are ignored. Default is false, which treats unknown values as errors.
     "kind": "bigquery#tableDataInsertAllRequest", # The resource type of the response.
     "rows": [ # The rows to insert.
       {
@@ -102,6 +103,7 @@
         },
       },
     ],
+    "skipInvalidRows": True or False, # [Optional] Insert all valid rows of a request, even if invalid rows exist. The default value is false, which causes the entire request to fail if any invalid rows exist.
   }
 
 
@@ -128,7 +130,7 @@
 
 <div class="method">
     <code class="details" id="list">list(projectId, datasetId, tableId, pageToken=None, maxResults=None, startIndex=None)</code>
-  <pre>Retrieves table data from a specified set of rows.
+  <pre>Retrieves table data from a specified set of rows. Requires the READER dataset role.
 
 Args:
   projectId: string, Project ID of the table to read (required)
@@ -146,9 +148,9 @@
     "kind": "bigquery#tableDataList", # The resource type of the response.
     "etag": "A String", # A hash of this page of results.
     "rows": [ # Rows of results.
-      { # Represents a single row in the result set, consisting of one or more fields.
-        "f": [
-          { # Represents a single cell in the result set. Users of the java client can detect whether their value result is null by calling 'com.google.api.client.util.Data.isNull(cell.getV())'.
+      {
+        "f": [ # Represents a single row in the result set, consisting of one or more fields.
+          {
             "v": "",
           },
         ],