Update docs for 1.4.1 release
diff --git a/docs/dyn/oauth2_v2.html b/docs/dyn/oauth2_v2.html
index f56acb7..d69da45 100644
--- a/docs/dyn/oauth2_v2.html
+++ b/docs/dyn/oauth2_v2.html
@@ -83,7 +83,10 @@
<code><a href="#getCertForOpenIdConnect">getCertForOpenIdConnect()</a></code></p>
<p class="firstline">A description of how to use this function</p>
<p class="toc_element">
- <code><a href="#tokeninfo">tokeninfo(access_token=None, id_token=None)</a></code></p>
+ <code><a href="#new_batch_http_request">new_batch_http_request()</a></code></p>
+<p class="firstline">Create a BatchHttpRequest object based on the discovery document.</p>
+<p class="toc_element">
+ <code><a href="#tokeninfo">tokeninfo(token_handle=None, access_token=None, id_token=None)</a></code></p>
<p class="firstline">A description of how to use this function</p>
<h3>Method Details</h3>
<div class="method">
@@ -110,10 +113,28 @@
</div>
<div class="method">
- <code class="details" id="tokeninfo">tokeninfo(access_token=None, id_token=None)</code>
+ <code class="details" id="new_batch_http_request">new_batch_http_request()</code>
+ <pre>Create a BatchHttpRequest object based on the discovery document.
+
+ Args:
+ callback: callable, A callback to be called for each response, of the
+ form callback(id, response, exception). The first parameter is the
+ request id, and the second is the deserialized response object. The
+ third is an apiclient.errors.HttpError exception object if an HTTP
+ error occurred while processing the request, or None if no error
+ occurred.
+
+ Returns:
+ A BatchHttpRequest object based on the discovery document.
+ </pre>
+</div>
+
+<div class="method">
+ <code class="details" id="tokeninfo">tokeninfo(token_handle=None, access_token=None, id_token=None)</code>
<pre>A description of how to use this function
Args:
+ token_handle: string, A parameter
access_token: string, A parameter
id_token: string, A parameter
@@ -122,7 +143,8 @@
{
"issued_to": "A String", # To whom was the token issued to. In general the same as audience.
- "user_id": "A String", # The Gaia obfuscated user id.
+ "token_handle": "A String", # The token handle associated with this token.
+ "user_id": "A String", # The obfuscated user id.
"expires_in": 42, # The expiry time of the token, as number of seconds left until expiry.
"access_type": "A String", # The access type granted with this token. It can be offline or online.
"audience": "A String", # Who is the intended audience for this token. In general the same as issued_to.