docs: update generated docs (#1053)
Updates for both discovery docs and epydoc API Documentation
Fixes: #1049
diff --git a/docs/dyn/translate_v2.languages.html b/docs/dyn/translate_v2.languages.html
index 5a26e64..d68a09f 100644
--- a/docs/dyn/translate_v2.languages.html
+++ b/docs/dyn/translate_v2.languages.html
@@ -75,17 +75,25 @@
<h1><a href="translate_v2.html">Google Cloud Translation API</a> . <a href="translate_v2.languages.html">languages</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#list">list(model=None, target=None, x__xgafv=None)</a></code></p>
+ <code><a href="#close">close()</a></code></p>
+<p class="firstline">Close httplib2 connections.</p>
+<p class="toc_element">
+ <code><a href="#list">list(target=None, model=None, x__xgafv=None)</a></code></p>
<p class="firstline">Returns a list of supported languages for translation.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="list">list(model=None, target=None, x__xgafv=None)</code>
+ <code class="details" id="close">close()</code>
+ <pre>Close httplib2 connections.</pre>
+</div>
+
+<div class="method">
+ <code class="details" id="list">list(target=None, model=None, x__xgafv=None)</code>
<pre>Returns a list of supported languages for translation.
Args:
- model: string, The model type for which supported languages should be returned.
target: string, The language to use to return localized, human readable names of supported
languages.
+ model: string, The model type for which supported languages should be returned.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
@@ -97,10 +105,10 @@
{
"languages": [ # List of source/target languages supported by the translation API. If target parameter is unspecified, the list is sorted by the ASCII code point order of the language code. If target parameter is specified, the list is sorted by the collation order of the language name in the target language.
{
- "name": "A String", # Human readable name of the language localized to the target language.
"language": "A String", # Supported language code, generally consisting of its ISO 639-1
# identifier. (E.g. 'en', 'ja'). In certain cases, BCP-47 codes including
# language + region identifiers are returned (e.g. 'zh-TW' and 'zh-CH')
+ "name": "A String", # Human readable name of the language localized to the target language.
},
],
}</pre>