docs: update generated docs (#1053)
Updates for both discovery docs and epydoc API Documentation
Fixes: #1049
diff --git a/docs/dyn/dataflow_v1b3.projects.locations.sql.html b/docs/dyn/dataflow_v1b3.projects.locations.sql.html
index 5d06449..977a4e1 100644
--- a/docs/dyn/dataflow_v1b3.projects.locations.sql.html
+++ b/docs/dyn/dataflow_v1b3.projects.locations.sql.html
@@ -75,21 +75,24 @@
<h1><a href="dataflow_v1b3.html">Dataflow API</a> . <a href="dataflow_v1b3.projects.html">projects</a> . <a href="dataflow_v1b3.projects.locations.html">locations</a> . <a href="dataflow_v1b3.projects.locations.sql.html">sql</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
+ <code><a href="#close">close()</a></code></p>
+<p class="firstline">Close httplib2 connections.</p>
+<p class="toc_element">
<code><a href="#validate">validate(projectId, location, query=None, x__xgafv=None)</a></code></p>
-<p class="firstline">Validates a GoogleSQL query for Cloud Dataflow syntax. Will always</p>
+<p class="firstline">Validates a GoogleSQL query for Cloud Dataflow syntax. Will always confirm the given query parses correctly, and if able to look up schema information from DataCatalog, will validate that the query analyzes properly as well.</p>
<h3>Method Details</h3>
<div class="method">
+ <code class="details" id="close">close()</code>
+ <pre>Close httplib2 connections.</pre>
+</div>
+
+<div class="method">
<code class="details" id="validate">validate(projectId, location, query=None, x__xgafv=None)</code>
- <pre>Validates a GoogleSQL query for Cloud Dataflow syntax. Will always
-confirm the given query parses correctly, and if able to look up
-schema information from DataCatalog, will validate that the query
-analyzes properly as well.
+ <pre>Validates a GoogleSQL query for Cloud Dataflow syntax. Will always confirm the given query parses correctly, and if able to look up schema information from DataCatalog, will validate that the query analyzes properly as well.
Args:
projectId: string, Required. The ID of the Cloud Platform project that the job belongs to. (required)
- location: string, The [regional endpoint]
-(https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to
-which to direct the request. (required)
+ location: string, The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which to direct the request. (required)
query: string, The sql query to validate.
x__xgafv: string, V1 error format.
Allowed values
@@ -100,12 +103,12 @@
An object of the form:
{ # Response to the validation request.
+ "errorMessage": "A String", # Will be empty if validation succeeds.
"queryInfo": { # Information about a validated query. # Information about the validated query. Not defined if validation fails.
"queryProperty": [ # Includes an entry for each satisfied QueryProperty.
"A String",
],
},
- "errorMessage": "A String", # Will be empty if validation succeeds.
}</pre>
</div>