google-apis-sheets_v4 0.20.0 → 0.21.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 +16 -14
- 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: 61235032526cae75d697b07334c9b180583e2b308f9d96d6bf1620b9fd2f9211
|
|
4
|
+
data.tar.gz: c0de33839f896c826628842adcd1e8f401df5073c6ed1cf505e4764b0188d505
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 856768c7b961364f580f8076650ba6d791ebcf729210b65dffa6c884723d38e63049b5bdcef2647473f7739f554280504e6e1ef7c59f4f14384a0dc3731bae0c
|
|
7
|
+
data.tar.gz: 79338582f6a33d403e09e0765db76abd306e8308b004be34379c744beb57f82e7b166e9cb188919ee962afad1fec09c1e3d5f70907d50d04a8eca3e0fdf4fdbd
|
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.21.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20221216"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -125,18 +125,19 @@ module Google
|
|
|
125
125
|
|
|
126
126
|
# Returns the spreadsheet at the given ID. The caller must specify the
|
|
127
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
|
|
129
|
-
#
|
|
130
|
-
#
|
|
131
|
-
#
|
|
132
|
-
#
|
|
133
|
-
#
|
|
134
|
-
#
|
|
135
|
-
#
|
|
136
|
-
#
|
|
137
|
-
#
|
|
138
|
-
#
|
|
139
|
-
#
|
|
128
|
+
# grid data in one of 2 ways: * Specify a [field mask](https://developers.google.
|
|
129
|
+
# com/sheets/api/guides/field-masks) listing your desired fields using the `
|
|
130
|
+
# fields` URL parameter in HTTP * Set the includeGridData URL parameter to true.
|
|
131
|
+
# If a field mask is set, the `includeGridData` parameter is ignored For large
|
|
132
|
+
# spreadsheets, as a best practice, retrieve only the specific spreadsheet
|
|
133
|
+
# fields that you want. To retrieve only subsets of spreadsheet data, use the
|
|
134
|
+
# ranges URL parameter. Ranges are specified using [A1 notation](/sheets/api/
|
|
135
|
+
# guides/concepts#cell). You can define a single cell (for example, `A1`) or
|
|
136
|
+
# multiple cells (for example, `A1:D5`). You can also get cells from other
|
|
137
|
+
# sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or retrieve
|
|
138
|
+
# multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:C4`).
|
|
139
|
+
# Limiting the range returns only the portions of the spreadsheet that intersect
|
|
140
|
+
# the requested ranges.
|
|
140
141
|
# @param [String] spreadsheet_id
|
|
141
142
|
# The spreadsheet to request.
|
|
142
143
|
# @param [Boolean] include_grid_data
|
|
@@ -179,8 +180,9 @@ module Google
|
|
|
179
180
|
# dataFilters parameter. Multiple DataFilters can be specified. Specifying one
|
|
180
181
|
# or more data filters returns the portions of the spreadsheet that intersect
|
|
181
182
|
# 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
|
|
183
|
+
# returned. You can include grid data one of 2 ways: * Specify a [field mask](
|
|
184
|
+
# https://developers.google.com/sheets/api/guides/field-masks) listing your
|
|
185
|
+
# desired fields using the `fields` URL parameter in HTTP * Set the
|
|
184
186
|
# includeGridData parameter to true. If a field mask is set, the `
|
|
185
187
|
# includeGridData` parameter is ignored For large spreadsheets, as a best
|
|
186
188
|
# practice, retrieve only the specific spreadsheet fields that you want.
|
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.21.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:
|
|
11
|
+
date: 2023-01-04 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.21.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: []
|