docs: docs update (#911)

Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)

Fixes #<issue_number_goes_here> 🦕
diff --git a/docs/dyn/analytics_v3.metadata.columns.html b/docs/dyn/analytics_v3.metadata.columns.html
index 4f94bcc..6c2cbb8 100644
--- a/docs/dyn/analytics_v3.metadata.columns.html
+++ b/docs/dyn/analytics_v3.metadata.columns.html
@@ -83,27 +83,27 @@
   <pre>Lists all columns for a report type
 
 Args:
-  reportType: string, Report type. Allowed Values: 'ga'. Where 'ga' corresponds to the Core Reporting API (required)
+  reportType: string, Report type. Allowed Values: &#x27;ga&#x27;. Where &#x27;ga&#x27; corresponds to the Core Reporting API (required)
 
 Returns:
   An object of the form:
 
     { # Lists columns (dimensions and metrics) for a particular report type.
-    "items": [ # List of columns for a report type.
+    &quot;kind&quot;: &quot;analytics#columns&quot;, # Collection type.
+    &quot;totalResults&quot;: 42, # Total number of columns returned in the response.
+    &quot;attributeNames&quot;: [ # List of attributes names returned by columns.
+      &quot;A String&quot;,
+    ],
+    &quot;items&quot;: [ # List of columns for a report type.
       { # JSON template for a metadata column.
-        "attributes": { # Map of attribute name and value for this column.
-          "a_key": "A String", # The name of the attribute.
+        &quot;kind&quot;: &quot;analytics#column&quot;, # Resource type for Analytics column.
+        &quot;attributes&quot;: { # Map of attribute name and value for this column.
+          &quot;a_key&quot;: &quot;A String&quot;, # The name of the attribute.
         },
-        "kind": "analytics#column", # Resource type for Analytics column.
-        "id": "A String", # Column id.
+        &quot;id&quot;: &quot;A String&quot;, # Column id.
       },
     ],
-    "kind": "analytics#columns", # Collection type.
-    "etag": "A String", # Etag of collection. This etag can be compared with the last response etag to check if response has changed.
-    "totalResults": 42, # Total number of columns returned in the response.
-    "attributeNames": [ # List of attributes names returned by columns.
-      "A String",
-    ],
+    &quot;etag&quot;: &quot;A String&quot;, # Etag of collection. This etag can be compared with the last response etag to check if response has changed.
   }</pre>
 </div>