google-apis-sheets_v4 0.46.0 → 0.47.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/classes.rb +90 -61
- data/lib/google/apis/sheets_v4/gem_version.rb +2 -2
- data/lib/google/apis/sheets_v4/service.rb +37 -26
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9250ad8b05394cac233fcf6efbb243206c593d4890f2f5266431110eaf7d7761
|
|
4
|
+
data.tar.gz: 042045b04b1feb84026b6e0d5f814f42441f631fa2d5cb2392dcface8f5ec169
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5aed2c03a07d98744c7dd11029a9e71a7b4cd35b2435e0046834809b0ae853ca4a3aabdfefcb5d8ed8ee11ffdf85be118c7265b3b705628668e2ea1aa2a7ec0c
|
|
7
|
+
data.tar.gz: 5e9fd64a927a5e84d714847318d60f47f8ba2efe8a8b888de2bd5280be703caabd259e29bd8f3668a5b57cd01542fa31b87b609d7400ee784e1709d4940bd86e
|
data/CHANGELOG.md
CHANGED
|
@@ -235,7 +235,8 @@ module Google
|
|
|
235
235
|
class AddFilterViewRequest
|
|
236
236
|
include Google::Apis::Core::Hashable
|
|
237
237
|
|
|
238
|
-
# A filter view.
|
|
238
|
+
# A filter view. For more information, see [Manage data visibility with filters](
|
|
239
|
+
# https://developers.google.com/workspace/sheets/api/guides/filters).
|
|
239
240
|
# Corresponds to the JSON property `filter`
|
|
240
241
|
# @return [Google::Apis::SheetsV4::FilterView]
|
|
241
242
|
attr_accessor :filter
|
|
@@ -254,7 +255,8 @@ module Google
|
|
|
254
255
|
class AddFilterViewResponse
|
|
255
256
|
include Google::Apis::Core::Hashable
|
|
256
257
|
|
|
257
|
-
# A filter view.
|
|
258
|
+
# A filter view. For more information, see [Manage data visibility with filters](
|
|
259
|
+
# https://developers.google.com/workspace/sheets/api/guides/filters).
|
|
258
260
|
# Corresponds to the JSON property `filter`
|
|
259
261
|
# @return [Google::Apis::SheetsV4::FilterView]
|
|
260
262
|
attr_accessor :filter
|
|
@@ -1405,7 +1407,9 @@ module Google
|
|
|
1405
1407
|
end
|
|
1406
1408
|
end
|
|
1407
1409
|
|
|
1408
|
-
# The default filter associated with a sheet.
|
|
1410
|
+
# The default filter associated with a sheet. For more information, see [Manage
|
|
1411
|
+
# data visibility with filters](https://developers.google.com/workspace/sheets/
|
|
1412
|
+
# api/guides/filters).
|
|
1409
1413
|
class BasicFilter
|
|
1410
1414
|
include Google::Apis::Core::Hashable
|
|
1411
1415
|
|
|
@@ -1574,7 +1578,7 @@ module Google
|
|
|
1574
1578
|
|
|
1575
1579
|
# The ranges that were cleared, in [A1 notation](https://developers.google.com/
|
|
1576
1580
|
# workspace/sheets/api/guides/concepts#cell). If the requests are for an
|
|
1577
|
-
# unbounded range or a
|
|
1581
|
+
# unbounded range or a range larger than the bounds of the sheet, this is the
|
|
1578
1582
|
# actual ranges that were cleared, bounded to the sheet's limits.
|
|
1579
1583
|
# Corresponds to the JSON property `clearedRanges`
|
|
1580
1584
|
# @return [Array<String>]
|
|
@@ -1621,7 +1625,7 @@ module Google
|
|
|
1621
1625
|
include Google::Apis::Core::Hashable
|
|
1622
1626
|
|
|
1623
1627
|
# The ranges that were cleared, in A1 notation. If the requests are for an
|
|
1624
|
-
# unbounded range or a
|
|
1628
|
+
# unbounded range or a range larger than the bounds of the sheet, this is the
|
|
1625
1629
|
# actual ranges that were cleared, bounded to the sheet's limits.
|
|
1626
1630
|
# Corresponds to the JSON property `clearedRanges`
|
|
1627
1631
|
# @return [Array<String>]
|
|
@@ -3382,7 +3386,7 @@ module Google
|
|
|
3382
3386
|
include Google::Apis::Core::Hashable
|
|
3383
3387
|
|
|
3384
3388
|
# The range (in A1 notation) that was cleared. (If the request was for an
|
|
3385
|
-
# unbounded range or a
|
|
3389
|
+
# unbounded range or a range larger than the bounds of the sheet, this will be
|
|
3386
3390
|
# the actual range that was cleared, bounded to the sheet's limits.)
|
|
3387
3391
|
# Corresponds to the JSON property `clearedRange`
|
|
3388
3392
|
# @return [String]
|
|
@@ -3708,14 +3712,16 @@ module Google
|
|
|
3708
3712
|
class CreateDeveloperMetadataRequest
|
|
3709
3713
|
include Google::Apis::Core::Hashable
|
|
3710
3714
|
|
|
3711
|
-
# Developer metadata associated with a location or object in a spreadsheet.
|
|
3712
|
-
#
|
|
3713
|
-
#
|
|
3714
|
-
#
|
|
3715
|
-
#
|
|
3716
|
-
#
|
|
3717
|
-
#
|
|
3718
|
-
# metadata is
|
|
3715
|
+
# Developer metadata associated with a location or object in a spreadsheet. For
|
|
3716
|
+
# more information, see [Read, write, and search metadata](https://developers.
|
|
3717
|
+
# google.com/workspace/sheets/api/guides/metadata). Developer metadata may be
|
|
3718
|
+
# used to associate arbitrary data with various parts of a spreadsheet and it
|
|
3719
|
+
# will remain associated at those locations as they move around and the
|
|
3720
|
+
# spreadsheet is edited. For example, if developer metadata is associated with
|
|
3721
|
+
# row 5 and another row is then subsequently inserted above row 5, that original
|
|
3722
|
+
# metadata is still associated with the row it was first associated with (what
|
|
3723
|
+
# is now row 6). If the associated object is deleted then its metadata is
|
|
3724
|
+
# deleted too.
|
|
3719
3725
|
# Corresponds to the JSON property `developerMetadata`
|
|
3720
3726
|
# @return [Google::Apis::SheetsV4::DeveloperMetadata]
|
|
3721
3727
|
attr_accessor :developer_metadata
|
|
@@ -3734,14 +3740,16 @@ module Google
|
|
|
3734
3740
|
class CreateDeveloperMetadataResponse
|
|
3735
3741
|
include Google::Apis::Core::Hashable
|
|
3736
3742
|
|
|
3737
|
-
# Developer metadata associated with a location or object in a spreadsheet.
|
|
3738
|
-
#
|
|
3739
|
-
#
|
|
3740
|
-
#
|
|
3741
|
-
#
|
|
3742
|
-
#
|
|
3743
|
-
#
|
|
3744
|
-
# metadata is
|
|
3743
|
+
# Developer metadata associated with a location or object in a spreadsheet. For
|
|
3744
|
+
# more information, see [Read, write, and search metadata](https://developers.
|
|
3745
|
+
# google.com/workspace/sheets/api/guides/metadata). Developer metadata may be
|
|
3746
|
+
# used to associate arbitrary data with various parts of a spreadsheet and it
|
|
3747
|
+
# will remain associated at those locations as they move around and the
|
|
3748
|
+
# spreadsheet is edited. For example, if developer metadata is associated with
|
|
3749
|
+
# row 5 and another row is then subsequently inserted above row 5, that original
|
|
3750
|
+
# metadata is still associated with the row it was first associated with (what
|
|
3751
|
+
# is now row 6). If the associated object is deleted then its metadata is
|
|
3752
|
+
# deleted too.
|
|
3745
3753
|
# Corresponds to the JSON property `developerMetadata`
|
|
3746
3754
|
# @return [Google::Apis::SheetsV4::DeveloperMetadata]
|
|
3747
3755
|
attr_accessor :developer_metadata
|
|
@@ -3846,6 +3854,8 @@ module Google
|
|
|
3846
3854
|
end
|
|
3847
3855
|
|
|
3848
3856
|
# Filter that describes what data should be selected or returned from a request.
|
|
3857
|
+
# For more information, see [Read, write, and search metadata](https://
|
|
3858
|
+
# developers.google.com/workspace/sheets/api/guides/metadata).
|
|
3849
3859
|
class DataFilter
|
|
3850
3860
|
include Google::Apis::Core::Hashable
|
|
3851
3861
|
|
|
@@ -3860,7 +3870,7 @@ module Google
|
|
|
3860
3870
|
# specified, this considers all developer metadata with that key. If a key,
|
|
3861
3871
|
# visibility, and location type are all specified, this considers all developer
|
|
3862
3872
|
# metadata with that key and visibility that are associated with a location of
|
|
3863
|
-
# that type. In general, this selects all DeveloperMetadata that
|
|
3873
|
+
# that type. In general, this selects all DeveloperMetadata that match the
|
|
3864
3874
|
# intersection of all the specified fields; any field or combination of fields
|
|
3865
3875
|
# may be specified.
|
|
3866
3876
|
# Corresponds to the JSON property `developerMetadataLookup`
|
|
@@ -3901,6 +3911,8 @@ module Google
|
|
|
3901
3911
|
include Google::Apis::Core::Hashable
|
|
3902
3912
|
|
|
3903
3913
|
# Filter that describes what data should be selected or returned from a request.
|
|
3914
|
+
# For more information, see [Read, write, and search metadata](https://
|
|
3915
|
+
# developers.google.com/workspace/sheets/api/guides/metadata).
|
|
3904
3916
|
# Corresponds to the JSON property `dataFilter`
|
|
3905
3917
|
# @return [Google::Apis::SheetsV4::DataFilter]
|
|
3906
3918
|
attr_accessor :data_filter
|
|
@@ -4690,6 +4702,8 @@ module Google
|
|
|
4690
4702
|
include Google::Apis::Core::Hashable
|
|
4691
4703
|
|
|
4692
4704
|
# Filter that describes what data should be selected or returned from a request.
|
|
4705
|
+
# For more information, see [Read, write, and search metadata](https://
|
|
4706
|
+
# developers.google.com/workspace/sheets/api/guides/metadata).
|
|
4693
4707
|
# Corresponds to the JSON property `dataFilter`
|
|
4694
4708
|
# @return [Google::Apis::SheetsV4::DataFilter]
|
|
4695
4709
|
attr_accessor :data_filter
|
|
@@ -5005,14 +5019,16 @@ module Google
|
|
|
5005
5019
|
end
|
|
5006
5020
|
end
|
|
5007
5021
|
|
|
5008
|
-
# Developer metadata associated with a location or object in a spreadsheet.
|
|
5009
|
-
#
|
|
5010
|
-
#
|
|
5011
|
-
#
|
|
5012
|
-
#
|
|
5013
|
-
#
|
|
5014
|
-
#
|
|
5015
|
-
# metadata is
|
|
5022
|
+
# Developer metadata associated with a location or object in a spreadsheet. For
|
|
5023
|
+
# more information, see [Read, write, and search metadata](https://developers.
|
|
5024
|
+
# google.com/workspace/sheets/api/guides/metadata). Developer metadata may be
|
|
5025
|
+
# used to associate arbitrary data with various parts of a spreadsheet and it
|
|
5026
|
+
# will remain associated at those locations as they move around and the
|
|
5027
|
+
# spreadsheet is edited. For example, if developer metadata is associated with
|
|
5028
|
+
# row 5 and another row is then subsequently inserted above row 5, that original
|
|
5029
|
+
# metadata is still associated with the row it was first associated with (what
|
|
5030
|
+
# is now row 6). If the associated object is deleted then its metadata is
|
|
5031
|
+
# deleted too.
|
|
5016
5032
|
class DeveloperMetadata
|
|
5017
5033
|
include Google::Apis::Core::Hashable
|
|
5018
5034
|
|
|
@@ -5039,7 +5055,7 @@ module Google
|
|
|
5039
5055
|
# @return [String]
|
|
5040
5056
|
attr_accessor :metadata_value
|
|
5041
5057
|
|
|
5042
|
-
# The metadata visibility. Developer metadata must always have
|
|
5058
|
+
# The metadata visibility. Developer metadata must always have visibility
|
|
5043
5059
|
# specified.
|
|
5044
5060
|
# Corresponds to the JSON property `visibility`
|
|
5045
5061
|
# @return [String]
|
|
@@ -5105,7 +5121,7 @@ module Google
|
|
|
5105
5121
|
# specified, this considers all developer metadata with that key. If a key,
|
|
5106
5122
|
# visibility, and location type are all specified, this considers all developer
|
|
5107
5123
|
# metadata with that key and visibility that are associated with a location of
|
|
5108
|
-
# that type. In general, this selects all DeveloperMetadata that
|
|
5124
|
+
# that type. In general, this selects all DeveloperMetadata that match the
|
|
5109
5125
|
# intersection of all the specified fields; any field or combination of fields
|
|
5110
5126
|
# may be specified.
|
|
5111
5127
|
class DeveloperMetadataLookup
|
|
@@ -5127,7 +5143,7 @@ module Google
|
|
|
5127
5143
|
# rows. If the field is left unspecified, all location types are considered.
|
|
5128
5144
|
# This field cannot be specified as SPREADSHEET when the
|
|
5129
5145
|
# locationMatchingStrategy is specified as INTERSECTING or when the
|
|
5130
|
-
# metadataLocation is specified as a non-spreadsheet location
|
|
5146
|
+
# metadataLocation is specified as a non-spreadsheet location. Spreadsheet
|
|
5131
5147
|
# metadata cannot intersect any other developer metadata location. This field
|
|
5132
5148
|
# also must be left unspecified when the locationMatchingStrategy is specified
|
|
5133
5149
|
# as EXACT.
|
|
@@ -5330,7 +5346,8 @@ module Google
|
|
|
5330
5346
|
class DuplicateFilterViewResponse
|
|
5331
5347
|
include Google::Apis::Core::Hashable
|
|
5332
5348
|
|
|
5333
|
-
# A filter view.
|
|
5349
|
+
# A filter view. For more information, see [Manage data visibility with filters](
|
|
5350
|
+
# https://developers.google.com/workspace/sheets/api/guides/filters).
|
|
5334
5351
|
# Corresponds to the JSON property `filter`
|
|
5335
5352
|
# @return [Google::Apis::SheetsV4::FilterView]
|
|
5336
5353
|
attr_accessor :filter
|
|
@@ -5651,7 +5668,7 @@ module Google
|
|
|
5651
5668
|
end
|
|
5652
5669
|
end
|
|
5653
5670
|
|
|
5654
|
-
# Criteria for showing
|
|
5671
|
+
# Criteria for showing or hiding rows in a filter or filter view.
|
|
5655
5672
|
class FilterCriteria
|
|
5656
5673
|
include Google::Apis::Core::Hashable
|
|
5657
5674
|
|
|
@@ -5803,7 +5820,7 @@ module Google
|
|
|
5803
5820
|
# @return [Google::Apis::SheetsV4::DataSourceColumnReference]
|
|
5804
5821
|
attr_accessor :data_source_column_reference
|
|
5805
5822
|
|
|
5806
|
-
# Criteria for showing
|
|
5823
|
+
# Criteria for showing or hiding rows in a filter or filter view.
|
|
5807
5824
|
# Corresponds to the JSON property `filterCriteria`
|
|
5808
5825
|
# @return [Google::Apis::SheetsV4::FilterCriteria]
|
|
5809
5826
|
attr_accessor :filter_criteria
|
|
@@ -5820,7 +5837,8 @@ module Google
|
|
|
5820
5837
|
end
|
|
5821
5838
|
end
|
|
5822
5839
|
|
|
5823
|
-
# A filter view.
|
|
5840
|
+
# A filter view. For more information, see [Manage data visibility with filters](
|
|
5841
|
+
# https://developers.google.com/workspace/sheets/api/guides/filters).
|
|
5824
5842
|
class FilterView
|
|
5825
5843
|
include Google::Apis::Core::Hashable
|
|
5826
5844
|
|
|
@@ -5831,7 +5849,7 @@ module Google
|
|
|
5831
5849
|
# @return [Hash<String,Google::Apis::SheetsV4::FilterCriteria>]
|
|
5832
5850
|
attr_accessor :criteria
|
|
5833
5851
|
|
|
5834
|
-
# The filter criteria for showing
|
|
5852
|
+
# The filter criteria for showing or hiding values per column. Both criteria and
|
|
5835
5853
|
# filter_specs are populated in responses. If both fields are specified in an
|
|
5836
5854
|
# update request, this field takes precedence.
|
|
5837
5855
|
# Corresponds to the JSON property `filterSpecs`
|
|
@@ -5844,7 +5862,7 @@ module Google
|
|
|
5844
5862
|
attr_accessor :filter_view_id
|
|
5845
5863
|
|
|
5846
5864
|
# The named range this filter view is backed by, if any. When writing, only one
|
|
5847
|
-
# of range
|
|
5865
|
+
# of range, named_range_id, or table_id may be set.
|
|
5848
5866
|
# Corresponds to the JSON property `namedRangeId`
|
|
5849
5867
|
# @return [String]
|
|
5850
5868
|
attr_accessor :named_range_id
|
|
@@ -5873,7 +5891,7 @@ module Google
|
|
|
5873
5891
|
attr_accessor :sort_specs
|
|
5874
5892
|
|
|
5875
5893
|
# The table this filter view is backed by, if any. When writing, only one of
|
|
5876
|
-
# range
|
|
5894
|
+
# range, named_range_id, or table_id may be set.
|
|
5877
5895
|
# Corresponds to the JSON property `tableId`
|
|
5878
5896
|
# @return [String]
|
|
5879
5897
|
attr_accessor :table_id
|
|
@@ -6864,14 +6882,16 @@ module Google
|
|
|
6864
6882
|
# @return [Array<Google::Apis::SheetsV4::DataFilter>]
|
|
6865
6883
|
attr_accessor :data_filters
|
|
6866
6884
|
|
|
6867
|
-
# Developer metadata associated with a location or object in a spreadsheet.
|
|
6868
|
-
#
|
|
6869
|
-
#
|
|
6870
|
-
#
|
|
6871
|
-
#
|
|
6872
|
-
#
|
|
6873
|
-
#
|
|
6874
|
-
# metadata is
|
|
6885
|
+
# Developer metadata associated with a location or object in a spreadsheet. For
|
|
6886
|
+
# more information, see [Read, write, and search metadata](https://developers.
|
|
6887
|
+
# google.com/workspace/sheets/api/guides/metadata). Developer metadata may be
|
|
6888
|
+
# used to associate arbitrary data with various parts of a spreadsheet and it
|
|
6889
|
+
# will remain associated at those locations as they move around and the
|
|
6890
|
+
# spreadsheet is edited. For example, if developer metadata is associated with
|
|
6891
|
+
# row 5 and another row is then subsequently inserted above row 5, that original
|
|
6892
|
+
# metadata is still associated with the row it was first associated with (what
|
|
6893
|
+
# is now row 6). If the associated object is deleted then its metadata is
|
|
6894
|
+
# deleted too.
|
|
6875
6895
|
# Corresponds to the JSON property `developerMetadata`
|
|
6876
6896
|
# @return [Google::Apis::SheetsV4::DeveloperMetadata]
|
|
6877
6897
|
attr_accessor :developer_metadata
|
|
@@ -9034,7 +9054,9 @@ module Google
|
|
|
9034
9054
|
class SetBasicFilterRequest
|
|
9035
9055
|
include Google::Apis::Core::Hashable
|
|
9036
9056
|
|
|
9037
|
-
# The default filter associated with a sheet.
|
|
9057
|
+
# The default filter associated with a sheet. For more information, see [Manage
|
|
9058
|
+
# data visibility with filters](https://developers.google.com/workspace/sheets/
|
|
9059
|
+
# api/guides/filters).
|
|
9038
9060
|
# Corresponds to the JSON property `filter`
|
|
9039
9061
|
# @return [Google::Apis::SheetsV4::BasicFilter]
|
|
9040
9062
|
attr_accessor :filter
|
|
@@ -9104,7 +9126,9 @@ module Google
|
|
|
9104
9126
|
# @return [Array<Google::Apis::SheetsV4::BandedRange>]
|
|
9105
9127
|
attr_accessor :banded_ranges
|
|
9106
9128
|
|
|
9107
|
-
# The default filter associated with a sheet.
|
|
9129
|
+
# The default filter associated with a sheet. For more information, see [Manage
|
|
9130
|
+
# data visibility with filters](https://developers.google.com/workspace/sheets/
|
|
9131
|
+
# api/guides/filters).
|
|
9108
9132
|
# Corresponds to the JSON property `basicFilter`
|
|
9109
9133
|
# @return [Google::Apis::SheetsV4::BasicFilter]
|
|
9110
9134
|
attr_accessor :basic_filter
|
|
@@ -9446,7 +9470,7 @@ module Google
|
|
|
9446
9470
|
# @return [Google::Apis::SheetsV4::GridRange]
|
|
9447
9471
|
attr_accessor :data_range
|
|
9448
9472
|
|
|
9449
|
-
# Criteria for showing
|
|
9473
|
+
# Criteria for showing or hiding rows in a filter or filter view.
|
|
9450
9474
|
# Corresponds to the JSON property `filterCriteria`
|
|
9451
9475
|
# @return [Google::Apis::SheetsV4::FilterCriteria]
|
|
9452
9476
|
attr_accessor :filter_criteria
|
|
@@ -11127,14 +11151,16 @@ module Google
|
|
|
11127
11151
|
# @return [Array<Google::Apis::SheetsV4::DataFilter>]
|
|
11128
11152
|
attr_accessor :data_filters
|
|
11129
11153
|
|
|
11130
|
-
# Developer metadata associated with a location or object in a spreadsheet.
|
|
11131
|
-
#
|
|
11132
|
-
#
|
|
11133
|
-
#
|
|
11134
|
-
#
|
|
11135
|
-
#
|
|
11136
|
-
#
|
|
11137
|
-
# metadata is
|
|
11154
|
+
# Developer metadata associated with a location or object in a spreadsheet. For
|
|
11155
|
+
# more information, see [Read, write, and search metadata](https://developers.
|
|
11156
|
+
# google.com/workspace/sheets/api/guides/metadata). Developer metadata may be
|
|
11157
|
+
# used to associate arbitrary data with various parts of a spreadsheet and it
|
|
11158
|
+
# will remain associated at those locations as they move around and the
|
|
11159
|
+
# spreadsheet is edited. For example, if developer metadata is associated with
|
|
11160
|
+
# row 5 and another row is then subsequently inserted above row 5, that original
|
|
11161
|
+
# metadata is still associated with the row it was first associated with (what
|
|
11162
|
+
# is now row 6). If the associated object is deleted then its metadata is
|
|
11163
|
+
# deleted too.
|
|
11138
11164
|
# Corresponds to the JSON property `developerMetadata`
|
|
11139
11165
|
# @return [Google::Apis::SheetsV4::DeveloperMetadata]
|
|
11140
11166
|
attr_accessor :developer_metadata
|
|
@@ -11346,7 +11372,8 @@ module Google
|
|
|
11346
11372
|
# @return [String]
|
|
11347
11373
|
attr_accessor :fields
|
|
11348
11374
|
|
|
11349
|
-
# A filter view.
|
|
11375
|
+
# A filter view. For more information, see [Manage data visibility with filters](
|
|
11376
|
+
# https://developers.google.com/workspace/sheets/api/guides/filters).
|
|
11350
11377
|
# Corresponds to the JSON property `filter`
|
|
11351
11378
|
# @return [Google::Apis::SheetsV4::FilterView]
|
|
11352
11379
|
attr_accessor :filter
|
|
@@ -11536,6 +11563,8 @@ module Google
|
|
|
11536
11563
|
include Google::Apis::Core::Hashable
|
|
11537
11564
|
|
|
11538
11565
|
# Filter that describes what data should be selected or returned from a request.
|
|
11566
|
+
# For more information, see [Read, write, and search metadata](https://
|
|
11567
|
+
# developers.google.com/workspace/sheets/api/guides/metadata).
|
|
11539
11568
|
# Corresponds to the JSON property `dataFilter`
|
|
11540
11569
|
# @return [Google::Apis::SheetsV4::DataFilter]
|
|
11541
11570
|
attr_accessor :data_filter
|
|
@@ -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.47.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260213"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -180,17 +180,19 @@ module Google
|
|
|
180
180
|
end
|
|
181
181
|
|
|
182
182
|
# Returns the spreadsheet at the given ID. The caller must specify the
|
|
183
|
-
# spreadsheet ID.
|
|
184
|
-
#
|
|
185
|
-
#
|
|
186
|
-
#
|
|
187
|
-
#
|
|
188
|
-
#
|
|
189
|
-
#
|
|
190
|
-
#
|
|
191
|
-
#
|
|
192
|
-
#
|
|
193
|
-
#
|
|
183
|
+
# spreadsheet ID. For more information, see [Read, write, and search metadata](
|
|
184
|
+
# https://developers.google.com/workspace/sheets/api/guides/metadata). This
|
|
185
|
+
# method differs from GetSpreadsheet in that it allows selecting which subsets
|
|
186
|
+
# of spreadsheet data to return by specifying a dataFilters parameter. Multiple
|
|
187
|
+
# DataFilters can be specified. Specifying one or more data filters returns the
|
|
188
|
+
# portions of the spreadsheet that intersect ranges matched by any of the
|
|
189
|
+
# filters. By default, data within grids is not returned. You can include grid
|
|
190
|
+
# data in one of two ways: * Specify a [field mask](https://developers.google.
|
|
191
|
+
# com/workspace/sheets/api/guides/field-masks) listing your desired fields using
|
|
192
|
+
# the `fields` URL parameter in HTTP. * Set the includeGridData parameter to `
|
|
193
|
+
# true`. If a field mask is set, the `includeGridData` parameter is ignored. For
|
|
194
|
+
# large spreadsheets, as a best practice, retrieve only the specific spreadsheet
|
|
195
|
+
# fields that you want.
|
|
194
196
|
# @param [String] spreadsheet_id
|
|
195
197
|
# The spreadsheet to request.
|
|
196
198
|
# @param [Google::Apis::SheetsV4::GetSpreadsheetByDataFilterRequest] get_spreadsheet_by_data_filter_request_object
|
|
@@ -224,7 +226,9 @@ module Google
|
|
|
224
226
|
end
|
|
225
227
|
|
|
226
228
|
# Returns the developer metadata with the specified ID. The caller must specify
|
|
227
|
-
# the spreadsheet ID and the developer metadata's unique metadataId.
|
|
229
|
+
# the spreadsheet ID and the developer metadata's unique metadataId. For more
|
|
230
|
+
# information, see [Read, write, and search metadata](https://developers.google.
|
|
231
|
+
# com/workspace/sheets/api/guides/metadata).
|
|
228
232
|
# @param [String] spreadsheet_id
|
|
229
233
|
# The ID of the spreadsheet to retrieve metadata from.
|
|
230
234
|
# @param [Fixnum] metadata_id
|
|
@@ -257,11 +261,13 @@ module Google
|
|
|
257
261
|
execute_or_queue_command(command, &block)
|
|
258
262
|
end
|
|
259
263
|
|
|
260
|
-
# Returns all developer metadata matching the specified DataFilter.
|
|
261
|
-
#
|
|
262
|
-
#
|
|
263
|
-
# represents a
|
|
264
|
-
#
|
|
264
|
+
# Returns all developer metadata matching the specified DataFilter. For more
|
|
265
|
+
# information, see [Read, write, and search metadata](https://developers.google.
|
|
266
|
+
# com/workspace/sheets/api/guides/metadata). If the provided DataFilter
|
|
267
|
+
# represents a DeveloperMetadataLookup object, this will return all
|
|
268
|
+
# DeveloperMetadata entries selected by it. If the DataFilter represents a
|
|
269
|
+
# location in a spreadsheet, this will return all developer metadata associated
|
|
270
|
+
# with locations intersecting that region.
|
|
265
271
|
# @param [String] spreadsheet_id
|
|
266
272
|
# The ID of the spreadsheet to retrieve metadata from.
|
|
267
273
|
# @param [Google::Apis::SheetsV4::SearchDeveloperMetadataRequest] search_developer_metadata_request_object
|
|
@@ -433,11 +439,12 @@ module Google
|
|
|
433
439
|
execute_or_queue_command(command, &block)
|
|
434
440
|
end
|
|
435
441
|
|
|
436
|
-
# Clears one or more ranges of values from a spreadsheet.
|
|
437
|
-
#
|
|
438
|
-
#
|
|
439
|
-
#
|
|
440
|
-
#
|
|
442
|
+
# Clears one or more ranges of values from a spreadsheet. For more information,
|
|
443
|
+
# see [Read, write, and search metadata](https://developers.google.com/workspace/
|
|
444
|
+
# sheets/api/guides/metadata). The caller must specify the spreadsheet ID and
|
|
445
|
+
# one or more DataFilters. Ranges matching any of the specified data filters
|
|
446
|
+
# will be cleared. Only values are cleared -- all other properties of the cell (
|
|
447
|
+
# such as formatting, data validation, etc.) are kept.
|
|
441
448
|
# @param [String] spreadsheet_id
|
|
442
449
|
# The ID of the spreadsheet to update.
|
|
443
450
|
# @param [Google::Apis::SheetsV4::BatchClearValuesByDataFilterRequest] batch_clear_values_by_data_filter_request_object
|
|
@@ -521,8 +528,10 @@ module Google
|
|
|
521
528
|
end
|
|
522
529
|
|
|
523
530
|
# Returns one or more ranges of values that match the specified data filters.
|
|
524
|
-
#
|
|
525
|
-
#
|
|
531
|
+
# For more information, see [Read, write, and search metadata](https://
|
|
532
|
+
# developers.google.com/workspace/sheets/api/guides/metadata). The caller must
|
|
533
|
+
# specify the spreadsheet ID and one or more DataFilters. Ranges that match any
|
|
534
|
+
# of the data filters in the request will be returned.
|
|
526
535
|
# @param [String] spreadsheet_id
|
|
527
536
|
# The ID of the spreadsheet to retrieve data from.
|
|
528
537
|
# @param [Google::Apis::SheetsV4::BatchGetValuesByDataFilterRequest] batch_get_values_by_data_filter_request_object
|
|
@@ -589,8 +598,10 @@ module Google
|
|
|
589
598
|
execute_or_queue_command(command, &block)
|
|
590
599
|
end
|
|
591
600
|
|
|
592
|
-
# Sets values in one or more ranges of a spreadsheet.
|
|
593
|
-
#
|
|
601
|
+
# Sets values in one or more ranges of a spreadsheet. For more information, see [
|
|
602
|
+
# Read, write, and search metadata](https://developers.google.com/workspace/
|
|
603
|
+
# sheets/api/guides/metadata). The caller must specify the spreadsheet ID, a
|
|
604
|
+
# valueInputOption, and one or more DataFilterValueRanges.
|
|
594
605
|
# @param [String] spreadsheet_id
|
|
595
606
|
# The ID of the spreadsheet to update.
|
|
596
607
|
# @param [Google::Apis::SheetsV4::BatchUpdateValuesByDataFilterRequest] batch_update_values_by_data_filter_request_object
|
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.47.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.47.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:
|