google-apis-sheets_v4 0.2.0 → 0.7.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 +22 -0
- data/lib/google/apis/sheets_v4.rb +1 -1
- data/lib/google/apis/sheets_v4/classes.rb +1196 -1169
- data/lib/google/apis/sheets_v4/gem_version.rb +3 -3
- data/lib/google/apis/sheets_v4/representations.rb +15 -0
- data/lib/google/apis/sheets_v4/service.rb +10 -10
- metadata +14 -8
@@ -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.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210527"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -958,6 +958,12 @@ module Google
|
|
958
958
|
include Google::Apis::Core::JsonObjectSupport
|
959
959
|
end
|
960
960
|
|
961
|
+
class Link
|
962
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
963
|
+
|
964
|
+
include Google::Apis::Core::JsonObjectSupport
|
965
|
+
end
|
966
|
+
|
961
967
|
class ManualRule
|
962
968
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
963
969
|
|
@@ -3146,6 +3152,13 @@ module Google
|
|
3146
3152
|
end
|
3147
3153
|
end
|
3148
3154
|
|
3155
|
+
class Link
|
3156
|
+
# @private
|
3157
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3158
|
+
property :uri, as: 'uri'
|
3159
|
+
end
|
3160
|
+
end
|
3161
|
+
|
3149
3162
|
class ManualRule
|
3150
3163
|
# @private
|
3151
3164
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3902,6 +3915,8 @@ module Google
|
|
3902
3915
|
property :foreground_color_style, as: 'foregroundColorStyle', class: Google::Apis::SheetsV4::ColorStyle, decorator: Google::Apis::SheetsV4::ColorStyle::Representation
|
3903
3916
|
|
3904
3917
|
property :italic, as: 'italic'
|
3918
|
+
property :link, as: 'link', class: Google::Apis::SheetsV4::Link, decorator: Google::Apis::SheetsV4::Link::Representation
|
3919
|
+
|
3905
3920
|
property :strikethrough, as: 'strikethrough'
|
3906
3921
|
property :underline, as: 'underline'
|
3907
3922
|
end
|
@@ -344,10 +344,10 @@ module Google
|
|
344
344
|
# @param [String] response_date_time_render_option
|
345
345
|
# Determines how dates, times, and durations in the response should be rendered.
|
346
346
|
# This is ignored if response_value_render_option is FORMATTED_VALUE. The
|
347
|
-
# default dateTime render option is
|
347
|
+
# default dateTime render option is SERIAL_NUMBER.
|
348
348
|
# @param [String] response_value_render_option
|
349
349
|
# Determines how values in the response should be rendered. The default render
|
350
|
-
# option is
|
350
|
+
# option is FORMATTED_VALUE.
|
351
351
|
# @param [String] value_input_option
|
352
352
|
# How the input data should be interpreted.
|
353
353
|
# @param [String] fields
|
@@ -465,14 +465,14 @@ module Google
|
|
465
465
|
# @param [String] date_time_render_option
|
466
466
|
# How dates, times, and durations should be represented in the output. This is
|
467
467
|
# ignored if value_render_option is FORMATTED_VALUE. The default dateTime render
|
468
|
-
# option is
|
468
|
+
# option is SERIAL_NUMBER.
|
469
469
|
# @param [String] major_dimension
|
470
470
|
# The major dimension that results should use. For example, if the spreadsheet
|
471
471
|
# data is: `A1=1,B1=2,A2=3,B2=4`, then requesting `range=A1:B2,majorDimension=
|
472
472
|
# ROWS` returns `[[1,2],[3,4]]`, whereas requesting `range=A1:B2,majorDimension=
|
473
473
|
# COLUMNS` returns `[[1,3],[2,4]]`.
|
474
474
|
# @param [Array<String>, String] ranges
|
475
|
-
# The A1 notation of the
|
475
|
+
# The A1 notation or R1C1 notation of the range to retrieve values from.
|
476
476
|
# @param [String] value_render_option
|
477
477
|
# How values should be represented in the output. The default render option is
|
478
478
|
# ValueRenderOption.FORMATTED_VALUE.
|
@@ -616,7 +616,7 @@ module Google
|
|
616
616
|
# @param [String] spreadsheet_id
|
617
617
|
# The ID of the spreadsheet to update.
|
618
618
|
# @param [String] range
|
619
|
-
# The A1 notation of the values to clear.
|
619
|
+
# The A1 notation or R1C1 notation of the values to clear.
|
620
620
|
# @param [Google::Apis::SheetsV4::ClearValuesRequest] clear_values_request_object
|
621
621
|
# @param [String] fields
|
622
622
|
# Selector specifying which fields to include in a partial response.
|
@@ -653,11 +653,11 @@ module Google
|
|
653
653
|
# @param [String] spreadsheet_id
|
654
654
|
# The ID of the spreadsheet to retrieve data from.
|
655
655
|
# @param [String] range
|
656
|
-
# The A1 notation of the
|
656
|
+
# The A1 notation or R1C1 notation of the range to retrieve values from.
|
657
657
|
# @param [String] date_time_render_option
|
658
658
|
# How dates, times, and durations should be represented in the output. This is
|
659
659
|
# ignored if value_render_option is FORMATTED_VALUE. The default dateTime render
|
660
|
-
# option is
|
660
|
+
# option is SERIAL_NUMBER.
|
661
661
|
# @param [String] major_dimension
|
662
662
|
# The major dimension that results should use. For example, if the spreadsheet
|
663
663
|
# data is: `A1=1,B1=2,A2=3,B2=4`, then requesting `range=A1:B2,majorDimension=
|
@@ -665,7 +665,7 @@ module Google
|
|
665
665
|
# COLUMNS` returns `[[1,3],[2,4]]`.
|
666
666
|
# @param [String] value_render_option
|
667
667
|
# How values should be represented in the output. The default render option is
|
668
|
-
#
|
668
|
+
# FORMATTED_VALUE.
|
669
669
|
# @param [String] fields
|
670
670
|
# Selector specifying which fields to include in a partial response.
|
671
671
|
# @param [String] quota_user
|
@@ -713,10 +713,10 @@ module Google
|
|
713
713
|
# @param [String] response_date_time_render_option
|
714
714
|
# Determines how dates, times, and durations in the response should be rendered.
|
715
715
|
# This is ignored if response_value_render_option is FORMATTED_VALUE. The
|
716
|
-
# default dateTime render option is
|
716
|
+
# default dateTime render option is SERIAL_NUMBER.
|
717
717
|
# @param [String] response_value_render_option
|
718
718
|
# Determines how values in the response should be rendered. The default render
|
719
|
-
# option is
|
719
|
+
# option is FORMATTED_VALUE.
|
720
720
|
# @param [String] value_input_option
|
721
721
|
# How the input data should be interpreted.
|
722
722
|
# @param [String] fields
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.7.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: 2021-
|
11
|
+
date: 2021-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Google Sheets API V4. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sheets_v4/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.7.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-sheets_v4
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Google Sheets API V4
|