Update docs for 1.3.2 release.
diff --git a/docs/dyn/content_v2.datafeeds.html b/docs/dyn/content_v2.datafeeds.html
index 6b6eb69..cb8fefe 100644
--- a/docs/dyn/content_v2.datafeeds.html
+++ b/docs/dyn/content_v2.datafeeds.html
@@ -87,9 +87,12 @@
<code><a href="#insert">insert(merchantId, body)</a></code></p>
<p class="firstline">Registers a datafeed with your Merchant Center account.</p>
<p class="toc_element">
- <code><a href="#list">list(merchantId)</a></code></p>
+ <code><a href="#list">list(merchantId, pageToken=None, maxResults=None)</a></code></p>
<p class="firstline">Lists the datafeeds in your Merchant Center account.</p>
<p class="toc_element">
+ <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
+<p class="firstline">Retrieves the next page of results.</p>
+<p class="toc_element">
<code><a href="#patch">patch(merchantId, datafeedId, body)</a></code></p>
<p class="firstline">Updates a datafeed of your Merchant Center account. This method supports patch semantics.</p>
<p class="toc_element">
@@ -105,11 +108,11 @@
The object takes the form of:
{
- "entries": [
- { # A batch entry encoding a single non-batch request to the datafeeds service of the Content API for Shopping.
+ "entries": [ # The request entries to be processed in the batch.
+ { # A batch entry encoding a single non-batch datafeeds request.
"batchId": 42, # An entry ID, unique within the batch request.
"datafeedId": "A String", # The ID of the data feed to get or delete.
- "datafeed": { # The data feed to insert.
+ "datafeed": { # Datafeed data. # The data feed to insert.
"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.
@@ -137,7 +140,7 @@
"attributeLanguage": "A String", # The two-letter ISO 639-1 language in which the attributes are defined in the data feed.
},
"merchantId": "A String", # The ID of the managing account.
- "method": "A String", # The method (get, insert, update, or delete).
+ "method": "A String",
},
],
}
@@ -148,8 +151,8 @@
{
"kind": "content#datafeedsCustomBatchResponse", # Identifies what kind of resource this is. Value: the fixed string "content#datafeedsCustomBatchResponse".
- "entries": [
- { # A batch entry encoding a single non-batch response from the datafeeds service of the Content API for Shopping.
+ "entries": [ # The result of the execution of the batch requests.
+ { # A batch entry encoding a single non-batch datafeeds response.
"batchId": 42, # The ID of the request entry this entry responds to.
"errors": { # A list of errors returned by a failed batch entry. # A list of errors defined if and only if the request failed.
"message": "A String", # The message of the first error in errors.
@@ -162,7 +165,7 @@
},
],
},
- "datafeed": { # The requested data feed. Defined if and only if the request was successful.
+ "datafeed": { # Datafeed data. # The requested data feed. Defined if and only if the request was successful.
"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.
@@ -215,7 +218,7 @@
Returns:
An object of the form:
- {
+ { # Datafeed data.
"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.
@@ -253,7 +256,7 @@
body: object, The request body. (required)
The object takes the form of:
-{
+{ # Datafeed data.
"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.
@@ -285,7 +288,7 @@
Returns:
An object of the form:
- {
+ { # Datafeed data.
"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.
@@ -315,19 +318,22 @@
</div>
<div class="method">
- <code class="details" id="list">list(merchantId)</code>
+ <code class="details" id="list">list(merchantId, pageToken=None, maxResults=None)</code>
<pre>Lists the datafeeds in your Merchant Center account.
Args:
- merchantId: string, A parameter (required)
+ merchantId: string, The ID of the managing account. (required)
+ pageToken: string, The token returned by the previous request.
+ maxResults: integer, The maximum number of products to return in the response, used for paging.
Returns:
An object of the form:
{
+ "nextPageToken": "A String", # The token for the retrieval of the next page of datafeeds.
"kind": "content#datafeedsListResponse", # Identifies what kind of resource this is. Value: the fixed string "content#datafeedsListResponse".
"resources": [
- {
+ { # Datafeed data.
"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.
@@ -359,6 +365,20 @@
</div>
<div class="method">
+ <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
+ <pre>Retrieves the next page of results.
+
+Args:
+ previous_request: The request for the previous page. (required)
+ previous_response: The response from the request for the previous page. (required)
+
+Returns:
+ A request object that you can call 'execute()' on to request the next
+ page. Returns None if there are no more items in the collection.
+ </pre>
+</div>
+
+<div class="method">
<code class="details" id="patch">patch(merchantId, datafeedId, body)</code>
<pre>Updates a datafeed of your Merchant Center account. This method supports patch semantics.
@@ -368,7 +388,7 @@
body: object, The request body. (required)
The object takes the form of:
-{
+{ # Datafeed data.
"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.
@@ -400,7 +420,7 @@
Returns:
An object of the form:
- {
+ { # Datafeed data.
"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.
@@ -439,7 +459,7 @@
body: object, The request body. (required)
The object takes the form of:
-{
+{ # Datafeed data.
"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.
@@ -471,7 +491,7 @@
Returns:
An object of the form:
- {
+ { # Datafeed data.
"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.