google-apis-sheets_v4 0.37.0 → 0.39.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f801b72d0d557a3014db491b284b087b294d167319f313e7654c35af3afaf95a
|
4
|
+
data.tar.gz: 735fc8f7c4f74bca2aaff356970c0f4e6e391ce792a9bfc22f9d1165aa34b191
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c33f5df075b9582a90fddba9f444df323b732114d3afd6e6234b26394c097b145146a693cb01aa5641ddfe18444d2700191ae7648f9e987c4fe0991f8468487
|
7
|
+
data.tar.gz: 670d7a9a161172862c86641f40178e18f2a61bc92d703fabe92ff2885868aeb4bdb68c91c5ebcab2e1026a07c68b98a6fe561765d59d5bc9759095d7dc8ca4e6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-sheets_v4
|
2
2
|
|
3
|
+
### v0.39.0 (2024-12-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241203
|
6
|
+
|
7
|
+
### v0.38.0 (2024-10-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241008
|
10
|
+
|
3
11
|
### v0.37.0 (2024-10-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241001
|
@@ -8807,6 +8807,13 @@ module Google
|
|
8807
8807
|
class SetDataValidationRequest
|
8808
8808
|
include Google::Apis::Core::Hashable
|
8809
8809
|
|
8810
|
+
# Optional. If true, the data validation rule will be applied to the filtered
|
8811
|
+
# rows as well.
|
8812
|
+
# Corresponds to the JSON property `filteredRowsIncluded`
|
8813
|
+
# @return [Boolean]
|
8814
|
+
attr_accessor :filtered_rows_included
|
8815
|
+
alias_method :filtered_rows_included?, :filtered_rows_included
|
8816
|
+
|
8810
8817
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
8811
8818
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
8812
8819
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
@@ -8835,6 +8842,7 @@ module Google
|
|
8835
8842
|
|
8836
8843
|
# Update properties of this object
|
8837
8844
|
def update!(**args)
|
8845
|
+
@filtered_rows_included = args[:filtered_rows_included] if args.key?(:filtered_rows_included)
|
8838
8846
|
@range = args[:range] if args.key?(:range)
|
8839
8847
|
@rule = args[:rule] if args.key?(:rule)
|
8840
8848
|
end
|
@@ -9880,24 +9888,28 @@ module Google
|
|
9880
9888
|
class TimeOfDay
|
9881
9889
|
include Google::Apis::Core::Hashable
|
9882
9890
|
|
9883
|
-
# Hours of day in 24 hour format.
|
9884
|
-
#
|
9891
|
+
# Hours of a day in 24 hour format. Must be greater than or equal to 0 and
|
9892
|
+
# typically must be less than or equal to 23. An API may choose to allow the
|
9893
|
+
# value "24:00:00" for scenarios like business closing time.
|
9885
9894
|
# Corresponds to the JSON property `hours`
|
9886
9895
|
# @return [Fixnum]
|
9887
9896
|
attr_accessor :hours
|
9888
9897
|
|
9889
|
-
# Minutes of hour
|
9898
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or equal
|
9899
|
+
# to 59.
|
9890
9900
|
# Corresponds to the JSON property `minutes`
|
9891
9901
|
# @return [Fixnum]
|
9892
9902
|
attr_accessor :minutes
|
9893
9903
|
|
9894
|
-
# Fractions of seconds in nanoseconds. Must be
|
9904
|
+
# Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
|
9905
|
+
# less than or equal to 999,999,999.
|
9895
9906
|
# Corresponds to the JSON property `nanos`
|
9896
9907
|
# @return [Fixnum]
|
9897
9908
|
attr_accessor :nanos
|
9898
9909
|
|
9899
|
-
# Seconds of
|
9900
|
-
# allow the value 60 if it allows leap-
|
9910
|
+
# Seconds of a minute. Must be greater than or equal to 0 and typically must be
|
9911
|
+
# less than or equal to 59. An API may allow the value 60 if it allows leap-
|
9912
|
+
# seconds.
|
9901
9913
|
# Corresponds to the JSON property `seconds`
|
9902
9914
|
# @return [Fixnum]
|
9903
9915
|
attr_accessor :seconds
|
@@ -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.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241203"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3812,6 +3812,7 @@ module Google
|
|
3812
3812
|
class SetDataValidationRequest
|
3813
3813
|
# @private
|
3814
3814
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3815
|
+
property :filtered_rows_included, as: 'filteredRowsIncluded'
|
3815
3816
|
property :range, as: 'range', class: Google::Apis::SheetsV4::GridRange, decorator: Google::Apis::SheetsV4::GridRange::Representation
|
3816
3817
|
|
3817
3818
|
property :rule, as: 'rule', class: Google::Apis::SheetsV4::DataValidationRule, decorator: Google::Apis::SheetsV4::DataValidationRule::Representation
|
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.39.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: 2024-
|
11
|
+
date: 2024-12-15 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.39.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.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Sheets API V4
|