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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/sheets_v4/gem_version.rb +2 -2
- data/lib/google/apis/sheets_v4/service.rb +19 -16
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a951ba01f622fc051c7d62650b5adf382586fea2cf2ce3f3537efc33d5bf8285
|
|
4
|
+
data.tar.gz: d9443b82a4ea9650cf829d26f8a3378d06494c3d4336f2eb00e91774916d8729
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9bf424219a78b33ab5950c085eb07054e8adb62a3bd3d15de48a4542a8e3e812787d1a207c5fa92c7c09ae5b7bffdfdc69a2dd4e4300f09bfdac269aee6584c0
|
|
7
|
+
data.tar.gz: b3a78ab74bf0e6c72d233d5043dea072b728abf36ebc4c0b6a8e3d08581fc63f5be29947a3b63a263ca83a16cc53e3a50784720809ff3a2546d8431d4aeaaf02
|
data/CHANGELOG.md
CHANGED
|
@@ -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.
|
|
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 = "
|
|
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
|
|
128
|
-
#
|
|
129
|
-
#
|
|
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,
|
|
132
|
-
#
|
|
133
|
-
#
|
|
134
|
-
#
|
|
135
|
-
#
|
|
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
|
|
177
|
-
#
|
|
178
|
-
#
|
|
179
|
-
#
|
|
180
|
-
#
|
|
181
|
-
# includeGridData` parameter is ignored For large spreadsheets,
|
|
182
|
-
#
|
|
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.
|
|
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-
|
|
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.
|
|
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: []
|