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/sheets_v4.spreadsheets.sheets.html b/docs/dyn/sheets_v4.spreadsheets.sheets.html
index dc01d7f..a6878bb 100644
--- a/docs/dyn/sheets_v4.spreadsheets.sheets.html
+++ b/docs/dyn/sheets_v4.spreadsheets.sheets.html
@@ -90,7 +90,7 @@
     The object takes the form of:
 
 { # The request to copy a sheet across spreadsheets.
-    "destinationSpreadsheetId": "A String", # The ID of the spreadsheet to copy the sheet to.
+    &quot;destinationSpreadsheetId&quot;: &quot;A String&quot;, # The ID of the spreadsheet to copy the sheet to.
   }
 
   x__xgafv: string, V1 error format.
@@ -102,39 +102,38 @@
   An object of the form:
 
     { # Properties of a sheet.
-    "sheetType": "A String", # The type of sheet. Defaults to GRID.
-        # This field cannot be changed once set.
-    "index": 42, # The index of the sheet within the spreadsheet.
+    &quot;index&quot;: 42, # The index of the sheet within the spreadsheet.
         # When adding or updating sheet properties, if this field
         # is excluded then the sheet is added or moved to the end
         # of the sheet list. When updating sheet indices or inserting
-        # sheets, movement is considered in "before the move" indexes.
+        # sheets, movement is considered in &quot;before the move&quot; indexes.
         # For example, if there were 3 sheets (S1, S2, S3) in order to
         # move S1 ahead of S2 the index would have to be set to 2. A sheet
         # index update request is ignored if the requested index is
         # identical to the sheets current index or if the requested new
         # index is equal to the current sheet index + 1.
-    "title": "A String", # The name of the sheet.
-    "gridProperties": { # Properties of a grid. # Additional properties of the sheet if this sheet is a grid.
+    &quot;title&quot;: &quot;A String&quot;, # The name of the sheet.
+    &quot;gridProperties&quot;: { # Properties of a grid. # Additional properties of the sheet if this sheet is a grid.
         # (If the sheet is an object sheet, containing a chart or image, then
         # this field will be absent.)
         # When writing it is an error to set any grid properties on non-grid sheets.
-      "columnCount": 42, # The number of columns in the grid.
-      "rowGroupControlAfter": True or False, # True if the row grouping control toggle is shown after the group.
-      "columnGroupControlAfter": True or False, # True if the column grouping control toggle is shown after the group.
-      "frozenRowCount": 42, # The number of rows that are frozen in the grid.
-      "frozenColumnCount": 42, # The number of columns that are frozen in the grid.
-      "rowCount": 42, # The number of rows in the grid.
-      "hideGridlines": True or False, # True if the grid isn't showing gridlines in the UI.
+      &quot;rowGroupControlAfter&quot;: True or False, # True if the row grouping control toggle is shown after the group.
+      &quot;hideGridlines&quot;: True or False, # True if the grid isn&#x27;t showing gridlines in the UI.
+      &quot;frozenColumnCount&quot;: 42, # The number of columns that are frozen in the grid.
+      &quot;columnGroupControlAfter&quot;: True or False, # True if the column grouping control toggle is shown after the group.
+      &quot;rowCount&quot;: 42, # The number of rows in the grid.
+      &quot;frozenRowCount&quot;: 42, # The number of rows that are frozen in the grid.
+      &quot;columnCount&quot;: 42, # The number of columns in the grid.
     },
-    "rightToLeft": True or False, # True if the sheet is an RTL sheet instead of an LTR sheet.
-    "tabColor": { # Represents a color in the RGBA color space. This representation is designed # The color of the tab in the UI.
+    &quot;sheetId&quot;: 42, # The ID of the sheet. Must be non-negative.
+        # This field cannot be changed once set.
+    &quot;tabColor&quot;: { # Represents a color in the RGBA color space. This representation is designed # The color of the tab in the UI.
         # for simplicity of conversion to/from color representations in various
         # languages over compactness; for example, the fields of this representation
-        # can be trivially provided to the constructor of "java.awt.Color" in Java; it
-        # can also be trivially provided to UIColor's "+colorWithRed:green:blue:alpha"
+        # can be trivially provided to the constructor of &quot;java.awt.Color&quot; in Java; it
+        # can also be trivially provided to UIColor&#x27;s &quot;+colorWithRed:green:blue:alpha&quot;
         # method in iOS; and, with just a little work, it can be easily formatted into
-        # a CSS "rgba()" string in JavaScript, as well.
+        # a CSS &quot;rgba()&quot; string in JavaScript, as well.
         #
         # Note: this proto does not carry information about the absolute color space
         # that should be used to interpret the RGB value (e.g. sRGB, Adobe RGB,
@@ -225,30 +224,29 @@
         #        var green = Math.floor(greenFrac * 255);
         #        var blue = Math.floor(blueFrac * 255);
         #
-        #        if (!('alpha' in rgb_color)) {
+        #        if (!(&#x27;alpha&#x27; in rgb_color)) {
         #           return rgbToCssColor_(red, green, blue);
         #        }
         #
         #        var alphaFrac = rgb_color.alpha.value || 0.0;
-        #        var rgbParams = [red, green, blue].join(',');
-        #        return ['rgba(', rgbParams, ',', alphaFrac, ')'].join('');
+        #        var rgbParams = [red, green, blue].join(&#x27;,&#x27;);
+        #        return [&#x27;rgba(&#x27;, rgbParams, &#x27;,&#x27;, alphaFrac, &#x27;)&#x27;].join(&#x27;&#x27;);
         #     };
         #
         #     var rgbToCssColor_ = function(red, green, blue) {
         #       var rgbNumber = new Number((red &lt;&lt; 16) | (green &lt;&lt; 8) | blue);
         #       var hexString = rgbNumber.toString(16);
         #       var missingZeros = 6 - hexString.length;
-        #       var resultBuilder = ['#'];
+        #       var resultBuilder = [&#x27;#&#x27;];
         #       for (var i = 0; i &lt; missingZeros; i++) {
-        #          resultBuilder.push('0');
+        #          resultBuilder.push(&#x27;0&#x27;);
         #       }
         #       resultBuilder.push(hexString);
-        #       return resultBuilder.join('');
+        #       return resultBuilder.join(&#x27;&#x27;);
         #     };
         #
         #     // ...
-      "blue": 3.14, # The amount of blue in the color as a value in the interval [0, 1].
-      "alpha": 3.14, # The fraction of this color that should be applied to the pixel. That is,
+      &quot;alpha&quot;: 3.14, # The fraction of this color that should be applied to the pixel. That is,
           # the final pixel color is defined by the equation:
           #
           #   pixel color = alpha * (this color) + (1.0 - alpha) * (background color)
@@ -259,20 +257,21 @@
           # possible to distinguish between a default value and the value being unset.
           # If omitted, this color object is to be rendered as a solid color
           # (as if the alpha value had been explicitly given with a value of 1.0).
-      "green": 3.14, # The amount of green in the color as a value in the interval [0, 1].
-      "red": 3.14, # The amount of red in the color as a value in the interval [0, 1].
+      &quot;red&quot;: 3.14, # The amount of red in the color as a value in the interval [0, 1].
+      &quot;green&quot;: 3.14, # The amount of green in the color as a value in the interval [0, 1].
+      &quot;blue&quot;: 3.14, # The amount of blue in the color as a value in the interval [0, 1].
     },
-    "hidden": True or False, # True if the sheet is hidden in the UI, false if it's visible.
-    "tabColorStyle": { # A color value. # The color of the tab in the UI.
+    &quot;rightToLeft&quot;: True or False, # True if the sheet is an RTL sheet instead of an LTR sheet.
+    &quot;tabColorStyle&quot;: { # A color value. # The color of the tab in the UI.
         # If tab_color is also set, this field takes precedence.
-      "themeColor": "A String", # Theme color.
-      "rgbColor": { # Represents a color in the RGBA color space. This representation is designed # RGB color.
+      &quot;themeColor&quot;: &quot;A String&quot;, # Theme color.
+      &quot;rgbColor&quot;: { # Represents a color in the RGBA color space. This representation is designed # RGB color.
           # for simplicity of conversion to/from color representations in various
           # languages over compactness; for example, the fields of this representation
-          # can be trivially provided to the constructor of "java.awt.Color" in Java; it
-          # can also be trivially provided to UIColor's "+colorWithRed:green:blue:alpha"
+          # can be trivially provided to the constructor of &quot;java.awt.Color&quot; in Java; it
+          # can also be trivially provided to UIColor&#x27;s &quot;+colorWithRed:green:blue:alpha&quot;
           # method in iOS; and, with just a little work, it can be easily formatted into
-          # a CSS "rgba()" string in JavaScript, as well.
+          # a CSS &quot;rgba()&quot; string in JavaScript, as well.
           #
           # Note: this proto does not carry information about the absolute color space
           # that should be used to interpret the RGB value (e.g. sRGB, Adobe RGB,
@@ -363,30 +362,29 @@
           #        var green = Math.floor(greenFrac * 255);
           #        var blue = Math.floor(blueFrac * 255);
           #
-          #        if (!('alpha' in rgb_color)) {
+          #        if (!(&#x27;alpha&#x27; in rgb_color)) {
           #           return rgbToCssColor_(red, green, blue);
           #        }
           #
           #        var alphaFrac = rgb_color.alpha.value || 0.0;
-          #        var rgbParams = [red, green, blue].join(',');
-          #        return ['rgba(', rgbParams, ',', alphaFrac, ')'].join('');
+          #        var rgbParams = [red, green, blue].join(&#x27;,&#x27;);
+          #        return [&#x27;rgba(&#x27;, rgbParams, &#x27;,&#x27;, alphaFrac, &#x27;)&#x27;].join(&#x27;&#x27;);
           #     };
           #
           #     var rgbToCssColor_ = function(red, green, blue) {
           #       var rgbNumber = new Number((red &lt;&lt; 16) | (green &lt;&lt; 8) | blue);
           #       var hexString = rgbNumber.toString(16);
           #       var missingZeros = 6 - hexString.length;
-          #       var resultBuilder = ['#'];
+          #       var resultBuilder = [&#x27;#&#x27;];
           #       for (var i = 0; i &lt; missingZeros; i++) {
-          #          resultBuilder.push('0');
+          #          resultBuilder.push(&#x27;0&#x27;);
           #       }
           #       resultBuilder.push(hexString);
-          #       return resultBuilder.join('');
+          #       return resultBuilder.join(&#x27;&#x27;);
           #     };
           #
           #     // ...
-        "blue": 3.14, # The amount of blue in the color as a value in the interval [0, 1].
-        "alpha": 3.14, # The fraction of this color that should be applied to the pixel. That is,
+        &quot;alpha&quot;: 3.14, # The fraction of this color that should be applied to the pixel. That is,
             # the final pixel color is defined by the equation:
             #
             #   pixel color = alpha * (this color) + (1.0 - alpha) * (background color)
@@ -397,11 +395,13 @@
             # possible to distinguish between a default value and the value being unset.
             # If omitted, this color object is to be rendered as a solid color
             # (as if the alpha value had been explicitly given with a value of 1.0).
-        "green": 3.14, # The amount of green in the color as a value in the interval [0, 1].
-        "red": 3.14, # The amount of red in the color as a value in the interval [0, 1].
+        &quot;red&quot;: 3.14, # The amount of red in the color as a value in the interval [0, 1].
+        &quot;green&quot;: 3.14, # The amount of green in the color as a value in the interval [0, 1].
+        &quot;blue&quot;: 3.14, # The amount of blue in the color as a value in the interval [0, 1].
       },
     },
-    "sheetId": 42, # The ID of the sheet. Must be non-negative.
+    &quot;hidden&quot;: True or False, # True if the sheet is hidden in the UI, false if it&#x27;s visible.
+    &quot;sheetType&quot;: &quot;A String&quot;, # The type of sheet. Defaults to GRID.
         # This field cannot be changed once set.
   }</pre>
 </div>