Update docs.
diff --git a/docs/dyn/blogger_v3.blogs.html b/docs/dyn/blogger_v3.blogs.html
index f53f6c1..4bd8ab5 100644
--- a/docs/dyn/blogger_v3.blogs.html
+++ b/docs/dyn/blogger_v3.blogs.html
@@ -76,31 +76,32 @@
 <h2>Instance Methods</h2>
 <p class="toc_element">
   <code><a href="#get">get(blogId, maxPosts=None, view=None)</a></code></p>
-<p class="firstline">Gets one blog by id.</p>
+<p class="firstline">Gets one blog by ID.</p>
 <p class="toc_element">
   <code><a href="#getByUrl">getByUrl(url, view=None)</a></code></p>
 <p class="firstline">Retrieve a Blog by URL.</p>
 <p class="toc_element">
-  <code><a href="#listByUser">listByUser(userId, fetchUserInfo=None, role=None, view=None)</a></code></p>
+  <code><a href="#listByUser">listByUser(userId, status=None, fetchUserInfo=None, role=None, view=None)</a></code></p>
 <p class="firstline">Retrieves a list of blogs, possibly filtered.</p>
 <h3>Method Details</h3>
 <div class="method">
     <code class="details" id="get">get(blogId, maxPosts=None, view=None)</code>
-  <pre>Gets one blog by id.
+  <pre>Gets one blog by ID.
 
 Args:
   blogId: string, The ID of the blog to get. (required)
   maxPosts: integer, Maximum number of posts to pull back with the blog.
-  view: string, Access level with which to view the blogs. Note that some fields require elevated access.
+  view: string, Access level with which to view the blog. Note that some fields require elevated access.
     Allowed values
-      ADMIN - Admin level detail
-      AUTHOR - Author level detail
-      READER - Reader level detail
+      ADMIN - Admin level detail.
+      AUTHOR - Author level detail.
+      READER - Reader level detail.
 
 Returns:
   An object of the form:
 
     {
+    "status": "A String", # The status of the blog.
     "kind": "blogger#blog", # The kind of this entry. Always blogger#blog
     "description": "A String", # The description of this blog. This is displayed underneath the title.
     "locale": { # The locale this Blog is set to.
@@ -156,6 +157,7 @@
             ],
             "selfLink": "A String", # The URL of the comments on this post.
           },
+          "readerComments": "A String", # Comment control and display setting for readers of this post.
           "labels": [ # The list of labels this Post was tagged with.
             "A String",
           ],
@@ -165,6 +167,7 @@
             "id": "A String", # The identifier of the Blog that contains this Post.
           },
           "url": "A String", # The URL where this Post is displayed.
+          "etag": "A String", # Etag of the resource.
           "location": { # The location for geotagged posts.
             "lat": 3.14, # Location's latitude.
             "lng": 3.14, # Location's longitude.
@@ -204,16 +207,17 @@
 
 Args:
   url: string, The URL of the blog to retrieve. (required)
-  view: string, Access level with which to view the blogs. Note that some fields require elevated access.
+  view: string, Access level with which to view the blog. Note that some fields require elevated access.
     Allowed values
-      ADMIN - Admin level detail
-      AUTHOR - Author level detail
-      READER - Reader level detail
+      ADMIN - Admin level detail.
+      AUTHOR - Author level detail.
+      READER - Reader level detail.
 
 Returns:
   An object of the form:
 
     {
+    "status": "A String", # The status of the blog.
     "kind": "blogger#blog", # The kind of this entry. Always blogger#blog
     "description": "A String", # The description of this blog. This is displayed underneath the title.
     "locale": { # The locale this Blog is set to.
@@ -269,6 +273,7 @@
             ],
             "selfLink": "A String", # The URL of the comments on this post.
           },
+          "readerComments": "A String", # Comment control and display setting for readers of this post.
           "labels": [ # The list of labels this Post was tagged with.
             "A String",
           ],
@@ -278,6 +283,7 @@
             "id": "A String", # The identifier of the Blog that contains this Post.
           },
           "url": "A String", # The URL where this Post is displayed.
+          "etag": "A String", # Etag of the resource.
           "location": { # The location for geotagged posts.
             "lat": 3.14, # Location's latitude.
             "lng": 3.14, # Location's longitude.
@@ -312,22 +318,26 @@
 </div>
 
 <div class="method">
-    <code class="details" id="listByUser">listByUser(userId, fetchUserInfo=None, role=None, view=None)</code>
+    <code class="details" id="listByUser">listByUser(userId, status=None, fetchUserInfo=None, role=None, view=None)</code>
   <pre>Retrieves a list of blogs, possibly filtered.
 
 Args:
   userId: string, ID of the user whose blogs are to be fetched. Either the word 'self' (sans quote marks) or the user's profile identifier. (required)
+  status: string, Blog statuses to include in the result (default: Live blogs only). Note that ADMIN access is required to view deleted blogs. (repeated)
+    Allowed values
+      DELETED - Blog has been deleted by an administrator.
+      LIVE - Blog is currently live.
   fetchUserInfo: boolean, Whether the response is a list of blogs with per-user information instead of just blogs.
   role: string, User access types for blogs to include in the results, e.g. AUTHOR will return blogs where the user has author level access. If no roles are specified, defaults to ADMIN and AUTHOR roles. (repeated)
     Allowed values
-      ADMIN - Admin role - User has Admin level access.
-      AUTHOR - Author role - User has Author level access.
-      READER - Reader role - User has Reader level access.
+      ADMIN - Admin role - Blogs where the user has Admin level access.
+      AUTHOR - Author role - Blogs where the user has Author level access.
+      READER - Reader role - Blogs where the user has Reader level access (to a private blog).
   view: string, Access level with which to view the blogs. Note that some fields require elevated access.
     Allowed values
-      ADMIN - Admin level detail
-      AUTHOR - Author level detail
-      READER - Reader level detail
+      ADMIN - Admin level detail.
+      AUTHOR - Author level detail.
+      READER - Reader level detail.
 
 Returns:
   An object of the form:
@@ -335,6 +345,7 @@
     {
     "items": [ # The list of Blogs this user has Authorship or Admin rights over.
       {
+        "status": "A String", # The status of the blog.
         "kind": "blogger#blog", # The kind of this entry. Always blogger#blog
         "description": "A String", # The description of this blog. This is displayed underneath the title.
         "locale": { # The locale this Blog is set to.
@@ -390,6 +401,7 @@
                 ],
                 "selfLink": "A String", # The URL of the comments on this post.
               },
+              "readerComments": "A String", # Comment control and display setting for readers of this post.
               "labels": [ # The list of labels this Post was tagged with.
                 "A String",
               ],
@@ -399,6 +411,7 @@
                 "id": "A String", # The identifier of the Blog that contains this Post.
               },
               "url": "A String", # The URL where this Post is displayed.
+              "etag": "A String", # Etag of the resource.
               "location": { # The location for geotagged posts.
                 "lat": 3.14, # Location's latitude.
                 "lng": 3.14, # Location's longitude.
@@ -435,6 +448,7 @@
     "blogUserInfos": [ # Admin level list of blog per-user information
       {
         "blog": { # The Blog resource.
+          "status": "A String", # The status of the blog.
           "kind": "blogger#blog", # The kind of this entry. Always blogger#blog
           "description": "A String", # The description of this blog. This is displayed underneath the title.
           "locale": { # The locale this Blog is set to.
@@ -490,6 +504,7 @@
                   ],
                   "selfLink": "A String", # The URL of the comments on this post.
                 },
+                "readerComments": "A String", # Comment control and display setting for readers of this post.
                 "labels": [ # The list of labels this Post was tagged with.
                   "A String",
                 ],
@@ -499,6 +514,7 @@
                   "id": "A String", # The identifier of the Blog that contains this Post.
                 },
                 "url": "A String", # The URL where this Post is displayed.
+                "etag": "A String", # Etag of the resource.
                 "location": { # The location for geotagged posts.
                   "lat": 3.14, # Location's latitude.
                   "lng": 3.14, # Location's longitude.