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 &amp; partners line items are not supported.
 
 Args:
   body: object, The request body.
     The object takes the form of:
 
 { # Request to fetch stored line items.
+    &quot;filterType&quot;: &quot;A String&quot;, # Filter type used to filter line items to fetch.
     &quot;fileSpec&quot;: &quot;A String&quot;, # File specification (column names, types, order) in which the line items will be returned. Default to EWF.
+    &quot;format&quot;: &quot;A String&quot;, # Format in which the line items will be returned. Default to CSV.
     &quot;filterIds&quot;: [ # Ids of the specified filter type used to filter line items to fetch. If omitted, all the line items will be returned.
       &quot;A String&quot;,
     ],
-    &quot;filterType&quot;: &quot;A String&quot;, # Filter type used to filter line items to fetch.
-    &quot;format&quot;: &quot;A String&quot;, # 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.
-    &quot;lineItems&quot;: &quot;A String&quot;, # Retrieved line items in CSV format. For more information about file formats, see  Entity Write File Format.
+    &quot;lineItems&quot;: &quot;A String&quot;, # 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 &amp; partners line items are not supported.
 
 Args:
   body: object, The request body.
     The object takes the form of:
 
 { # Request to upload line items.
+    &quot;lineItems&quot;: &quot;A String&quot;, # Line items in CSV to upload. Refer to Entity Write File Format for more information on file format.
     &quot;dryRun&quot;: True or False, # Set to true to get upload status without actually persisting the line items.
     &quot;format&quot;: &quot;A String&quot;, # Format the line items are in. Default to CSV.
-    &quot;lineItems&quot;: &quot;A String&quot;, # 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 @@
       ],
       &quot;rowStatus&quot;: [ # Per-row upload status.
         { # Represents the upload status of a row in the request.
-          &quot;changed&quot;: True or False, # Whether the stored entity is changed as a result of upload.
           &quot;entityId&quot;: &quot;A String&quot;, # Entity Id.
+          &quot;persisted&quot;: True or False, # Whether the entity is persisted.
+          &quot;changed&quot;: True or False, # Whether the stored entity is changed as a result of upload.
           &quot;entityName&quot;: &quot;A String&quot;, # Entity name.
+          &quot;rowNumber&quot;: 42, # Row number.
           &quot;errors&quot;: [ # Reasons why the entity can&#x27;t be uploaded.
             &quot;A String&quot;,
           ],
-          &quot;persisted&quot;: True or False, # Whether the entity is persisted.
-          &quot;rowNumber&quot;: 42, # Row number.
         },
       ],
     },