Fix method doc signatures for multiline required parameters (#374)
* Fix method doc signatures for multiline required parameters.
Existing doc generator failed to recognize parameters as required when parameter descriptions
extended over more than one line. Besides presenting incorrect information, resulting
inconsistencies broke checks for automated sample generation.
* Regen docs
diff --git a/docs/dyn/dlp_v2beta1.inspect.results.findings.html b/docs/dyn/dlp_v2beta1.inspect.results.findings.html
index 6c6ea50..fa160ec 100644
--- a/docs/dyn/dlp_v2beta1.inspect.results.findings.html
+++ b/docs/dyn/dlp_v2beta1.inspect.results.findings.html
@@ -75,14 +75,14 @@
<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=None, pageToken=None, x__xgafv=None, pageSize=None)</a></code></p>
+ <code><a href="#list">list(name, pageToken=None, x__xgafv=None, pageSize=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=None, pageToken=None, x__xgafv=None, pageSize=None)</code>
+ <code class="details" id="list">list(name, pageToken=None, x__xgafv=None, pageSize=None)</code>
<pre>Returns list of results for given inspect operation result set id.
Args:
@@ -114,12 +114,9 @@
# 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.
},
- "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.
@@ -164,13 +161,13 @@
# A kind matching regex `__.*__` is reserved/read-only.
# A kind must not contain more than 1500 bytes when UTF-8 encoded.
# Cannot be `""`.
- "id": "A String", # The auto-allocated ID of the entity.
- # Never equal to zero. Values less than zero are discouraged and may not
- # be supported in the future.
"name": "A String", # The name of the entity.
# A name matching regex `__.*__` is reserved/read-only.
# A name must not be more than 1500 bytes when UTF-8 encoded.
# Cannot be `""`.
+ "id": "A String", # The auto-allocated ID of the entity.
+ # Never equal to zero. Values less than zero are discouraged and may not
+ # be supported in the future.
},
],
"partitionId": { # Datastore partition ID. # Entities are partitioned into subsets, currently identified by a project
@@ -194,6 +191,9 @@
"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.
},
],
},