Skip to content

Commit a045b37

Browse files
1 parent 8ee7043 commit a045b37

File tree

3 files changed

+31
-29
lines changed

3 files changed

+31
-29
lines changed

src/Sheets.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*
2828
* <p>
2929
* For more information about this service, see the API
30-
* <a href="https://developers.google.com/sheets/" target="_blank">Documentation</a>
30+
* <a href="https://developers.google.com/workspace/sheets/" target="_blank">Documentation</a>
3131
* </p>
3232
*
3333
* @author Google, Inc.

src/Sheets/Resource/Spreadsheets.php

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,20 @@ public function create(Spreadsheet $postBody, $optParams = [])
7777
* Returns the spreadsheet at the given ID. The caller must specify the
7878
* spreadsheet ID. By default, data within grids is not returned. You can
7979
* include grid data in one of 2 ways: * Specify a [field
80-
* mask](https://developers.google.com/sheets/api/guides/field-masks) listing
81-
* your desired fields using the `fields` URL parameter in HTTP * Set the
82-
* includeGridData URL parameter to true. If a field mask is set, the
80+
* mask](https://developers.google.com/workspace/sheets/api/guides/field-masks)
81+
* listing your desired fields using the `fields` URL parameter in HTTP * Set
82+
* the includeGridData URL parameter to true. If a field mask is set, the
8383
* `includeGridData` parameter is ignored For large spreadsheets, as a best
8484
* practice, retrieve only the specific spreadsheet fields that you want. To
8585
* retrieve only subsets of spreadsheet data, use the ranges URL parameter.
86-
* Ranges are specified using [A1 notation](/sheets/api/guides/concepts#cell).
87-
* You can define a single cell (for example, `A1`) or multiple cells (for
88-
* example, `A1:D5`). You can also get cells from other sheets within the same
89-
* spreadsheet (for example, `Sheet2!A1:C4`) or retrieve multiple ranges at once
90-
* (for example, `?ranges=A1:D5&ranges=Sheet2!A1:C4`). Limiting the range
91-
* returns only the portions of the spreadsheet that intersect the requested
92-
* ranges. (spreadsheets.get)
86+
* Ranges are specified using [A1 notation](https://developers.google.com/worksp
87+
* ace/sheets/api/guides/concepts#cell). You can define a single cell (for
88+
* example, `A1`) or multiple cells (for example, `A1:D5`). You can also get
89+
* cells from other sheets within the same spreadsheet (for example,
90+
* `Sheet2!A1:C4`) or retrieve multiple ranges at once (for example,
91+
* `?ranges=A1:D5&ranges=Sheet2!A1:C4`). Limiting the range returns only the
92+
* portions of the spreadsheet that intersect the requested ranges.
93+
* (spreadsheets.get)
9394
*
9495
* @param string $spreadsheetId The spreadsheet to request.
9596
* @param array $optParams Optional parameters.
@@ -114,9 +115,9 @@ public function get($spreadsheetId, $optParams = [])
114115
* or more data filters returns the portions of the spreadsheet that intersect
115116
* ranges matched by any of the filters. By default, data within grids is not
116117
* returned. You can include grid data one of 2 ways: * Specify a [field
117-
* mask](https://developers.google.com/sheets/api/guides/field-masks) listing
118-
* your desired fields using the `fields` URL parameter in HTTP * Set the
119-
* includeGridData parameter to true. If a field mask is set, the
118+
* mask](https://developers.google.com/workspace/sheets/api/guides/field-masks)
119+
* listing your desired fields using the `fields` URL parameter in HTTP * Set
120+
* the includeGridData parameter to true. If a field mask is set, the
120121
* `includeGridData` parameter is ignored For large spreadsheets, as a best
121122
* practice, retrieve only the specific spreadsheet fields that you want.
122123
* (spreadsheets.getByDataFilter)

src/Sheets/Resource/SpreadsheetsValues.php

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,19 @@ class SpreadsheetsValues extends \Google\Service\Resource
4848
* Appends values to a spreadsheet. The input range is used to search for
4949
* existing data and find a "table" within that range. Values will be appended
5050
* to the next row of the table, starting with the first column of the table.
51-
* See the [guide](/sheets/api/guides/values#appending_values) and [sample
52-
* code](/sheets/api/samples/writing#append_values) for specific details of how
51+
* See the [guide](https://developers.google.com/workspace/sheets/api/guides/val
52+
* ues#appending_values) and [sample code](https://developers.google.com/workspa
53+
* ce/sheets/api/samples/writing#append_values) for specific details of how
5354
* tables are detected and data is appended. The caller must specify the
5455
* spreadsheet ID, range, and a valueInputOption. The `valueInputOption` only
5556
* controls how the input data will be added to the sheet (column-wise or row-
5657
* wise), it does not influence what cell the data starts being written to.
5758
* (values.append)
5859
*
5960
* @param string $spreadsheetId The ID of the spreadsheet to update.
60-
* @param string $range The [A1 notation](/sheets/api/guides/concepts#cell) of a
61-
* range to search for a logical table of data. Values are appended after the
62-
* last row of the table.
61+
* @param string $range The [A1 notation](https://developers.google.com/workspac
62+
* e/sheets/api/guides/concepts#cell) of a range to search for a logical table
63+
* of data. Values are appended after the last row of the table.
6364
* @param ValueRange $postBody
6465
* @param array $optParams Optional parameters.
6566
*
@@ -135,9 +136,9 @@ public function batchClearByDataFilter($spreadsheetId, BatchClearValuesByDataFil
135136
* requesting `ranges=["A1:B2"],majorDimension=ROWS` returns `[[1,2],[3,4]]`,
136137
* whereas requesting `ranges=["A1:B2"],majorDimension=COLUMNS` returns
137138
* `[[1,3],[2,4]]`.
138-
* @opt_param string ranges The [A1 notation or R1C1
139-
* notation](/sheets/api/guides/concepts#cell) of the range to retrieve values
140-
* from.
139+
* @opt_param string ranges The [A1 notation or R1C1 notation](https://developer
140+
* s.google.com/workspace/sheets/api/guides/concepts#cell) of the range to
141+
* retrieve values from.
141142
* @opt_param string valueRenderOption How values should be represented in the
142143
* output. The default render option is ValueRenderOption.FORMATTED_VALUE.
143144
* @return BatchGetValuesResponse
@@ -207,8 +208,8 @@ public function batchUpdateByDataFilter($spreadsheetId, BatchUpdateValuesByDataF
207208
* as formatting, data validation, etc..) are kept. (values.clear)
208209
*
209210
* @param string $spreadsheetId The ID of the spreadsheet to update.
210-
* @param string $range The [A1 notation or R1C1
211-
* notation](/sheets/api/guides/concepts#cell) of the values to clear.
211+
* @param string $range The [A1 notation or R1C1 notation](https://developers.go
212+
* ogle.com/workspace/sheets/api/guides/concepts#cell) of the values to clear.
212213
* @param ClearValuesRequest $postBody
213214
* @param array $optParams Optional parameters.
214215
* @return ClearValuesResponse
@@ -225,9 +226,9 @@ public function clear($spreadsheetId, $range, ClearValuesRequest $postBody, $opt
225226
* spreadsheet ID and a range. (values.get)
226227
*
227228
* @param string $spreadsheetId The ID of the spreadsheet to retrieve data from.
228-
* @param string $range The [A1 notation or R1C1
229-
* notation](/sheets/api/guides/concepts#cell) of the range to retrieve values
230-
* from.
229+
* @param string $range The [A1 notation or R1C1 notation](https://developers.go
230+
* ogle.com/workspace/sheets/api/guides/concepts#cell) of the range to retrieve
231+
* values from.
231232
* @param array $optParams Optional parameters.
232233
*
233234
* @opt_param string dateTimeRenderOption How dates, times, and durations should
@@ -254,8 +255,8 @@ public function get($spreadsheetId, $range, $optParams = [])
254255
* spreadsheet ID, range, and a valueInputOption. (values.update)
255256
*
256257
* @param string $spreadsheetId The ID of the spreadsheet to update.
257-
* @param string $range The [A1 notation](/sheets/api/guides/concepts#cell) of
258-
* the values to update.
258+
* @param string $range The [A1 notation](https://developers.google.com/workspac
259+
* e/sheets/api/guides/concepts#cell) of the values to update.
259260
* @param ValueRange $postBody
260261
* @param array $optParams Optional parameters.
261262
*

0 commit comments

Comments
 (0)