google-apis-sheets_v4 0.12.0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3fa037003d3f9a8b0a63436373264ba204b40839f6226b75589d4f186deb7571
4
- data.tar.gz: 27036850cd12fe77ce1d209a05f03a7b33ac4771ba73f9e99dbeb68af81ceb88
3
+ metadata.gz: 20c729355c3c19c326dfa64b89a180f1066667f702d296b8490d40889762de94
4
+ data.tar.gz: 4393f67aee93918876ef91515729c08d4dddf67089f5c030e4a244a0e743999d
5
5
  SHA512:
6
- metadata.gz: ba10bc9a1f6037c73277e38457cc8bcddf6196315f5c885fbb0e47bb3c83265e6782cb419cd2502e8e4f605c4792c908d2b5892738984b1cba053d9aef470fce
7
- data.tar.gz: 5511cc5320481d2b4f2f5512b076eee7065b3c31d06043d81efb2618e1a2e28ab39387e7e2a14667c48ddf4c6a91a7961a7597c798a580fce3540c05bee51753
6
+ metadata.gz: 983645d9eb2f5d24720d6bbec3f6e488bc47bd0611ea5763ec5da1a03e9b79e6dae6091b8b22add114a46ea54d8aa14c113c2bd62e3eccc99e33f64c7b8727a6
7
+ data.tar.gz: 26145a799f440062bc13d4a624a4f2b26643d80de55e68e05cb9633129ba0101f07dc89e40833745bd02104cc6231c3a35088563463c4dfb2ae8261a5fe8fa10
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-sheets_v4
2
2
 
3
+ ### v0.15.0 (2022-06-17)
4
+
5
+ * Regenerated from discovery document revision 20220606
6
+ * Regenerated using generator version 0.6.0
7
+
8
+ ### v0.14.0 (2022-06-02)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.13.0 (2022-04-19)
13
+
14
+ * Regenerated from discovery document revision 20220411
15
+
3
16
  ### v0.12.0 (2022-03-15)
4
17
 
5
18
  * 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.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.6.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220308"
25
+ REVISION = "20220606"
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.15.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-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.6'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.6'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.15.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Sheets API V4