aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCraig Citro <craigcitro@gmail.com>2014-08-15 01:44:40 -0700
committerCraig Citro <craigcitro@gmail.com>2014-08-15 01:44:40 -0700
commit62af5a96988404207da9fc0e4aff2f6cefcb26c2 (patch)
tree8e51dd1db511729fe39843ee7b263d698ab18704 /docs
parent065b5307fe180bfdd4a5d9af134b1c9a0a1d2aba (diff)
downloadgoogle-api-python-client-62af5a96988404207da9fc0e4aff2f6cefcb26c2.tar.gz
Update docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/dyn/content_v2.datafeeds.html182
-rw-r--r--docs/dyn/content_v2.datafeedstatuses.html72
-rw-r--r--docs/dyn/mirror_v1.settings.html4
-rw-r--r--docs/epy/googleapiclient.errors.BatchError-class.html26
-rw-r--r--docs/epy/googleapiclient.errors.ResumableUploadError-class.html26
5 files changed, 29 insertions, 281 deletions
diff --git a/docs/dyn/content_v2.datafeeds.html b/docs/dyn/content_v2.datafeeds.html
index be44c2c5e..6b6eb6934 100644
--- a/docs/dyn/content_v2.datafeeds.html
+++ b/docs/dyn/content_v2.datafeeds.html
@@ -75,9 +75,6 @@ h1, h2, h3 {
<h1><a href="content_v2.html">Content API for Shopping</a> . <a href="content_v2.datafeeds.html">datafeeds</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#batch">batch(body)</a></code></p>
-<p class="firstline">A description of how to use this function</p>
-<p class="toc_element">
<code><a href="#custombatch">custombatch(body)</a></code></p>
<p class="firstline">A description of how to use this function</p>
<p class="toc_element">
@@ -100,185 +97,6 @@ h1, h2, h3 {
<p class="firstline">Updates a datafeed of your Merchant Center account.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="batch">batch(body)</code>
- <pre>A description of how to use this function
-
-Args:
- body: object, The request body. (required)
- The object takes the form of:
-
-{
- "entrys": [
- {
- "batchId": 42,
- "datafeedsupdaterequest": {
- "resource": {
- "kind": "content#datafeed", # Identifies what kind of resource this is. Value: the fixed string "content#datafeed".
- "contentType": "A String", # The type of data feed.
- "name": "A String", # A descriptive name of the data feed.
- "contentLanguage": "A String", # The two-letter ISO 639-1 language of the items in the feed.
- "format": { # Format of the feed file.
- "fileEncoding": "A String", # Character encoding scheme of the data feed. If not specified, the encoding will be auto-detected.
- "quotingMode": "A String", # Specifies how double quotes are interpreted. If not specified, the mode will be auto-detected. Ignored for non-DSV data feeds.
- "columnDelimiter": "A String", # Delimiter for the separation of values in a delimiter-separated values feed. If not specified, the delimiter will be auto-detected. Ignored for non-DSV data feeds.
- },
- "fetchSchedule": { # The required fields vary based on the frequency of fetching. For a monthly fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour are required. For a daily fetch schedule, only hour is required. # Fetch schedule for the feed file.
- "username": "A String", # An optional user name for fetch_url.
- "hour": 42, # The hour of the day the feed file should be fetched (0-24).
- "fetchUrl": "A String", # The URL where the feed file can be fetched. Google Merchant Center will support automatic scheduled uploads using the HTTP, HTTPS, FTP, or SFTP protocols, so the value will need to be a valid link using one of those four protocols.
- "weekday": "A String", # The day of the week the feed file should be fetched.
- "timeZone": "A String", # Time zone used for schedule. UTC by default. E.g., "America/Los_Angeles".
- "password": "A String", # An optional password for fetch_url.
- "dayOfMonth": 42, # The day of the month the feed file should be fetched (1-31).
- },
- "targetCountry": "A String", # The two-letter ISO 3166 country where the items in the feed will be included in the search index.
- "fileName": "A String", # The filename of the feed. All feeds must have a unique file name.
- "intendedDestinations": [ # The list of intended destinations (corresponds to checked check boxes in Merchant Center).
- "A String",
- ],
- "id": "A String", # The ID of the data feed.
- "attributeLanguage": "A String", # The two-letter ISO 639-1 language in which the attributes are defined in the data feed.
- },
- },
- "methodName": "A String",
- "datafeedsinsertrequest": {
- "resource": {
- "kind": "content#datafeed", # Identifies what kind of resource this is. Value: the fixed string "content#datafeed".
- "contentType": "A String", # The type of data feed.
- "name": "A String", # A descriptive name of the data feed.
- "contentLanguage": "A String", # The two-letter ISO 639-1 language of the items in the feed.
- "format": { # Format of the feed file.
- "fileEncoding": "A String", # Character encoding scheme of the data feed. If not specified, the encoding will be auto-detected.
- "quotingMode": "A String", # Specifies how double quotes are interpreted. If not specified, the mode will be auto-detected. Ignored for non-DSV data feeds.
- "columnDelimiter": "A String", # Delimiter for the separation of values in a delimiter-separated values feed. If not specified, the delimiter will be auto-detected. Ignored for non-DSV data feeds.
- },
- "fetchSchedule": { # The required fields vary based on the frequency of fetching. For a monthly fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour are required. For a daily fetch schedule, only hour is required. # Fetch schedule for the feed file.
- "username": "A String", # An optional user name for fetch_url.
- "hour": 42, # The hour of the day the feed file should be fetched (0-24).
- "fetchUrl": "A String", # The URL where the feed file can be fetched. Google Merchant Center will support automatic scheduled uploads using the HTTP, HTTPS, FTP, or SFTP protocols, so the value will need to be a valid link using one of those four protocols.
- "weekday": "A String", # The day of the week the feed file should be fetched.
- "timeZone": "A String", # Time zone used for schedule. UTC by default. E.g., "America/Los_Angeles".
- "password": "A String", # An optional password for fetch_url.
- "dayOfMonth": 42, # The day of the month the feed file should be fetched (1-31).
- },
- "targetCountry": "A String", # The two-letter ISO 3166 country where the items in the feed will be included in the search index.
- "fileName": "A String", # The filename of the feed. All feeds must have a unique file name.
- "intendedDestinations": [ # The list of intended destinations (corresponds to checked check boxes in Merchant Center).
- "A String",
- ],
- "id": "A String", # The ID of the data feed.
- "attributeLanguage": "A String", # The two-letter ISO 639-1 language in which the attributes are defined in the data feed.
- },
- },
- },
- ],
- }
-
-
-Returns:
- An object of the form:
-
- {
- "entrys": [
- {
- "batchId": 42,
- "datafeedsgetresponse": {
- "kind": "content#datafeedsGetResponse", # Identifies what kind of resource this is. Value: the fixed string "content#datafeedsGetResponse".
- "resource": {
- "kind": "content#datafeed", # Identifies what kind of resource this is. Value: the fixed string "content#datafeed".
- "contentType": "A String", # The type of data feed.
- "name": "A String", # A descriptive name of the data feed.
- "contentLanguage": "A String", # The two-letter ISO 639-1 language of the items in the feed.
- "format": { # Format of the feed file.
- "fileEncoding": "A String", # Character encoding scheme of the data feed. If not specified, the encoding will be auto-detected.
- "quotingMode": "A String", # Specifies how double quotes are interpreted. If not specified, the mode will be auto-detected. Ignored for non-DSV data feeds.
- "columnDelimiter": "A String", # Delimiter for the separation of values in a delimiter-separated values feed. If not specified, the delimiter will be auto-detected. Ignored for non-DSV data feeds.
- },
- "fetchSchedule": { # The required fields vary based on the frequency of fetching. For a monthly fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour are required. For a daily fetch schedule, only hour is required. # Fetch schedule for the feed file.
- "username": "A String", # An optional user name for fetch_url.
- "hour": 42, # The hour of the day the feed file should be fetched (0-24).
- "fetchUrl": "A String", # The URL where the feed file can be fetched. Google Merchant Center will support automatic scheduled uploads using the HTTP, HTTPS, FTP, or SFTP protocols, so the value will need to be a valid link using one of those four protocols.
- "weekday": "A String", # The day of the week the feed file should be fetched.
- "timeZone": "A String", # Time zone used for schedule. UTC by default. E.g., "America/Los_Angeles".
- "password": "A String", # An optional password for fetch_url.
- "dayOfMonth": 42, # The day of the month the feed file should be fetched (1-31).
- },
- "targetCountry": "A String", # The two-letter ISO 3166 country where the items in the feed will be included in the search index.
- "fileName": "A String", # The filename of the feed. All feeds must have a unique file name.
- "intendedDestinations": [ # The list of intended destinations (corresponds to checked check boxes in Merchant Center).
- "A String",
- ],
- "id": "A String", # The ID of the data feed.
- "attributeLanguage": "A String", # The two-letter ISO 639-1 language in which the attributes are defined in the data feed.
- },
- },
- "datafeedsinsertresponse": {
- "kind": "content#datafeedsInsertResponse", # Identifies what kind of resource this is. Value: the fixed string "content#datafeedsInsertResponse".
- "resource": {
- "kind": "content#datafeed", # Identifies what kind of resource this is. Value: the fixed string "content#datafeed".
- "contentType": "A String", # The type of data feed.
- "name": "A String", # A descriptive name of the data feed.
- "contentLanguage": "A String", # The two-letter ISO 639-1 language of the items in the feed.
- "format": { # Format of the feed file.
- "fileEncoding": "A String", # Character encoding scheme of the data feed. If not specified, the encoding will be auto-detected.
- "quotingMode": "A String", # Specifies how double quotes are interpreted. If not specified, the mode will be auto-detected. Ignored for non-DSV data feeds.
- "columnDelimiter": "A String", # Delimiter for the separation of values in a delimiter-separated values feed. If not specified, the delimiter will be auto-detected. Ignored for non-DSV data feeds.
- },
- "fetchSchedule": { # The required fields vary based on the frequency of fetching. For a monthly fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour are required. For a daily fetch schedule, only hour is required. # Fetch schedule for the feed file.
- "username": "A String", # An optional user name for fetch_url.
- "hour": 42, # The hour of the day the feed file should be fetched (0-24).
- "fetchUrl": "A String", # The URL where the feed file can be fetched. Google Merchant Center will support automatic scheduled uploads using the HTTP, HTTPS, FTP, or SFTP protocols, so the value will need to be a valid link using one of those four protocols.
- "weekday": "A String", # The day of the week the feed file should be fetched.
- "timeZone": "A String", # Time zone used for schedule. UTC by default. E.g., "America/Los_Angeles".
- "password": "A String", # An optional password for fetch_url.
- "dayOfMonth": 42, # The day of the month the feed file should be fetched (1-31).
- },
- "targetCountry": "A String", # The two-letter ISO 3166 country where the items in the feed will be included in the search index.
- "fileName": "A String", # The filename of the feed. All feeds must have a unique file name.
- "intendedDestinations": [ # The list of intended destinations (corresponds to checked check boxes in Merchant Center).
- "A String",
- ],
- "id": "A String", # The ID of the data feed.
- "attributeLanguage": "A String", # The two-letter ISO 639-1 language in which the attributes are defined in the data feed.
- },
- },
- "datafeedsupdateresponse": {
- "kind": "content#datafeedsUpdateResponse", # Identifies what kind of resource this is. Value: the fixed string "content#datafeedsUpdateResponse".
- "resource": {
- "kind": "content#datafeed", # Identifies what kind of resource this is. Value: the fixed string "content#datafeed".
- "contentType": "A String", # The type of data feed.
- "name": "A String", # A descriptive name of the data feed.
- "contentLanguage": "A String", # The two-letter ISO 639-1 language of the items in the feed.
- "format": { # Format of the feed file.
- "fileEncoding": "A String", # Character encoding scheme of the data feed. If not specified, the encoding will be auto-detected.
- "quotingMode": "A String", # Specifies how double quotes are interpreted. If not specified, the mode will be auto-detected. Ignored for non-DSV data feeds.
- "columnDelimiter": "A String", # Delimiter for the separation of values in a delimiter-separated values feed. If not specified, the delimiter will be auto-detected. Ignored for non-DSV data feeds.
- },
- "fetchSchedule": { # The required fields vary based on the frequency of fetching. For a monthly fetch schedule, day_of_month and hour are required. For a weekly fetch schedule, weekday and hour are required. For a daily fetch schedule, only hour is required. # Fetch schedule for the feed file.
- "username": "A String", # An optional user name for fetch_url.
- "hour": 42, # The hour of the day the feed file should be fetched (0-24).
- "fetchUrl": "A String", # The URL where the feed file can be fetched. Google Merchant Center will support automatic scheduled uploads using the HTTP, HTTPS, FTP, or SFTP protocols, so the value will need to be a valid link using one of those four protocols.
- "weekday": "A String", # The day of the week the feed file should be fetched.
- "timeZone": "A String", # Time zone used for schedule. UTC by default. E.g., "America/Los_Angeles".
- "password": "A String", # An optional password for fetch_url.
- "dayOfMonth": 42, # The day of the month the feed file should be fetched (1-31).
- },
- "targetCountry": "A String", # The two-letter ISO 3166 country where the items in the feed will be included in the search index.
- "fileName": "A String", # The filename of the feed. All feeds must have a unique file name.
- "intendedDestinations": [ # The list of intended destinations (corresponds to checked check boxes in Merchant Center).
- "A String",
- ],
- "id": "A String", # The ID of the data feed.
- "attributeLanguage": "A String", # The two-letter ISO 639-1 language in which the attributes are defined in the data feed.
- },
- },
- },
- ],
- "kind": "content#datafeedsBatchResponse", # Identifies what kind of resource this is. Value: the fixed string "content#datafeedsBatchResponse".
- }</pre>
-</div>
-
-<div class="method">
<code class="details" id="custombatch">custombatch(body)</code>
<pre>A description of how to use this function
diff --git a/docs/dyn/content_v2.datafeedstatuses.html b/docs/dyn/content_v2.datafeedstatuses.html
index 332b716c3..61d173df9 100644
--- a/docs/dyn/content_v2.datafeedstatuses.html
+++ b/docs/dyn/content_v2.datafeedstatuses.html
@@ -75,9 +75,6 @@ h1, h2, h3 {
<h1><a href="content_v2.html">Content API for Shopping</a> . <a href="content_v2.datafeedstatuses.html">datafeedstatuses</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#batch">batch(body)</a></code></p>
-<p class="firstline">A description of how to use this function</p>
-<p class="toc_element">
<code><a href="#custombatch">custombatch(body)</a></code></p>
<p class="firstline">A description of how to use this function</p>
<p class="toc_element">
@@ -88,75 +85,6 @@ h1, h2, h3 {
<p class="firstline">Lists the statuses of the datafeeds in your Merchant Center account.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="batch">batch(body)</code>
- <pre>A description of how to use this function
-
-Args:
- body: object, The request body. (required)
- The object takes the form of:
-
-{
- "entrys": [
- {
- "batchId": 42,
- "methodName": "A String",
- },
- ],
- }
-
-
-Returns:
- An object of the form:
-
- {
- "entrys": [
- {
- "batchId": 42,
- "datafeedstatusesgetresponse": {
- "kind": "content#datafeedstatusesGetResponse", # Identifies what kind of resource this is. Value: the fixed string "content#datafeedstatusesGetResponse".
- "resource": {
- "kind": "content#datafeedStatus", # Identifies what kind of resource this is. Value: the fixed string "content#datafeedStatus".
- "errors": [ # The list of errors occurring in the feed.
- { # An error occurring in the feed, like "invalid price".
- "count": 42, # The number of occurrences of the error in the feed.
- "message": "A String", # The error message, e.g., "Invalid price".
- "code": "A String", # The code of the error, e.g., "validation/invalid_value".
- "examples": [ # A list of example occurrences of the error, grouped by product.
- { # An example occurrence for a particular error.
- "itemId": "A String", # The ID of the example item.
- "value": "A String", # The problematic value.
- "lineNumber": 42, # Line number in the data feed where the example is found.
- },
- ],
- },
- ],
- "processingStatus": "A String", # The processing status of the feed.
- "itemsTotal": 42, # The number of items in the feed that were processed.
- "warnings": [ # The list of errors occurring in the feed.
- { # An error occurring in the feed, like "invalid price".
- "count": 42, # The number of occurrences of the error in the feed.
- "message": "A String", # The error message, e.g., "Invalid price".
- "code": "A String", # The code of the error, e.g., "validation/invalid_value".
- "examples": [ # A list of example occurrences of the error, grouped by product.
- { # An example occurrence for a particular error.
- "itemId": "A String", # The ID of the example item.
- "value": "A String", # The problematic value.
- "lineNumber": 42, # Line number in the data feed where the example is found.
- },
- ],
- },
- ],
- "itemsValid": 42, # The number of items in the feed that were valid.
- "datafeedId": "A String", # The ID of the feed for which the status is reported.
- },
- },
- },
- ],
- "kind": "content#datafeedstatusesBatchResponse", # Identifies what kind of resource this is. Value: the fixed string "content#datafeedstatusesBatchResponse".
- }</pre>
-</div>
-
-<div class="method">
<code class="details" id="custombatch">custombatch(body)</code>
<pre>A description of how to use this function
diff --git a/docs/dyn/mirror_v1.settings.html b/docs/dyn/mirror_v1.settings.html
index 6baa327cf..f0d5fcef2 100644
--- a/docs/dyn/mirror_v1.settings.html
+++ b/docs/dyn/mirror_v1.settings.html
@@ -84,7 +84,8 @@ h1, h2, h3 {
Args:
id: string, The ID of the setting. The following IDs are valid:
-- locale - The key to the user’s language/locale (BCP 47 identifier) that Glassware should use to render localized content. (required)
+- locale - The key to the user’s language/locale (BCP 47 identifier) that Glassware should use to render localized content.
+- timezone - The key to the user’s current time zone region as defined in the tz database. Example: America/Los_Angeles. (required)
Returns:
An object of the form:
@@ -93,6 +94,7 @@ Returns:
"kind": "mirror#setting", # The type of resource. This is always mirror#setting.
"id": "A String", # The setting's ID. The following IDs are valid:
# - locale - The key to the user’s language/locale (BCP 47 identifier) that Glassware should use to render localized content.
+ # - timezone - The key to the user’s current time zone region as defined in the tz database. Example: America/Los_Angeles.
"value": "A String", # The setting value, as a string.
}</pre>
</div>
diff --git a/docs/epy/googleapiclient.errors.BatchError-class.html b/docs/epy/googleapiclient.errors.BatchError-class.html
index a6438ae07..5f9790950 100644
--- a/docs/epy/googleapiclient.errors.BatchError-class.html
+++ b/docs/epy/googleapiclient.errors.BatchError-class.html
@@ -66,18 +66,18 @@
<area shape="rect" id="node2" href="googleapiclient.errors.HttpError-class.html" title="HTTP data was invalid or unexpected." alt="" coords="125,379,203,421"/>
<area shape="rect" id="node3_17" href="javascript:void(0);" title="exceptions.Exception.__new__" alt="" coords="101,273,227,292"/>
<area shape="rect" id="node3" href="javascript:void(0);" title="Common base class for all non&#45;exit exceptions." alt="" coords="89,243,239,299"/>
-<area shape="rect" id="node4" href="googleapiclient.errors.Error-class.html" title="Base error for this module." alt="" coords="137,317,191,360"/>
-<area shape="rect" id="node5_18" href="javascript:void(0);" title="exceptions.BaseException.args" alt="" coords="85,28,241,47"/>
-<area shape="rect" id="node5_19" href="javascript:void(0);" title="exceptions.BaseException.message" alt="" coords="85,47,241,65"/>
-<area shape="rect" id="node5_20" href="javascript:void(0);" title="x.__delattr__(&#39;name&#39;) &lt;==&gt; del x.name" alt="" coords="85,68,241,87"/>
-<area shape="rect" id="node5_21" href="javascript:void(0);" title="x.__getattribute__(&#39;name&#39;) &lt;==&gt; x.name" alt="" coords="85,87,241,105"/>
-<area shape="rect" id="node5_22" href="javascript:void(0);" title="x[y]" alt="" coords="85,105,241,124"/>
-<area shape="rect" id="node5_23" href="javascript:void(0);" title="x[i:j]" alt="" coords="85,124,241,143"/>
-<area shape="rect" id="node5_24" href="javascript:void(0);" title="helper for pickle" alt="" coords="85,143,241,161"/>
-<area shape="rect" id="node5_25" href="javascript:void(0);" title="x.__setattr__(&#39;name&#39;, value) &lt;==&gt; x.name = value" alt="" coords="85,161,241,180"/>
-<area shape="rect" id="node5_26" href="javascript:void(0);" title="exceptions.BaseException.__setstate__" alt="" coords="85,180,241,199"/>
-<area shape="rect" id="node5_27" href="javascript:void(0);" title="exceptions.BaseException.__unicode__" alt="" coords="85,199,241,217"/>
-<area shape="rect" id="node5" href="javascript:void(0);" title="Common base class for all exceptions" alt="" coords="73,5,253,224"/>
+<area shape="rect" id="node5" href="googleapiclient.errors.Error-class.html" title="Base error for this module." alt="" coords="137,317,191,360"/>
+<area shape="rect" id="node4_18" href="javascript:void(0);" title="exceptions.BaseException.args" alt="" coords="85,28,241,47"/>
+<area shape="rect" id="node4_19" href="javascript:void(0);" title="exceptions.BaseException.message" alt="" coords="85,47,241,65"/>
+<area shape="rect" id="node4_20" href="javascript:void(0);" title="x.__delattr__(&#39;name&#39;) &lt;==&gt; del x.name" alt="" coords="85,68,241,87"/>
+<area shape="rect" id="node4_21" href="javascript:void(0);" title="x.__getattribute__(&#39;name&#39;) &lt;==&gt; x.name" alt="" coords="85,87,241,105"/>
+<area shape="rect" id="node4_22" href="javascript:void(0);" title="x[y]" alt="" coords="85,105,241,124"/>
+<area shape="rect" id="node4_23" href="javascript:void(0);" title="x[i:j]" alt="" coords="85,124,241,143"/>
+<area shape="rect" id="node4_24" href="javascript:void(0);" title="helper for pickle" alt="" coords="85,143,241,161"/>
+<area shape="rect" id="node4_25" href="javascript:void(0);" title="x.__setattr__(&#39;name&#39;, value) &lt;==&gt; x.name = value" alt="" coords="85,161,241,180"/>
+<area shape="rect" id="node4_26" href="javascript:void(0);" title="exceptions.BaseException.__setstate__" alt="" coords="85,180,241,199"/>
+<area shape="rect" id="node4_27" href="javascript:void(0);" title="exceptions.BaseException.__unicode__" alt="" coords="85,199,241,217"/>
+<area shape="rect" id="node4" href="javascript:void(0);" title="Common base class for all exceptions" alt="" coords="73,5,253,224"/>
</map>
<img src="uml_class_diagram_for_googleap_5.gif" alt='' usemap="#uml_class_diagram_for_googleap_5" ismap="ismap" class="graph-without-title" />
</center>
@@ -349,7 +349,7 @@ str(x)
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Thu Aug 14 00:45:18 2014
+ Generated by Epydoc 3.0.1 on Fri Aug 15 01:40:58 2014
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
diff --git a/docs/epy/googleapiclient.errors.ResumableUploadError-class.html b/docs/epy/googleapiclient.errors.ResumableUploadError-class.html
index 6c5550e4f..a434fc36e 100644
--- a/docs/epy/googleapiclient.errors.ResumableUploadError-class.html
+++ b/docs/epy/googleapiclient.errors.ResumableUploadError-class.html
@@ -66,18 +66,18 @@
<area shape="rect" id="node2" href="googleapiclient.errors.HttpError-class.html" title="HTTP data was invalid or unexpected." alt="" coords="5,379,257,472"/>
<area shape="rect" id="node3_17" href="javascript:void(0);" title="exceptions.Exception.__new__" alt="" coords="70,273,195,292"/>
<area shape="rect" id="node3" href="javascript:void(0);" title="Common base class for all non&#45;exit exceptions." alt="" coords="58,243,207,299"/>
-<area shape="rect" id="node4" href="googleapiclient.errors.Error-class.html" title="Base error for this module." alt="" coords="106,317,159,360"/>
-<area shape="rect" id="node5_18" href="javascript:void(0);" title="exceptions.BaseException.args" alt="" coords="54,28,210,47"/>
-<area shape="rect" id="node5_19" href="javascript:void(0);" title="exceptions.BaseException.message" alt="" coords="54,47,210,65"/>
-<area shape="rect" id="node5_20" href="javascript:void(0);" title="x.__delattr__(&#39;name&#39;) &lt;==&gt; del x.name" alt="" coords="54,68,210,87"/>
-<area shape="rect" id="node5_21" href="javascript:void(0);" title="x.__getattribute__(&#39;name&#39;) &lt;==&gt; x.name" alt="" coords="54,87,210,105"/>
-<area shape="rect" id="node5_22" href="javascript:void(0);" title="x[y]" alt="" coords="54,105,210,124"/>
-<area shape="rect" id="node5_23" href="javascript:void(0);" title="x[i:j]" alt="" coords="54,124,210,143"/>
-<area shape="rect" id="node5_24" href="javascript:void(0);" title="helper for pickle" alt="" coords="54,143,210,161"/>
-<area shape="rect" id="node5_25" href="javascript:void(0);" title="x.__setattr__(&#39;name&#39;, value) &lt;==&gt; x.name = value" alt="" coords="54,161,210,180"/>
-<area shape="rect" id="node5_26" href="javascript:void(0);" title="exceptions.BaseException.__setstate__" alt="" coords="54,180,210,199"/>
-<area shape="rect" id="node5_27" href="javascript:void(0);" title="exceptions.BaseException.__unicode__" alt="" coords="54,199,210,217"/>
-<area shape="rect" id="node5" href="javascript:void(0);" title="Common base class for all exceptions" alt="" coords="41,5,221,224"/>
+<area shape="rect" id="node5" href="googleapiclient.errors.Error-class.html" title="Base error for this module." alt="" coords="106,317,159,360"/>
+<area shape="rect" id="node4_18" href="javascript:void(0);" title="exceptions.BaseException.args" alt="" coords="54,28,210,47"/>
+<area shape="rect" id="node4_19" href="javascript:void(0);" title="exceptions.BaseException.message" alt="" coords="54,47,210,65"/>
+<area shape="rect" id="node4_20" href="javascript:void(0);" title="x.__delattr__(&#39;name&#39;) &lt;==&gt; del x.name" alt="" coords="54,68,210,87"/>
+<area shape="rect" id="node4_21" href="javascript:void(0);" title="x.__getattribute__(&#39;name&#39;) &lt;==&gt; x.name" alt="" coords="54,87,210,105"/>
+<area shape="rect" id="node4_22" href="javascript:void(0);" title="x[y]" alt="" coords="54,105,210,124"/>
+<area shape="rect" id="node4_23" href="javascript:void(0);" title="x[i:j]" alt="" coords="54,124,210,143"/>
+<area shape="rect" id="node4_24" href="javascript:void(0);" title="helper for pickle" alt="" coords="54,143,210,161"/>
+<area shape="rect" id="node4_25" href="javascript:void(0);" title="x.__setattr__(&#39;name&#39;, value) &lt;==&gt; x.name = value" alt="" coords="54,161,210,180"/>
+<area shape="rect" id="node4_26" href="javascript:void(0);" title="exceptions.BaseException.__setstate__" alt="" coords="54,180,210,199"/>
+<area shape="rect" id="node4_27" href="javascript:void(0);" title="exceptions.BaseException.__unicode__" alt="" coords="54,199,210,217"/>
+<area shape="rect" id="node4" href="javascript:void(0);" title="Common base class for all exceptions" alt="" coords="41,5,221,224"/>
</map>
<img src="uml_class_diagram_for_googleap_12.gif" alt='' usemap="#uml_class_diagram_for_googleap_12" ismap="ismap" class="graph-without-title" />
</center>
@@ -193,7 +193,7 @@ Error occured during resumable upload.
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
- Generated by Epydoc 3.0.1 on Thu Aug 14 00:45:18 2014
+ Generated by Epydoc 3.0.1 on Fri Aug 15 01:40:58 2014
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"