Refresh all docs (#298)
Change the discovery query to fetch all discovery docs, not just the
preferred ones.
diff --git a/docs/dyn/pagespeedonline_v1.pagespeedapi.html b/docs/dyn/pagespeedonline_v1.pagespeedapi.html
index 129f17a..a2a60a7 100644
--- a/docs/dyn/pagespeedonline_v1.pagespeedapi.html
+++ b/docs/dyn/pagespeedonline_v1.pagespeedapi.html
@@ -76,17 +76,17 @@
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#runpagespeed">runpagespeed(url, screenshot=None, locale=None, rule=None, strategy=None, filter_third_party_resources=None)</a></code></p>
-<p class="firstline">Runs Page Speed analysis on the page at the specified URL, and returns a Page Speed score, a list of suggestions to make that page faster, and other information.</p>
+<p class="firstline">Runs PageSpeed analysis on the page at the specified URL, and returns a PageSpeed score, a list of suggestions to make that page faster, and other information.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="runpagespeed">runpagespeed(url, screenshot=None, locale=None, rule=None, strategy=None, filter_third_party_resources=None)</code>
- <pre>Runs Page Speed analysis on the page at the specified URL, and returns a Page Speed score, a list of suggestions to make that page faster, and other information.
+ <pre>Runs PageSpeed analysis on the page at the specified URL, and returns a PageSpeed score, a list of suggestions to make that page faster, and other information.
Args:
url: string, The URL to fetch and analyze (required)
screenshot: boolean, Indicates if binary data containing a screenshot should be included
locale: string, The locale used to localize formatted results
- rule: string, A Page Speed rule to run; if none are given, all rules are run (repeated)
+ rule: string, A PageSpeed rule to run; if none are given, all rules are run (repeated)
strategy: string, The analysis strategy to use
Allowed values
desktop - Fetch and analyze the URL for desktop browsers
@@ -98,9 +98,9 @@
{
"kind": "pagespeedonline#result", # Kind of result.
- "formattedResults": { # Localized Page Speed results. Contains a ruleResults entry for each Page Speed rule instantiated and run by the server.
+ "formattedResults": { # Localized PageSpeed results. Contains a ruleResults entry for each PageSpeed rule instantiated and run by the server.
"locale": "A String", # The locale of the formattedResults, e.g. "en_US".
- "ruleResults": { # Dictionary of formatted rule results, with one entry for each Page Speed rule instantiated and run by the server.
+ "ruleResults": { # Dictionary of formatted rule results, with one entry for each PageSpeed rule instantiated and run by the server.
"a_key": { # The enum-like identifier for this rule. For instance "EnableKeepAlive" or "AvoidCssImport". Not localized.
"localizedRuleName": "A String", # Localized name of the rule, intended for presentation to a user.
"urlBlocks": [ # List of blocks of URLs. Each block may contain a heading and a list of URLs. Each URL may optionally include additional details.
@@ -144,18 +144,18 @@
},
},
},
- "screenshot": { # Base64 encoded screenshot of the page that was analyzed.
+ "screenshot": { # Base64-encoded screenshot of the page that was analyzed.
"width": 42, # Width of screenshot in pixels.
"data": "A String", # Image data base64 encoded.
"mime_type": "A String", # Mime type of image data. E.g. "image/jpeg".
"height": 42, # Height of screenshot in pixels.
},
"title": "A String", # Title of the page, as displayed in the browser's title bar.
- "version": { # The version of the Page Speed SDK used to generate these results.
- "major": 42, # The major version number of the Page Speed SDK used to generate these results.
- "minor": 42, # The minor version number of the Page Speed SDK used to generate these results.
+ "version": { # The version of PageSpeed used to generate these results.
+ "major": 42, # The major version number of PageSpeed used to generate these results.
+ "minor": 42, # The minor version number of PageSpeed used to generate these results.
},
- "score": 42, # The Page Speed Score (0-100), which indicates how much faster a page could be. A high score indicates little room for improvement, while a lower score indicates more room for improvement.
+ "score": 42, # The PageSpeed Score (0-100), which indicates how much faster a page could be. A high score indicates little room for improvement, while a lower score indicates more room for improvement.
"responseCode": 42, # Response code for the document. 200 indicates a normal page load. 4xx/5xx indicates an error.
"invalidRules": [ # List of rules that were specified in the request, but which the server did not know how to instantiate.
"A String",