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.
+ "destinationSpreadsheetId": "A String", # 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.
+ "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.
+ # 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.
+ "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.
- "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.
+ "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.
+ "rowCount": 42, # The number of rows in the grid.
+ "frozenRowCount": 42, # The number of rows that are frozen in the grid.
+ "columnCount": 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.
+ "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
- # 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 "java.awt.Color" in Java; it
+ # can also be trivially provided to UIColor's "+colorWithRed:green:blue:alpha"
# 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 "rgba()" 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 (!('alpha' 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(',');
+ # return ['rgba(', rgbParams, ',', alphaFrac, ')'].join('');
# };
#
# var rgbToCssColor_ = function(red, green, blue) {
# var rgbNumber = new Number((red << 16) | (green << 8) | blue);
# var hexString = rgbNumber.toString(16);
# var missingZeros = 6 - hexString.length;
- # var resultBuilder = ['#'];
+ # var resultBuilder = ['#'];
# for (var i = 0; i < missingZeros; i++) {
- # resultBuilder.push('0');
+ # resultBuilder.push('0');
# }
# resultBuilder.push(hexString);
- # return resultBuilder.join('');
+ # return resultBuilder.join('');
# };
#
# // ...
- "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,
+ "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:
#
# 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].
+ "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].
},
- "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.
+ "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.
- "rgbColor": { # Represents a color in the RGBA color space. This representation is designed # RGB color.
+ "themeColor": "A String", # Theme color.
+ "rgbColor": { # 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 "java.awt.Color" in Java; it
+ # can also be trivially provided to UIColor's "+colorWithRed:green:blue:alpha"
# 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 "rgba()" 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 (!('alpha' 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(',');
+ # return ['rgba(', rgbParams, ',', alphaFrac, ')'].join('');
# };
#
# var rgbToCssColor_ = function(red, green, blue) {
# var rgbNumber = new Number((red << 16) | (green << 8) | blue);
# var hexString = rgbNumber.toString(16);
# var missingZeros = 6 - hexString.length;
- # var resultBuilder = ['#'];
+ # var resultBuilder = ['#'];
# for (var i = 0; i < missingZeros; i++) {
- # resultBuilder.push('0');
+ # resultBuilder.push('0');
# }
# resultBuilder.push(hexString);
- # return resultBuilder.join('');
+ # return resultBuilder.join('');
# };
#
# // ...
- "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,
+ "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:
#
# 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].
+ "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].
},
},
- "sheetId": 42, # The ID of the sheet. Must be non-negative.
+ "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.
}</pre>
</div>