docs: update generated docs (#1053)
Updates for both discovery docs and epydoc API Documentation
Fixes: #1049
diff --git a/docs/dyn/doubleclickbidmanager_v1.lineitems.html b/docs/dyn/doubleclickbidmanager_v1.lineitems.html
index 025e56a..d36357d 100644
--- a/docs/dyn/doubleclickbidmanager_v1.lineitems.html
+++ b/docs/dyn/doubleclickbidmanager_v1.lineitems.html
@@ -75,52 +75,68 @@
<h1><a href="doubleclickbidmanager_v1.html">DoubleClick Bid Manager API</a> . <a href="doubleclickbidmanager_v1.lineitems.html">lineitems</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#downloadlineitems">downloadlineitems(body=None)</a></code></p>
-<p class="firstline">Retrieves line items in CSV format. TrueView line items are not supported.</p>
+ <code><a href="#close">close()</a></code></p>
+<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
- <code><a href="#uploadlineitems">uploadlineitems(body=None)</a></code></p>
-<p class="firstline">Uploads line items in CSV format. TrueView line items are not supported.</p>
+ <code><a href="#downloadlineitems">downloadlineitems(body=None, x__xgafv=None)</a></code></p>
+<p class="firstline">Retrieves line items in CSV format. YouTube & partners line items are not supported.</p>
+<p class="toc_element">
+ <code><a href="#uploadlineitems">uploadlineitems(body=None, x__xgafv=None)</a></code></p>
+<p class="firstline">Uploads line items in CSV format. YouTube & partners line items are not supported.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="downloadlineitems">downloadlineitems(body=None)</code>
- <pre>Retrieves line items in CSV format. TrueView line items are not supported.
+ <code class="details" id="close">close()</code>
+ <pre>Close httplib2 connections.</pre>
+</div>
+
+<div class="method">
+ <code class="details" id="downloadlineitems">downloadlineitems(body=None, x__xgafv=None)</code>
+ <pre>Retrieves line items in CSV format. YouTube & partners line items are not supported.
Args:
body: object, The request body.
The object takes the form of:
{ # Request to fetch stored line items.
+ "filterType": "A String", # Filter type used to filter line items to fetch.
"fileSpec": "A String", # File specification (column names, types, order) in which the line items will be returned. Default to EWF.
+ "format": "A String", # Format in which the line items will be returned. Default to CSV.
"filterIds": [ # Ids of the specified filter type used to filter line items to fetch. If omitted, all the line items will be returned.
"A String",
],
- "filterType": "A String", # Filter type used to filter line items to fetch.
- "format": "A String", # Format in which the line items will be returned. Default to CSV.
}
+ x__xgafv: string, V1 error format.
+ Allowed values
+ 1 - v1 error format
+ 2 - v2 error format
Returns:
An object of the form:
{ # Download line items response.
- "lineItems": "A String", # Retrieved line items in CSV format. For more information about file formats, see Entity Write File Format.
+ "lineItems": "A String", # Retrieved line items in CSV format. For more information about file formats, see Entity Write File Format.
}</pre>
</div>
<div class="method">
- <code class="details" id="uploadlineitems">uploadlineitems(body=None)</code>
- <pre>Uploads line items in CSV format. TrueView line items are not supported.
+ <code class="details" id="uploadlineitems">uploadlineitems(body=None, x__xgafv=None)</code>
+ <pre>Uploads line items in CSV format. YouTube & partners line items are not supported.
Args:
body: object, The request body.
The object takes the form of:
{ # Request to upload line items.
+ "lineItems": "A String", # Line items in CSV to upload. Refer to Entity Write File Format for more information on file format.
"dryRun": True or False, # Set to true to get upload status without actually persisting the line items.
"format": "A String", # Format the line items are in. Default to CSV.
- "lineItems": "A String", # Line items in CSV to upload. Refer to Entity Write File Format for more information on file format.
}
+ x__xgafv: string, V1 error format.
+ Allowed values
+ 1 - v1 error format
+ 2 - v2 error format
Returns:
An object of the form:
@@ -132,14 +148,14 @@
],
"rowStatus": [ # Per-row upload status.
{ # Represents the upload status of a row in the request.
- "changed": True or False, # Whether the stored entity is changed as a result of upload.
"entityId": "A String", # Entity Id.
+ "persisted": True or False, # Whether the entity is persisted.
+ "changed": True or False, # Whether the stored entity is changed as a result of upload.
"entityName": "A String", # Entity name.
+ "rowNumber": 42, # Row number.
"errors": [ # Reasons why the entity can't be uploaded.
"A String",
],
- "persisted": True or False, # Whether the entity is persisted.
- "rowNumber": 42, # Row number.
},
],
},