google-apis-sheets_v4 0.42.0 → 0.44.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8a3b55f51ac50fe2b566b6e093b68242205d51d895c317fc650b76ef158e143
|
4
|
+
data.tar.gz: 2f5cbbc2e4dab80daf208139cd69307b170d362085db87725cf0a944a62bed8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 954009dc63db8c58964566b1e48608e4fa34962fef8a3c87228e0eb0e9a3ff49a0ca081e2fcda6249ade871ca64760a548e7785880c283e5b5d160c020898e26
|
7
|
+
data.tar.gz: 1e7cc41bfb59221ba304d1cacebc918b750a0e1425dc3f55da7da52854d247e1abc9b31f49288609103030c486b0746569d9649d313e4c569ecc94c9ba5c8d01
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-sheets_v4
|
2
2
|
|
3
|
+
### v0.44.0 (2025-05-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250513
|
6
|
+
|
7
|
+
### v0.43.0 (2025-05-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250509
|
10
|
+
|
3
11
|
### v0.42.0 (2025-05-11)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.17.0
|
@@ -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
|
@@ -624,11 +643,17 @@ module Google
|
|
624
643
|
class BandedRange
|
625
644
|
include Google::Apis::Core::Hashable
|
626
645
|
|
627
|
-
# The ID of the banded range.
|
646
|
+
# The ID of the banded range. If unset, refer to banded_range_reference.
|
628
647
|
# Corresponds to the JSON property `bandedRangeId`
|
629
648
|
# @return [Fixnum]
|
630
649
|
attr_accessor :banded_range_id
|
631
650
|
|
651
|
+
# Output only. The reference of the banded range, used to identify the ID that
|
652
|
+
# is not supported by the banded_range_id.
|
653
|
+
# Corresponds to the JSON property `bandedRangeReference`
|
654
|
+
# @return [String]
|
655
|
+
attr_accessor :banded_range_reference
|
656
|
+
|
632
657
|
# Properties referring a single dimension (either row or column). If both
|
633
658
|
# BandedRange.row_properties and BandedRange.column_properties are set, the fill
|
634
659
|
# colors are applied to cells according to the following rules: * header_color
|
@@ -681,6 +706,7 @@ module Google
|
|
681
706
|
# Update properties of this object
|
682
707
|
def update!(**args)
|
683
708
|
@banded_range_id = args[:banded_range_id] if args.key?(:banded_range_id)
|
709
|
+
@banded_range_reference = args[:banded_range_reference] if args.key?(:banded_range_reference)
|
684
710
|
@column_properties = args[:column_properties] if args.key?(:column_properties)
|
685
711
|
@range = args[:range] if args.key?(:range)
|
686
712
|
@row_properties = args[:row_properties] if args.key?(:row_properties)
|
@@ -8637,6 +8663,11 @@ module Google
|
|
8637
8663
|
# @return [Google::Apis::SheetsV4::AddSlicerResponse]
|
8638
8664
|
attr_accessor :add_slicer
|
8639
8665
|
|
8666
|
+
# The result of adding a table.
|
8667
|
+
# Corresponds to the JSON property `addTable`
|
8668
|
+
# @return [Google::Apis::SheetsV4::AddTableResponse]
|
8669
|
+
attr_accessor :add_table
|
8670
|
+
|
8640
8671
|
# The response from cancelling one or multiple data source object refreshes.
|
8641
8672
|
# Corresponds to the JSON property `cancelDataSourceRefresh`
|
8642
8673
|
# @return [Google::Apis::SheetsV4::CancelDataSourceRefreshResponse]
|
@@ -8727,6 +8758,7 @@ module Google
|
|
8727
8758
|
@add_protected_range = args[:add_protected_range] if args.key?(:add_protected_range)
|
8728
8759
|
@add_sheet = args[:add_sheet] if args.key?(:add_sheet)
|
8729
8760
|
@add_slicer = args[:add_slicer] if args.key?(:add_slicer)
|
8761
|
+
@add_table = args[:add_table] if args.key?(:add_table)
|
8730
8762
|
@cancel_data_source_refresh = args[:cancel_data_source_refresh] if args.key?(:cancel_data_source_refresh)
|
8731
8763
|
@create_developer_metadata = args[:create_developer_metadata] if args.key?(:create_developer_metadata)
|
8732
8764
|
@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.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250513"
|
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
|
@@ -1782,6 +1796,7 @@ module Google
|
|
1782
1796
|
# @private
|
1783
1797
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1784
1798
|
property :banded_range_id, as: 'bandedRangeId'
|
1799
|
+
property :banded_range_reference, as: 'bandedRangeReference'
|
1785
1800
|
property :column_properties, as: 'columnProperties', class: Google::Apis::SheetsV4::BandingProperties, decorator: Google::Apis::SheetsV4::BandingProperties::Representation
|
1786
1801
|
|
1787
1802
|
property :range, as: 'range', class: Google::Apis::SheetsV4::GridRange, decorator: Google::Apis::SheetsV4::GridRange::Representation
|
@@ -3793,6 +3808,8 @@ module Google
|
|
3793
3808
|
|
3794
3809
|
property :add_slicer, as: 'addSlicer', class: Google::Apis::SheetsV4::AddSlicerResponse, decorator: Google::Apis::SheetsV4::AddSlicerResponse::Representation
|
3795
3810
|
|
3811
|
+
property :add_table, as: 'addTable', class: Google::Apis::SheetsV4::AddTableResponse, decorator: Google::Apis::SheetsV4::AddTableResponse::Representation
|
3812
|
+
|
3796
3813
|
property :cancel_data_source_refresh, as: 'cancelDataSourceRefresh', class: Google::Apis::SheetsV4::CancelDataSourceRefreshResponse, decorator: Google::Apis::SheetsV4::CancelDataSourceRefreshResponse::Representation
|
3797
3814
|
|
3798
3815
|
property :create_developer_metadata, as: 'createDeveloperMetadata', class: Google::Apis::SheetsV4::CreateDeveloperMetadataResponse, decorator: Google::Apis::SheetsV4::CreateDeveloperMetadataResponse::Representation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.44.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -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.44.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:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Google Sheets API V4
|
79
79
|
test_files: []
|