Update docs for 1.4.2 release
diff --git a/docs/dyn/logging_v1beta3.projects.logs.entries.html b/docs/dyn/logging_v1beta3.projects.logs.entries.html
index adf523c..55f5447 100644
--- a/docs/dyn/logging_v1beta3.projects.logs.entries.html
+++ b/docs/dyn/logging_v1beta3.projects.logs.entries.html
@@ -76,24 +76,34 @@
 <h2>Instance Methods</h2>
 <p class="toc_element">
   <code><a href="#write">write(projectsId, logsId, body, x__xgafv=None)</a></code></p>
-<p class="firstline">Creates one or more log entries in a log. You must supply a list of `LogEntry` objects, named `entries`. Each `LogEntry` object must contain a payload object and a `LogEntryMetadata` object that describes the entry. You must fill in all the fields of the entry, metadata, and payload. You can also supply a map, `commonLabels`, that supplies default (key, value) data for the `entries[].metadata.labels` maps, saving you the trouble of creating identical copies for each entry.</p>
+<p class="firstline">Writes log entries to Cloud Logging. Each entry consists of a `LogEntry` object. You must fill in all the fields of the object, including one of the payload fields. You may supply a map, `commonLabels`, that holds default (key, value) data for the `entries[].metadata.labels` map in each entry, saving you the trouble of creating identical copies for each entry.</p>
 <h3>Method Details</h3>
 <div class="method">
     <code class="details" id="write">write(projectsId, logsId, body, x__xgafv=None)</code>
-  <pre>Creates one or more log entries in a log. You must supply a list of `LogEntry` objects, named `entries`. Each `LogEntry` object must contain a payload object and a `LogEntryMetadata` object that describes the entry. You must fill in all the fields of the entry, metadata, and payload. You can also supply a map, `commonLabels`, that supplies default (key, value) data for the `entries[].metadata.labels` maps, saving you the trouble of creating identical copies for each entry.
+  <pre>Writes log entries to Cloud Logging. Each entry consists of a `LogEntry` object. You must fill in all the fields of the object, including one of the payload fields. You may supply a map, `commonLabels`, that holds default (key, value) data for the `entries[].metadata.labels` map in each entry, saving you the trouble of creating identical copies for each entry.
 
 Args:
-  projectsId: string, Part of `logName`. The name of the log resource into which to insert the log entries. (required)
+  projectsId: string, Part of `logName`. The resource name of the log that will receive the log entries. (required)
   logsId: string, Part of `logName`. See documentation of `projectsId`. (required)
   body: object, The request body. (required)
     The object takes the form of:
 
 { # The parameters to WriteLogEntries.
-    "commonLabels": { # Metadata labels that apply to all entries in this request. If one of the log entries contains a (key, value) with the same key that is in `commonLabels`, then the entry's (key, value) overrides the one in `commonLabels`.
+    "commonLabels": { # Metadata labels that apply to all log entries in this request, so that you don't have to repeat them in each log entry's `metadata.labels` field. If any of the log entries contains a (key, value) with the same key that is in `commonLabels`, then the entry's (key, value) overrides the one in `commonLabels`.
       "a_key": "A String",
     },
     "entries": [ # Log entries to insert.
       { # An individual entry in a log.
+        "httpRequest": { # A common proto for logging HTTP requests. # Information about the HTTP request associated with this log entry, if applicable.
+          "status": 42, # A response code indicates the status of response, e.g., 200.
+          "requestUrl": "A String", # Contains the scheme (http|https), the host name, the path and the query portion of the URL that was requested.
+          "requestMethod": "A String", # Request method, such as `GET`, `HEAD`, `PUT` or `POST`.
+          "referer": "A String", # Referer (a.k.a. referrer) URL of request, as defined in http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html.
+          "remoteIp": "A String", # IP address of the client who issues the HTTP request. Could be either IPv4 or IPv6.
+          "userAgent": "A String", # User agent sent by the client, e.g., "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; .NET CLR 1.0.3705)".
+          "requestSize": "A String", # Size of the HTTP request message in bytes, including request headers and the request body.
+          "responseSize": "A String", # Size of the HTTP response message in bytes sent back to the client, including response headers and response body.
+        },
         "log": "A String", # The log to which this entry belongs. When a log entry is ingested, the value of this field is set by the logging system.
         "textPayload": "A String", # The log entry payload, represented as a text string.
         "structPayload": { # The log entry payload, represented as a structure that is expressed as a JSON object.