Clean and regen docs (#401)

diff --git a/docs/dyn/dlp_v2beta1.inspect.results.findings.html b/docs/dyn/dlp_v2beta1.inspect.results.findings.html
index fa160ec..8371470 100644
--- a/docs/dyn/dlp_v2beta1.inspect.results.findings.html
+++ b/docs/dyn/dlp_v2beta1.inspect.results.findings.html
@@ -75,20 +75,29 @@
 <h1><a href="dlp_v2beta1.html">DLP API</a> . <a href="dlp_v2beta1.inspect.html">inspect</a> . <a href="dlp_v2beta1.inspect.results.html">results</a> . <a href="dlp_v2beta1.inspect.results.findings.html">findings</a></h1>
 <h2>Instance Methods</h2>
 <p class="toc_element">
-  <code><a href="#list">list(name, pageToken=None, x__xgafv=None, pageSize=None)</a></code></p>
+  <code><a href="#list">list(name, pageSize=None, filter=None, pageToken=None, x__xgafv=None)</a></code></p>
 <p class="firstline">Returns list of results for given inspect operation result set id.</p>
 <p class="toc_element">
   <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
 <p class="firstline">Retrieves the next page of results.</p>
 <h3>Method Details</h3>
 <div class="method">
-    <code class="details" id="list">list(name, pageToken=None, x__xgafv=None, pageSize=None)</code>
+    <code class="details" id="list">list(name, pageSize=None, filter=None, pageToken=None, x__xgafv=None)</code>
   <pre>Returns list of results for given inspect operation result set id.
 
 Args:
   name: string, Identifier of the results set returned as metadata of
 the longrunning operation created by a call to CreateInspectOperation.
 Should be in the format of `inspect/results/{id}. (required)
+  pageSize: integer, Maximum number of results to return.
+If 0, the implementation select a reasonable value.
+  filter: string, Restrict findings to items that match. Supports info_type and likelihood.
+<p>Examples:<br/>
+<li>info_type=EMAIL_ADDRESS
+<li>info_type=PHONE_NUMBER,EMAIL_ADDRESS
+<li>likelihood=VERY_LIKELY
+<li>likelihood=VERY_LIKELY,LIKELY
+<li>info_type=EMAIL_ADDRESS,likelihood=VERY_LIKELY,LIKELY
   pageToken: string, The value returned by the last `ListInspectFindingsResponse`; indicates
 that this is a continuation of a prior `ListInspectFindings` call, and that
 the system should return the next page of data.
@@ -96,8 +105,6 @@
     Allowed values
       1 - v1 error format
       2 - v2 error format
-  pageSize: integer, Maximum number of results to return.
-If 0, the implementation will select a reasonable value.
 
 Returns:
   An object of the form:
@@ -114,9 +121,15 @@
           # smaller batches.
       "findings": [ # List of findings for an item.
         { # Container structure describing a single finding within a string or image.
+          "quote": "A String", # The specific string that may be potentially sensitive info.
+          "likelihood": "A String", # Estimate of how likely it is that the info_type is correct.
           "infoType": { # Type of information detected by the API. # The specific type of info the string might be.
-            "name": "A String", # Name of the information type, provided by the API call ListInfoTypes.
+            "name": "A String", # Name of the information type. For built-in info types, this is provided by
+                # the API call ListInfoTypes. For user-defined info types, this is
+                # provided by the user. All user-defined info types must have unique names,
+                # and cannot conflict with built-in info type names.
           },
+          "createTime": "A String", # Timestamp when finding was detected.
           "location": { # Specifies the location of a finding within its source item. # Location of the info found.
             "fieldId": { # General identifier of a data field in a storage service. # Field id of the field containing the finding.
               "columnName": "A String", # Column name describing the field.
@@ -135,10 +148,6 @@
               "end": "A String", # Index of the last character of the range (exclusive).
             },
             "recordKey": { # Message for a unique key indicating a record that contains a finding. # Key of the finding.
-              "cloudStorageKey": { # Record key for a finding in a Cloud Storage file.
-                "startOffset": "A String", # Byte offset of the referenced data in the file.
-                "filePath": "A String", # Path to the file.
-              },
               "datastoreKey": { # Record key for a finding in Cloud Datastore.
                 "entityKey": { # A unique identifier for a Datastore entity. # Datastore entity key.
                     # If a key's partition ID or any of its path kinds or names are
@@ -179,21 +188,20 @@
                       # A partition ID contains several dimensions:
                       # project ID and namespace ID.
                     "projectId": "A String", # The ID of the project to which the entities belong.
-                    "databaseId": "A String", # If not empty, the ID of the database to which the entities
-                        # belong.
                     "namespaceId": "A String", # If not empty, the ID of the namespace to which the entities belong.
                   },
                 },
               },
+              "cloudStorageKey": { # Record key for a finding in a Cloud Storage file.
+                "startOffset": "A String", # Byte offset of the referenced data in the file.
+                "filePath": "A String", # Path to the file.
+              },
             },
             "byteRange": { # Generic half-open interval [start, end) # Zero-based byte offsets within a content item.
               "start": "A String", # Index of the first character of the range (inclusive).
               "end": "A String", # Index of the last character of the range (exclusive).
             },
           },
-          "likelihood": "A String", # Estimate of how likely it is that the info_type is correct.
-          "createTime": "A String", # Timestamp when finding was detected.
-          "quote": "A String", # The specific string that may be potentially sensitive info.
         },
       ],
     },