docs: update generated docs (#981)
diff --git a/docs/dyn/sheets_v4.spreadsheets.sheets.html b/docs/dyn/sheets_v4.spreadsheets.sheets.html
index 0d74ded..cff3c45 100644
--- a/docs/dyn/sheets_v4.spreadsheets.sheets.html
+++ b/docs/dyn/sheets_v4.spreadsheets.sheets.html
@@ -102,29 +102,9 @@
An object of the form:
{ # Properties of a sheet.
- "index": 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.
- # 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.
- # (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.
- "rowCount": 42, # The number of rows in the grid.
- "columnCount": 42, # The number of columns in the grid.
- "frozenRowCount": 42, # The number of rows that are frozen in the grid.
- "rowGroupControlAfter": True or False, # True if the row grouping control toggle is shown after the group.
- "hideGridlines": True or False, # True if the grid isn't showing gridlines in the UI.
- "frozenColumnCount": 42, # The number of columns that are frozen in the grid.
- "columnGroupControlAfter": True or False, # True if the column grouping control toggle is shown after the group.
- },
+ "hidden": True or False, # True if the sheet is hidden in the UI, false if it's visible.
+ "sheetId": 42, # The ID of the sheet. Must be non-negative.
+ # This field cannot be changed once set.
"tabColor": { # 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
@@ -138,6 +118,10 @@
# DCI-P3, BT.2020, etc.). By default, applications SHOULD assume the sRGB color
# space.
#
+ # Note: when color equality needs to be decided, implementations, unless
+ # documented otherwise, will treat two colors to be equal if all their red,
+ # green, blue and alpha values each differ by at most 1e-5.
+ #
# Example (Java):
#
# import com.google.type.Color;
@@ -244,9 +228,9 @@
# };
#
# // ...
- "red": 3.14, # The amount of red in the color as a value in the interval [0, 1].
"green": 3.14, # The amount of green in the color as a value in the interval [0, 1].
"blue": 3.14, # The amount of blue 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].
"alpha": 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:
#
@@ -259,9 +243,6 @@
# 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).
},
- "sheetId": 42, # The ID of the sheet. Must be non-negative.
- # This field cannot be changed once set.
- "rightToLeft": True or False, # True if the sheet is an RTL sheet instead of an LTR sheet.
"tabColorStyle": { # 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.
@@ -278,6 +259,10 @@
# DCI-P3, BT.2020, etc.). By default, applications SHOULD assume the sRGB color
# space.
#
+ # Note: when color equality needs to be decided, implementations, unless
+ # documented otherwise, will treat two colors to be equal if all their red,
+ # green, blue and alpha values each differ by at most 1e-5.
+ #
# Example (Java):
#
# import com.google.type.Color;
@@ -384,9 +369,9 @@
# };
#
# // ...
- "red": 3.14, # The amount of red in the color as a value in the interval [0, 1].
"green": 3.14, # The amount of green in the color as a value in the interval [0, 1].
"blue": 3.14, # The amount of blue 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].
"alpha": 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:
#
@@ -400,9 +385,32 @@
# (as if the alpha value had been explicitly given with a value of 1.0).
},
},
- "hidden": True or False, # True if the sheet is hidden in the UI, false if it's visible.
"sheetType": "A String", # The type of sheet. Defaults to GRID.
# This field cannot be changed once set.
+ "rightToLeft": True or False, # True if the sheet is an RTL sheet instead of an LTR sheet.
+ "index": 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.
+ # 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.
+ "gridProperties": { # 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.
+ "hideGridlines": True or False, # True if the grid isn't showing gridlines in the UI.
+ "columnCount": 42, # The number of columns in the grid.
+ "frozenColumnCount": 42, # The number of columns that are frozen in the grid.
+ "rowCount": 42, # The number of rows in the grid.
+ "rowGroupControlAfter": True or False, # True if the row grouping control toggle is shown after the group.
+ "frozenRowCount": 42, # The number of rows that are frozen in the grid.
+ "columnGroupControlAfter": True or False, # True if the column grouping control toggle is shown after the group.
+ },
+ "title": "A String", # The name of the sheet.
}</pre>
</div>