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/cloudtrace_v1.projects.html b/docs/dyn/cloudtrace_v1.projects.html
index b16b239..401cb16 100644
--- a/docs/dyn/cloudtrace_v1.projects.html
+++ b/docs/dyn/cloudtrace_v1.projects.html
@@ -99,31 +99,23 @@
     The object takes the form of:
 
 { # List of new or updated traces.
-    "traces": [ # List of traces.
+    &quot;traces&quot;: [ # List of traces.
       { # A trace describes how long it takes for an application to perform an
           # operation. It consists of a set of spans, each of which represent a single
           # timed event within the operation.
-        "projectId": "A String", # Project ID of the Cloud project where the trace data is stored.
-        "traceId": "A String", # Globally unique identifier for the trace. This identifier is a 128-bit
-            # numeric value formatted as a 32-byte hex string. For example,
-            # `382d4f4c6b7bb2f4a972559d9085001d`.
-        "spans": [ # Collection of spans in the trace.
+        &quot;projectId&quot;: &quot;A String&quot;, # Project ID of the Cloud project where the trace data is stored.
+        &quot;spans&quot;: [ # Collection of spans in the trace.
           { # A span represents a single timed event within a trace. Spans can be nested
               # and form a trace tree. Often, a trace contains a root span that describes the
               # end-to-end latency of an operation and, optionally, one or more subspans for
               # its suboperations. Spans do not need to be contiguous. There may be gaps
               # between spans in a trace.
-            "kind": "A String", # Distinguishes between spans generated in a particular context. For example,
+            &quot;endTime&quot;: &quot;A String&quot;, # End time of the span in nanoseconds from the UNIX epoch.
+            &quot;startTime&quot;: &quot;A String&quot;, # Start time of the span in nanoseconds from the UNIX epoch.
+            &quot;kind&quot;: &quot;A String&quot;, # Distinguishes between spans generated in a particular context. For example,
                 # two spans with the same name may be distinguished using `RPC_CLIENT`
                 # and `RPC_SERVER` to identify queueing latency associated with the span.
-            "name": "A String", # Name of the span. Must be less than 128 bytes. The span name is sanitized
-                # and displayed in the Stackdriver Trace tool in the
-                # Google Cloud Platform Console.
-                # The name may be a method name or some other per-call site name.
-                # For the same executable and the same call point, a best practice is
-                # to use a consistent name, which makes it easier to correlate
-                # cross-trace spans.
-            "labels": { # Collection of labels associated with the span. Label keys must be less than
+            &quot;labels&quot;: { # Collection of labels associated with the span. Label keys must be less than
                 # 128 bytes. Label values must be less than 16 kilobytes (10MB for
                 # `/stacktrace` values).
                 #
@@ -158,15 +150,23 @@
                 # *   `/pid`
                 # *   `/stacktrace`
                 # *   `/tid`
-              "a_key": "A String",
+              &quot;a_key&quot;: &quot;A String&quot;,
             },
-            "parentSpanId": "A String", # Optional. ID of the parent span, if any.
-            "startTime": "A String", # Start time of the span in nanoseconds from the UNIX epoch.
-            "spanId": "A String", # Identifier for the span. Must be a 64-bit integer other than 0 and
+            &quot;name&quot;: &quot;A String&quot;, # Name of the span. Must be less than 128 bytes. The span name is sanitized
+                # and displayed in the Stackdriver Trace tool in the
+                # Google Cloud Platform Console.
+                # The name may be a method name or some other per-call site name.
+                # For the same executable and the same call point, a best practice is
+                # to use a consistent name, which makes it easier to correlate
+                # cross-trace spans.
+            &quot;spanId&quot;: &quot;A String&quot;, # Identifier for the span. Must be a 64-bit integer other than 0 and
                 # unique within a trace. For example, `2205310701640571284`.
-            "endTime": "A String", # End time of the span in nanoseconds from the UNIX epoch.
+            &quot;parentSpanId&quot;: &quot;A String&quot;, # Optional. ID of the parent span, if any.
           },
         ],
+        &quot;traceId&quot;: &quot;A String&quot;, # Globally unique identifier for the trace. This identifier is a 128-bit
+            # numeric value formatted as a 32-byte hex string. For example,
+            # `382d4f4c6b7bb2f4a972559d9085001d`.
       },
     ],
   }