google-apis-sheets_v4 0.41.0 → 0.43.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 +8 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/sheets_v4/classes.rb +25 -0
- data/lib/google/apis/sheets_v4/gem_version.rb +3 -3
- data/lib/google/apis/sheets_v4/representations.rb +16 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76c0a4c3e6c8d9bb778115d9edecfc2b75839993fcaa66cc7f204749cf228bb9
|
4
|
+
data.tar.gz: 5c22b478b7b68929c82c40bcd756cc40417a8a7d5682cfc3e855dcc11679dd48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80b36c20f00ab92d262d3c1666e4f883fd0cd2bb74040db06d86f0fa4edbf0c3474ae94235a7d67ff02f39dfea4232b2cc64b2cac93b8ea8aac5b009a3bf82da
|
7
|
+
data.tar.gz: 8ae13bc068423c3b4fcb422e437715332260e7b99879dc35f356595026c330420549c12f6cf8a634fc941ada3558bba52897402d1ec784684cd6d3e2c0c84d80
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-sheets_v4
|
2
2
|
|
3
|
+
### v0.43.0 (2025-05-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250509
|
6
|
+
|
7
|
+
### v0.42.0 (2025-05-11)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.17.0
|
10
|
+
|
3
11
|
### v0.41.0 (2025-04-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250415
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://developers.google.com/workspace/sheets/) may
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -443,6 +443,25 @@ module Google
|
|
443
443
|
end
|
444
444
|
end
|
445
445
|
|
446
|
+
# The result of adding a table.
|
447
|
+
class AddTableResponse
|
448
|
+
include Google::Apis::Core::Hashable
|
449
|
+
|
450
|
+
# A table.
|
451
|
+
# Corresponds to the JSON property `table`
|
452
|
+
# @return [Google::Apis::SheetsV4::Table]
|
453
|
+
attr_accessor :table
|
454
|
+
|
455
|
+
def initialize(**args)
|
456
|
+
update!(**args)
|
457
|
+
end
|
458
|
+
|
459
|
+
# Update properties of this object
|
460
|
+
def update!(**args)
|
461
|
+
@table = args[:table] if args.key?(:table)
|
462
|
+
end
|
463
|
+
end
|
464
|
+
|
446
465
|
# Adds new cells after the last row with data in a sheet, inserting new rows
|
447
466
|
# into the sheet if necessary.
|
448
467
|
class AppendCellsRequest
|
@@ -8637,6 +8656,11 @@ module Google
|
|
8637
8656
|
# @return [Google::Apis::SheetsV4::AddSlicerResponse]
|
8638
8657
|
attr_accessor :add_slicer
|
8639
8658
|
|
8659
|
+
# The result of adding a table.
|
8660
|
+
# Corresponds to the JSON property `addTable`
|
8661
|
+
# @return [Google::Apis::SheetsV4::AddTableResponse]
|
8662
|
+
attr_accessor :add_table
|
8663
|
+
|
8640
8664
|
# The response from cancelling one or multiple data source object refreshes.
|
8641
8665
|
# Corresponds to the JSON property `cancelDataSourceRefresh`
|
8642
8666
|
# @return [Google::Apis::SheetsV4::CancelDataSourceRefreshResponse]
|
@@ -8727,6 +8751,7 @@ module Google
|
|
8727
8751
|
@add_protected_range = args[:add_protected_range] if args.key?(:add_protected_range)
|
8728
8752
|
@add_sheet = args[:add_sheet] if args.key?(:add_sheet)
|
8729
8753
|
@add_slicer = args[:add_slicer] if args.key?(:add_slicer)
|
8754
|
+
@add_table = args[:add_table] if args.key?(:add_table)
|
8730
8755
|
@cancel_data_source_refresh = args[:cancel_data_source_refresh] if args.key?(:cancel_data_source_refresh)
|
8731
8756
|
@create_developer_metadata = args[:create_developer_metadata] if args.key?(:create_developer_metadata)
|
8732
8757
|
@delete_conditional_format_rule = args[:delete_conditional_format_rule] if args.key?(:delete_conditional_format_rule)
|
@@ -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.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250509"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -142,6 +142,12 @@ module Google
|
|
142
142
|
include Google::Apis::Core::JsonObjectSupport
|
143
143
|
end
|
144
144
|
|
145
|
+
class AddTableResponse
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
145
151
|
class AppendCellsRequest
|
146
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
153
|
|
@@ -1727,6 +1733,14 @@ module Google
|
|
1727
1733
|
end
|
1728
1734
|
end
|
1729
1735
|
|
1736
|
+
class AddTableResponse
|
1737
|
+
# @private
|
1738
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1739
|
+
property :table, as: 'table', class: Google::Apis::SheetsV4::Table, decorator: Google::Apis::SheetsV4::Table::Representation
|
1740
|
+
|
1741
|
+
end
|
1742
|
+
end
|
1743
|
+
|
1730
1744
|
class AppendCellsRequest
|
1731
1745
|
# @private
|
1732
1746
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3793,6 +3807,8 @@ module Google
|
|
3793
3807
|
|
3794
3808
|
property :add_slicer, as: 'addSlicer', class: Google::Apis::SheetsV4::AddSlicerResponse, decorator: Google::Apis::SheetsV4::AddSlicerResponse::Representation
|
3795
3809
|
|
3810
|
+
property :add_table, as: 'addTable', class: Google::Apis::SheetsV4::AddTableResponse, decorator: Google::Apis::SheetsV4::AddTableResponse::Representation
|
3811
|
+
|
3796
3812
|
property :cancel_data_source_refresh, as: 'cancelDataSourceRefresh', class: Google::Apis::SheetsV4::CancelDataSourceRefreshResponse, decorator: Google::Apis::SheetsV4::CancelDataSourceRefreshResponse::Representation
|
3797
3813
|
|
3798
3814
|
property :create_developer_metadata, as: 'createDeveloperMetadata', class: Google::Apis::SheetsV4::CreateDeveloperMetadataResponse, decorator: Google::Apis::SheetsV4::CreateDeveloperMetadataResponse::Representation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sheets_v4/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.43.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sheets_v4
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.8
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Google Sheets API V4
|
79
79
|
test_files: []
|