chore: regens API reference docs (#889)
diff --git a/docs/dyn/oauth2_v2.html b/docs/dyn/oauth2_v2.html
index d69da45..d62a36e 100644
--- a/docs/dyn/oauth2_v2.html
+++ b/docs/dyn/oauth2_v2.html
@@ -80,39 +80,13 @@
<p class="firstline">Returns the userinfo Resource.</p>
<p class="toc_element">
- <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="#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>
+ <code><a href="#tokeninfo">tokeninfo(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">
- <code class="details" id="getCertForOpenIdConnect">getCertForOpenIdConnect()</code>
- <pre>A description of how to use this function
-
-Args:
-
-Returns:
- An object of the form:
-
- {
- "keys": [
- {
- "use": "sig",
- "e": "A String",
- "kty": "RSA",
- "alg": "RS256",
- "n": "A String",
- "kid": "A String",
- },
- ],
- }</pre>
-</div>
-
-<div class="method">
<code class="details" id="new_batch_http_request">new_batch_http_request()</code>
<pre>Create a BatchHttpRequest object based on the discovery document.
@@ -130,11 +104,10 @@
</div>
<div class="method">
- <code class="details" id="tokeninfo">tokeninfo(token_handle=None, access_token=None, id_token=None)</code>
+ <code class="details" id="tokeninfo">tokeninfo(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
@@ -143,10 +116,8 @@
{
"issued_to": "A String", # To whom was the token issued to. In general the same as audience.
- "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.
"scope": "A String", # The space separated list of scopes granted to this token.
"email": "A String", # The email address of the user. Present only if the email scope is present in the request.