google-apis-sheets_v4 0.12.0 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3fa037003d3f9a8b0a63436373264ba204b40839f6226b75589d4f186deb7571
4
- data.tar.gz: 27036850cd12fe77ce1d209a05f03a7b33ac4771ba73f9e99dbeb68af81ceb88
3
+ metadata.gz: a951ba01f622fc051c7d62650b5adf382586fea2cf2ce3f3537efc33d5bf8285
4
+ data.tar.gz: d9443b82a4ea9650cf829d26f8a3378d06494c3d4336f2eb00e91774916d8729
5
5
  SHA512:
6
- metadata.gz: ba10bc9a1f6037c73277e38457cc8bcddf6196315f5c885fbb0e47bb3c83265e6782cb419cd2502e8e4f605c4792c908d2b5892738984b1cba053d9aef470fce
7
- data.tar.gz: 5511cc5320481d2b4f2f5512b076eee7065b3c31d06043d81efb2618e1a2e28ab39387e7e2a14667c48ddf4c6a91a7961a7597c798a580fce3540c05bee51753
6
+ metadata.gz: 9bf424219a78b33ab5950c085eb07054e8adb62a3bd3d15de48a4542a8e3e812787d1a207c5fa92c7c09ae5b7bffdfdc69a2dd4e4300f09bfdac269aee6584c0
7
+ data.tar.gz: b3a78ab74bf0e6c72d233d5043dea072b728abf36ebc4c0b6a8e3d08581fc63f5be29947a3b63a263ca83a16cc53e3a50784720809ff3a2546d8431d4aeaaf02
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-sheets_v4
2
2
 
3
+ ### v0.13.0 (2022-04-19)
4
+
5
+ * Regenerated from discovery document revision 20220411
6
+
3
7
  ### v0.12.0 (2022-03-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20220308
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SheetsV4
18
18
  # Version of the google-apis-sheets_v4 gem
19
- GEM_VERSION = "0.12.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220308"
25
+ REVISION = "20220411"
26
26
  end
27
27
  end
28
28
  end
@@ -124,15 +124,19 @@ module Google
124
124
  end
125
125
 
126
126
  # Returns the spreadsheet at the given ID. The caller must specify the
127
- # spreadsheet ID. By default, data within grids will not be returned. You can
128
- # include grid data one of two ways: * Specify a field mask listing your desired
129
- # fields using the `fields` URL parameter in HTTP * Set the includeGridData URL
127
+ # spreadsheet ID. By default, data within grids is not returned. You can include
128
+ # grid data in one of 2 ways: * Specify a field mask listing your desired fields
129
+ # using the `fields` URL parameter in HTTP * Set the includeGridData URL
130
130
  # parameter to true. If a field mask is set, the `includeGridData` parameter is
131
- # ignored For large spreadsheets, it is recommended to retrieve only the
132
- # specific fields of the spreadsheet that you want. To retrieve only subsets of
133
- # the spreadsheet, use the ranges URL parameter. Multiple ranges can be
134
- # specified. Limiting the range will return only the portions of the spreadsheet
135
- # that intersect the requested ranges. Ranges are specified using A1 notation.
131
+ # ignored For large spreadsheets, as a best practice, retrieve only the specific
132
+ # spreadsheet fields that you want. To retrieve only subsets of spreadsheet data,
133
+ # use the ranges URL parameter. Ranges are specified using [A1 notation](/
134
+ # sheets/api/guides/concepts#cell). You can define a single cell (for example, `
135
+ # A1`) or multiple cells (for example, `A1:D5`). You can also get cells from
136
+ # other sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or
137
+ # retrieve multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:
138
+ # C4`). Limiting the range returns only the portions of the spreadsheet that
139
+ # intersect the requested ranges.
136
140
  # @param [String] spreadsheet_id
137
141
  # The spreadsheet to request.
138
142
  # @param [Boolean] include_grid_data
@@ -173,14 +177,13 @@ module Google
173
177
  # spreadsheet ID. This method differs from GetSpreadsheet in that it allows
174
178
  # selecting which subsets of spreadsheet data to return by specifying a
175
179
  # dataFilters parameter. Multiple DataFilters can be specified. Specifying one
176
- # or more data filters will return the portions of the spreadsheet that
177
- # intersect ranges matched by any of the filters. By default, data within grids
178
- # will not be returned. You can include grid data one of two ways: * Specify a
179
- # field mask listing your desired fields using the `fields` URL parameter in
180
- # HTTP * Set the includeGridData parameter to true. If a field mask is set, the `
181
- # includeGridData` parameter is ignored For large spreadsheets, it is
182
- # recommended to retrieve only the specific fields of the spreadsheet that you
183
- # want.
180
+ # or more data filters returns the portions of the spreadsheet that intersect
181
+ # ranges matched by any of the filters. By default, data within grids is not
182
+ # returned. You can include grid data one of 2 ways: * Specify a field mask
183
+ # listing your desired fields using the `fields` URL parameter in HTTP * Set the
184
+ # includeGridData parameter to true. If a field mask is set, the `
185
+ # includeGridData` parameter is ignored For large spreadsheets, as a best
186
+ # practice, retrieve only the specific spreadsheet fields that you want.
184
187
  # @param [String] spreadsheet_id
185
188
  # The spreadsheet to request.
186
189
  # @param [Google::Apis::SheetsV4::GetSpreadsheetByDataFilterRequest] get_spreadsheet_by_data_filter_request_object
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sheets_v4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-21 00:00:00.000000000 Z
11
+ date: 2022-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sheets_v4/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.13.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sheets_v4
63
63
  post_install_message:
64
64
  rdoc_options: []