google-apis-sheets_v4 0.11.0 → 0.14.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 +13 -0
- data/lib/google/apis/sheets_v4/classes.rb +303 -299
- data/lib/google/apis/sheets_v4/gem_version.rb +3 -3
- data/lib/google/apis/sheets_v4/service.rb +33 -27
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a94baca6111a898948fa04490a9d9d6e1d8b94751c29e94c374eb3e6e23e209d
|
4
|
+
data.tar.gz: 2a13c225be7513c38aa1dd7ef28635211a6436e47ad9e3963f5120ff1323beb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 664314a3702cf135c3bf0d59f26d3f618acca589a00f5565b7df5579ada5b6cf5e2fa1b7bb471da6d854732959c6f3a2115abd202302028e04591e9a420a6373
|
7
|
+
data.tar.gz: 73ebc1310ea9955450abc43e7ddd8c230933cbdc3f31fc69932702657c4c48b52809d438ad2c93f6f4251be61e5300cad3a4f7bf0cb604cc40fdbcea9081f0ac
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-sheets_v4
|
2
2
|
|
3
|
+
### v0.14.0 (2022-06-02)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.13.0 (2022-04-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220411
|
10
|
+
|
11
|
+
### v0.12.0 (2022-03-15)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220308
|
14
|
+
* Regenerated using generator version 0.4.1
|
15
|
+
|
3
16
|
### v0.11.0 (2021-12-16)
|
4
17
|
|
5
18
|
* Unspecified changes
|
@@ -528,16 +528,16 @@ module Google
|
|
528
528
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
529
529
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
530
530
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
531
|
-
# example, if `"Sheet1"` is sheet ID
|
532
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
533
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
534
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
535
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
536
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
537
|
-
# sheet_id:
|
538
|
-
# If the start index equals the end index, then the
|
539
|
-
# ranges are typically not meaningful and are usually
|
540
|
-
# REF!`.
|
531
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
532
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
533
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
534
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
535
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
536
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
537
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
538
|
+
# equal to the end index. If the start index equals the end index, then the
|
539
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
540
|
+
# rendered in the UI as `#REF!`.
|
541
541
|
# Corresponds to the JSON property `range`
|
542
542
|
# @return [Google::Apis::SheetsV4::GridRange]
|
543
543
|
attr_accessor :range
|
@@ -620,16 +620,16 @@ module Google
|
|
620
620
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
621
621
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
622
622
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
623
|
-
# example, if `"Sheet1"` is sheet ID
|
624
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
625
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
626
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
627
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
628
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
629
|
-
# sheet_id:
|
630
|
-
# If the start index equals the end index, then the
|
631
|
-
# ranges are typically not meaningful and are usually
|
632
|
-
# REF!`.
|
623
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
624
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
625
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
626
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
627
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
628
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
629
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
630
|
+
# equal to the end index. If the start index equals the end index, then the
|
631
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
632
|
+
# rendered in the UI as `#REF!`.
|
633
633
|
# Corresponds to the JSON property `range`
|
634
634
|
# @return [Google::Apis::SheetsV4::GridRange]
|
635
635
|
attr_accessor :range
|
@@ -1374,16 +1374,16 @@ module Google
|
|
1374
1374
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
1375
1375
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
1376
1376
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
1377
|
-
# example, if `"Sheet1"` is sheet ID
|
1378
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
1379
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
1380
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
1381
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
1382
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
1383
|
-
# sheet_id:
|
1384
|
-
# If the start index equals the end index, then the
|
1385
|
-
# ranges are typically not meaningful and are usually
|
1386
|
-
# REF!`.
|
1377
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
1378
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
1379
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
1380
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
1381
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
1382
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
1383
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
1384
|
+
# equal to the end index. If the start index equals the end index, then the
|
1385
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
1386
|
+
# rendered in the UI as `#REF!`.
|
1387
1387
|
# Corresponds to the JSON property `range`
|
1388
1388
|
# @return [Google::Apis::SheetsV4::GridRange]
|
1389
1389
|
attr_accessor :range
|
@@ -1513,9 +1513,10 @@ module Google
|
|
1513
1513
|
class BatchClearValuesByDataFilterResponse
|
1514
1514
|
include Google::Apis::Core::Hashable
|
1515
1515
|
|
1516
|
-
# The ranges that were cleared, in A1 notation
|
1517
|
-
# unbounded range or a ranger larger than the
|
1518
|
-
# actual ranges that were cleared, bounded to
|
1516
|
+
# The ranges that were cleared, in [A1 notation](/sheets/api/guides/concepts#
|
1517
|
+
# cell). If the requests are for an unbounded range or a ranger larger than the
|
1518
|
+
# bounds of the sheet, this is the actual ranges that were cleared, bounded to
|
1519
|
+
# the sheet's limits.
|
1519
1520
|
# Corresponds to the JSON property `clearedRanges`
|
1520
1521
|
# @return [Array<String>]
|
1521
1522
|
attr_accessor :cleared_ranges
|
@@ -1540,7 +1541,8 @@ module Google
|
|
1540
1541
|
class BatchClearValuesRequest
|
1541
1542
|
include Google::Apis::Core::Hashable
|
1542
1543
|
|
1543
|
-
# The ranges to clear, in A1 or R1C1 notation
|
1544
|
+
# The ranges to clear, in [A1 notation or R1C1 notation](/sheets/api/guides/
|
1545
|
+
# concepts#cell).
|
1544
1546
|
# Corresponds to the JSON property `ranges`
|
1545
1547
|
# @return [Array<String>]
|
1546
1548
|
attr_accessor :ranges
|
@@ -3417,16 +3419,16 @@ module Google
|
|
3417
3419
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
3418
3420
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
3419
3421
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
3420
|
-
# example, if `"Sheet1"` is sheet ID
|
3421
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
3422
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
3423
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
3424
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
3425
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
3426
|
-
# sheet_id:
|
3427
|
-
# If the start index equals the end index, then the
|
3428
|
-
# ranges are typically not meaningful and are usually
|
3429
|
-
# REF!`.
|
3422
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
3423
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
3424
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
3425
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
3426
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
3427
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
3428
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
3429
|
+
# equal to the end index. If the start index equals the end index, then the
|
3430
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
3431
|
+
# rendered in the UI as `#REF!`.
|
3430
3432
|
# Corresponds to the JSON property `destination`
|
3431
3433
|
# @return [Google::Apis::SheetsV4::GridRange]
|
3432
3434
|
attr_accessor :destination
|
@@ -3444,16 +3446,16 @@ module Google
|
|
3444
3446
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
3445
3447
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
3446
3448
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
3447
|
-
# example, if `"Sheet1"` is sheet ID
|
3448
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
3449
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
3450
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
3451
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
3452
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
3453
|
-
# sheet_id:
|
3454
|
-
# If the start index equals the end index, then the
|
3455
|
-
# ranges are typically not meaningful and are usually
|
3456
|
-
# REF!`.
|
3449
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
3450
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
3451
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
3452
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
3453
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
3454
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
3455
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
3456
|
+
# equal to the end index. If the start index equals the end index, then the
|
3457
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
3458
|
+
# rendered in the UI as `#REF!`.
|
3457
3459
|
# Corresponds to the JSON property `source`
|
3458
3460
|
# @return [Google::Apis::SheetsV4::GridRange]
|
3459
3461
|
attr_accessor :source
|
@@ -3560,16 +3562,16 @@ module Google
|
|
3560
3562
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
3561
3563
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
3562
3564
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
3563
|
-
# example, if `"Sheet1"` is sheet ID
|
3564
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
3565
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
3566
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
3567
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
3568
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
3569
|
-
# sheet_id:
|
3570
|
-
# If the start index equals the end index, then the
|
3571
|
-
# ranges are typically not meaningful and are usually
|
3572
|
-
# REF!`.
|
3565
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
3566
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
3567
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
3568
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
3569
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
3570
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
3571
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
3572
|
+
# equal to the end index. If the start index equals the end index, then the
|
3573
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
3574
|
+
# rendered in the UI as `#REF!`.
|
3573
3575
|
# Corresponds to the JSON property `source`
|
3574
3576
|
# @return [Google::Apis::SheetsV4::GridRange]
|
3575
3577
|
attr_accessor :source
|
@@ -3656,16 +3658,16 @@ module Google
|
|
3656
3658
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
3657
3659
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
3658
3660
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
3659
|
-
# example, if `"Sheet1"` is sheet ID
|
3660
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
3661
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
3662
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
3663
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
3664
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
3665
|
-
# sheet_id:
|
3666
|
-
# If the start index equals the end index, then the
|
3667
|
-
# ranges are typically not meaningful and are usually
|
3668
|
-
# REF!`.
|
3661
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
3662
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
3663
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
3664
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
3665
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
3666
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
3667
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
3668
|
+
# equal to the end index. If the start index equals the end index, then the
|
3669
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
3670
|
+
# rendered in the UI as `#REF!`.
|
3669
3671
|
# Corresponds to the JSON property `gridRange`
|
3670
3672
|
# @return [Google::Apis::SheetsV4::GridRange]
|
3671
3673
|
attr_accessor :grid_range
|
@@ -3991,16 +3993,16 @@ module Google
|
|
3991
3993
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
3992
3994
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
3993
3995
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
3994
|
-
# example, if `"Sheet1"` is sheet ID
|
3995
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
3996
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
3997
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
3998
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
3999
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
4000
|
-
# sheet_id:
|
4001
|
-
# If the start index equals the end index, then the
|
4002
|
-
# ranges are typically not meaningful and are usually
|
4003
|
-
# REF!`.
|
3996
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
3997
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
3998
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
3999
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
4000
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
4001
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
4002
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
4003
|
+
# equal to the end index. If the start index equals the end index, then the
|
4004
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
4005
|
+
# rendered in the UI as `#REF!`.
|
4004
4006
|
# Corresponds to the JSON property `range`
|
4005
4007
|
# @return [Google::Apis::SheetsV4::GridRange]
|
4006
4008
|
attr_accessor :range
|
@@ -4587,16 +4589,16 @@ module Google
|
|
4587
4589
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
4588
4590
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
4589
4591
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
4590
|
-
# example, if `"Sheet1"` is sheet ID
|
4591
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
4592
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
4593
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
4594
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
4595
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
4596
|
-
# sheet_id:
|
4597
|
-
# If the start index equals the end index, then the
|
4598
|
-
# ranges are typically not meaningful and are usually
|
4599
|
-
# REF!`.
|
4592
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
4593
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
4594
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
4595
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
4596
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
4597
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
4598
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
4599
|
+
# equal to the end index. If the start index equals the end index, then the
|
4600
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
4601
|
+
# rendered in the UI as `#REF!`.
|
4600
4602
|
# Corresponds to the JSON property `range`
|
4601
4603
|
# @return [Google::Apis::SheetsV4::GridRange]
|
4602
4604
|
attr_accessor :range
|
@@ -4714,16 +4716,16 @@ module Google
|
|
4714
4716
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
4715
4717
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
4716
4718
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
4717
|
-
# example, if `"Sheet1"` is sheet ID
|
4718
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
4719
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
4720
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
4721
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
4722
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
4723
|
-
# sheet_id:
|
4724
|
-
# If the start index equals the end index, then the
|
4725
|
-
# ranges are typically not meaningful and are usually
|
4726
|
-
# REF!`.
|
4719
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
4720
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
4721
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
4722
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
4723
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
4724
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
4725
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
4726
|
+
# equal to the end index. If the start index equals the end index, then the
|
4727
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
4728
|
+
# rendered in the UI as `#REF!`.
|
4727
4729
|
# Corresponds to the JSON property `range`
|
4728
4730
|
# @return [Google::Apis::SheetsV4::GridRange]
|
4729
4731
|
attr_accessor :range
|
@@ -5613,16 +5615,16 @@ module Google
|
|
5613
5615
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
5614
5616
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
5615
5617
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
5616
|
-
# example, if `"Sheet1"` is sheet ID
|
5617
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
5618
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
5619
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
5620
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
5621
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
5622
|
-
# sheet_id:
|
5623
|
-
# If the start index equals the end index, then the
|
5624
|
-
# ranges are typically not meaningful and are usually
|
5625
|
-
# REF!`.
|
5618
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
5619
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
5620
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
5621
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
5622
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
5623
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
5624
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
5625
|
+
# equal to the end index. If the start index equals the end index, then the
|
5626
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
5627
|
+
# rendered in the UI as `#REF!`.
|
5626
5628
|
# Corresponds to the JSON property `range`
|
5627
5629
|
# @return [Google::Apis::SheetsV4::GridRange]
|
5628
5630
|
attr_accessor :range
|
@@ -5691,16 +5693,16 @@ module Google
|
|
5691
5693
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
5692
5694
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
5693
5695
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
5694
|
-
# example, if `"Sheet1"` is sheet ID
|
5695
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
5696
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
5697
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
5698
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
5699
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
5700
|
-
# sheet_id:
|
5701
|
-
# If the start index equals the end index, then the
|
5702
|
-
# ranges are typically not meaningful and are usually
|
5703
|
-
# REF!`.
|
5696
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
5697
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
5698
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
5699
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
5700
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
5701
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
5702
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
5703
|
+
# equal to the end index. If the start index equals the end index, then the
|
5704
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
5705
|
+
# rendered in the UI as `#REF!`.
|
5704
5706
|
# Corresponds to the JSON property `range`
|
5705
5707
|
# @return [Google::Apis::SheetsV4::GridRange]
|
5706
5708
|
attr_accessor :range
|
@@ -5991,16 +5993,16 @@ module Google
|
|
5991
5993
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
5992
5994
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
5993
5995
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
5994
|
-
# example, if `"Sheet1"` is sheet ID
|
5995
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
5996
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
5997
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
5998
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
5999
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
6000
|
-
# sheet_id:
|
6001
|
-
# If the start index equals the end index, then the
|
6002
|
-
# ranges are typically not meaningful and are usually
|
6003
|
-
# REF!`.
|
5996
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
5997
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
5998
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
5999
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
6000
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
6001
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
6002
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
6003
|
+
# equal to the end index. If the start index equals the end index, then the
|
6004
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
6005
|
+
# rendered in the UI as `#REF!`.
|
6004
6006
|
class GridRange
|
6005
6007
|
include Google::Apis::Core::Hashable
|
6006
6008
|
|
@@ -6268,16 +6270,16 @@ module Google
|
|
6268
6270
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
6269
6271
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
6270
6272
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
6271
|
-
# example, if `"Sheet1"` is sheet ID
|
6272
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
6273
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
6274
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
6275
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
6276
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
6277
|
-
# sheet_id:
|
6278
|
-
# If the start index equals the end index, then the
|
6279
|
-
# ranges are typically not meaningful and are usually
|
6280
|
-
# REF!`.
|
6273
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
6274
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
6275
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
6276
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
6277
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
6278
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
6279
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
6280
|
+
# equal to the end index. If the start index equals the end index, then the
|
6281
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
6282
|
+
# rendered in the UI as `#REF!`.
|
6281
6283
|
# Corresponds to the JSON property `range`
|
6282
6284
|
# @return [Google::Apis::SheetsV4::GridRange]
|
6283
6285
|
attr_accessor :range
|
@@ -6640,16 +6642,16 @@ module Google
|
|
6640
6642
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
6641
6643
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
6642
6644
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
6643
|
-
# example, if `"Sheet1"` is sheet ID
|
6644
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
6645
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
6646
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
6647
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
6648
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
6649
|
-
# sheet_id:
|
6650
|
-
# If the start index equals the end index, then the
|
6651
|
-
# ranges are typically not meaningful and are usually
|
6652
|
-
# REF!`.
|
6645
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
6646
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
6647
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
6648
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
6649
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
6650
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
6651
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
6652
|
+
# equal to the end index. If the start index equals the end index, then the
|
6653
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
6654
|
+
# rendered in the UI as `#REF!`.
|
6653
6655
|
# Corresponds to the JSON property `range`
|
6654
6656
|
# @return [Google::Apis::SheetsV4::GridRange]
|
6655
6657
|
attr_accessor :range
|
@@ -6717,16 +6719,16 @@ module Google
|
|
6717
6719
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
6718
6720
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
6719
6721
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
6720
|
-
# example, if `"Sheet1"` is sheet ID
|
6721
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
6722
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
6723
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
6724
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
6725
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
6726
|
-
# sheet_id:
|
6727
|
-
# If the start index equals the end index, then the
|
6728
|
-
# ranges are typically not meaningful and are usually
|
6729
|
-
# REF!`.
|
6722
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
6723
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
6724
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
6725
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
6726
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
6727
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
6728
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
6729
|
+
# equal to the end index. If the start index equals the end index, then the
|
6730
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
6731
|
+
# rendered in the UI as `#REF!`.
|
6730
6732
|
# Corresponds to the JSON property `range`
|
6731
6733
|
# @return [Google::Apis::SheetsV4::GridRange]
|
6732
6734
|
attr_accessor :range
|
@@ -7472,16 +7474,16 @@ module Google
|
|
7472
7474
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
7473
7475
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
7474
7476
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
7475
|
-
# example, if `"Sheet1"` is sheet ID
|
7476
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
7477
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
7478
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
7479
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
7480
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
7481
|
-
# sheet_id:
|
7482
|
-
# If the start index equals the end index, then the
|
7483
|
-
# ranges are typically not meaningful and are usually
|
7484
|
-
# REF!`.
|
7477
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
7478
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
7479
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
7480
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
7481
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
7482
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
7483
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
7484
|
+
# equal to the end index. If the start index equals the end index, then the
|
7485
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
7486
|
+
# rendered in the UI as `#REF!`.
|
7485
7487
|
# Corresponds to the JSON property `source`
|
7486
7488
|
# @return [Google::Apis::SheetsV4::GridRange]
|
7487
7489
|
attr_accessor :source
|
@@ -7626,16 +7628,16 @@ module Google
|
|
7626
7628
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
7627
7629
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
7628
7630
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
7629
|
-
# example, if `"Sheet1"` is sheet ID
|
7630
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
7631
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
7632
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
7633
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
7634
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
7635
|
-
# sheet_id:
|
7636
|
-
# If the start index equals the end index, then the
|
7637
|
-
# ranges are typically not meaningful and are usually
|
7638
|
-
# REF!`.
|
7631
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
7632
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
7633
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
7634
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
7635
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
7636
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
7637
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
7638
|
+
# equal to the end index. If the start index equals the end index, then the
|
7639
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
7640
|
+
# rendered in the UI as `#REF!`.
|
7639
7641
|
# Corresponds to the JSON property `range`
|
7640
7642
|
# @return [Google::Apis::SheetsV4::GridRange]
|
7641
7643
|
attr_accessor :range
|
@@ -7689,16 +7691,16 @@ module Google
|
|
7689
7691
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
7690
7692
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
7691
7693
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
7692
|
-
# example, if `"Sheet1"` is sheet ID
|
7693
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
7694
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
7695
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
7696
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
7697
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
7698
|
-
# sheet_id:
|
7699
|
-
# If the start index equals the end index, then the
|
7700
|
-
# ranges are typically not meaningful and are usually
|
7701
|
-
# REF!`.
|
7694
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
7695
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
7696
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
7697
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
7698
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
7699
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
7700
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
7701
|
+
# equal to the end index. If the start index equals the end index, then the
|
7702
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
7703
|
+
# rendered in the UI as `#REF!`.
|
7702
7704
|
# Corresponds to the JSON property `range`
|
7703
7705
|
# @return [Google::Apis::SheetsV4::GridRange]
|
7704
7706
|
attr_accessor :range
|
@@ -7839,16 +7841,16 @@ module Google
|
|
7839
7841
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
7840
7842
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
7841
7843
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
7842
|
-
# example, if `"Sheet1"` is sheet ID
|
7843
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
7844
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
7845
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
7846
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
7847
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
7848
|
-
# sheet_id:
|
7849
|
-
# If the start index equals the end index, then the
|
7850
|
-
# ranges are typically not meaningful and are usually
|
7851
|
-
# REF!`.
|
7844
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
7845
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
7846
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
7847
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
7848
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
7849
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
7850
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
7851
|
+
# equal to the end index. If the start index equals the end index, then the
|
7852
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
7853
|
+
# rendered in the UI as `#REF!`.
|
7852
7854
|
# Corresponds to the JSON property `range`
|
7853
7855
|
# @return [Google::Apis::SheetsV4::GridRange]
|
7854
7856
|
attr_accessor :range
|
@@ -8642,16 +8644,16 @@ module Google
|
|
8642
8644
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
8643
8645
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
8644
8646
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
8645
|
-
# example, if `"Sheet1"` is sheet ID
|
8646
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
8647
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
8648
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
8649
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
8650
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
8651
|
-
# sheet_id:
|
8652
|
-
# If the start index equals the end index, then the
|
8653
|
-
# ranges are typically not meaningful and are usually
|
8654
|
-
# REF!`.
|
8647
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
8648
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
8649
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
8650
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
8651
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
8652
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
8653
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
8654
|
+
# equal to the end index. If the start index equals the end index, then the
|
8655
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
8656
|
+
# rendered in the UI as `#REF!`.
|
8655
8657
|
# Corresponds to the JSON property `range`
|
8656
8658
|
# @return [Google::Apis::SheetsV4::GridRange]
|
8657
8659
|
attr_accessor :range
|
@@ -9002,16 +9004,16 @@ module Google
|
|
9002
9004
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
9003
9005
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
9004
9006
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
9005
|
-
# example, if `"Sheet1"` is sheet ID
|
9006
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
9007
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
9008
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
9009
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
9010
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
9011
|
-
# sheet_id:
|
9012
|
-
# If the start index equals the end index, then the
|
9013
|
-
# ranges are typically not meaningful and are usually
|
9014
|
-
# REF!`.
|
9007
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
9008
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
9009
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
9010
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
9011
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
9012
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
9013
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
9014
|
+
# equal to the end index. If the start index equals the end index, then the
|
9015
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
9016
|
+
# rendered in the UI as `#REF!`.
|
9015
9017
|
# Corresponds to the JSON property `dataRange`
|
9016
9018
|
# @return [Google::Apis::SheetsV4::GridRange]
|
9017
9019
|
attr_accessor :data_range
|
@@ -9063,16 +9065,16 @@ module Google
|
|
9063
9065
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
9064
9066
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
9065
9067
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
9066
|
-
# example, if `"Sheet1"` is sheet ID
|
9067
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
9068
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
9069
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
9070
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
9071
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
9072
|
-
# sheet_id:
|
9073
|
-
# If the start index equals the end index, then the
|
9074
|
-
# ranges are typically not meaningful and are usually
|
9075
|
-
# REF!`.
|
9068
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
9069
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
9070
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
9071
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
9072
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
9073
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
9074
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
9075
|
+
# equal to the end index. If the start index equals the end index, then the
|
9076
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
9077
|
+
# rendered in the UI as `#REF!`.
|
9076
9078
|
# Corresponds to the JSON property `range`
|
9077
9079
|
# @return [Google::Apis::SheetsV4::GridRange]
|
9078
9080
|
attr_accessor :range
|
@@ -9256,16 +9258,16 @@ module Google
|
|
9256
9258
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
9257
9259
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
9258
9260
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
9259
|
-
# example, if `"Sheet1"` is sheet ID
|
9260
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
9261
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
9262
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
9263
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
9264
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
9265
|
-
# sheet_id:
|
9266
|
-
# If the start index equals the end index, then the
|
9267
|
-
# ranges are typically not meaningful and are usually
|
9268
|
-
# REF!`.
|
9261
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
9262
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
9263
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
9264
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
9265
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
9266
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
9267
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
9268
|
+
# equal to the end index. If the start index equals the end index, then the
|
9269
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
9270
|
+
# rendered in the UI as `#REF!`.
|
9269
9271
|
# Corresponds to the JSON property `source`
|
9270
9272
|
# @return [Google::Apis::SheetsV4::GridRange]
|
9271
9273
|
attr_accessor :source
|
@@ -9643,16 +9645,16 @@ module Google
|
|
9643
9645
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
9644
9646
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
9645
9647
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
9646
|
-
# example, if `"Sheet1"` is sheet ID
|
9647
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
9648
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
9649
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
9650
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
9651
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
9652
|
-
# sheet_id:
|
9653
|
-
# If the start index equals the end index, then the
|
9654
|
-
# ranges are typically not meaningful and are usually
|
9655
|
-
# REF!`.
|
9648
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
9649
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
9650
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
9651
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
9652
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
9653
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
9654
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
9655
|
+
# equal to the end index. If the start index equals the end index, then the
|
9656
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
9657
|
+
# rendered in the UI as `#REF!`.
|
9656
9658
|
# Corresponds to the JSON property `source`
|
9657
9659
|
# @return [Google::Apis::SheetsV4::GridRange]
|
9658
9660
|
attr_accessor :source
|
@@ -10131,16 +10133,16 @@ module Google
|
|
10131
10133
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
10132
10134
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
10133
10135
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
10134
|
-
# example, if `"Sheet1"` is sheet ID
|
10135
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
10136
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
10137
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
10138
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
10139
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
10140
|
-
# sheet_id:
|
10141
|
-
# If the start index equals the end index, then the
|
10142
|
-
# ranges are typically not meaningful and are usually
|
10143
|
-
# REF!`.
|
10136
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
10137
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
10138
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
10139
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
10140
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
10141
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
10142
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
10143
|
+
# equal to the end index. If the start index equals the end index, then the
|
10144
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
10145
|
+
# rendered in the UI as `#REF!`.
|
10144
10146
|
# Corresponds to the JSON property `range`
|
10145
10147
|
# @return [Google::Apis::SheetsV4::GridRange]
|
10146
10148
|
attr_accessor :range
|
@@ -10181,16 +10183,16 @@ module Google
|
|
10181
10183
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
10182
10184
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
10183
10185
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
10184
|
-
# example, if `"Sheet1"` is sheet ID
|
10185
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
10186
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
10187
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
10188
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
10189
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
10190
|
-
# sheet_id:
|
10191
|
-
# If the start index equals the end index, then the
|
10192
|
-
# ranges are typically not meaningful and are usually
|
10193
|
-
# REF!`.
|
10186
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
10187
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
10188
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
10189
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
10190
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
10191
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
10192
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
10193
|
+
# equal to the end index. If the start index equals the end index, then the
|
10194
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
10195
|
+
# rendered in the UI as `#REF!`.
|
10194
10196
|
# Corresponds to the JSON property `range`
|
10195
10197
|
# @return [Google::Apis::SheetsV4::GridRange]
|
10196
10198
|
attr_accessor :range
|
@@ -10264,16 +10266,16 @@ module Google
|
|
10264
10266
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
10265
10267
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
10266
10268
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
10267
|
-
# example, if `"Sheet1"` is sheet ID
|
10268
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
10269
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
10270
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
10271
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
10272
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
10273
|
-
# sheet_id:
|
10274
|
-
# If the start index equals the end index, then the
|
10275
|
-
# ranges are typically not meaningful and are usually
|
10276
|
-
# REF!`.
|
10269
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
10270
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
10271
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
10272
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
10273
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
10274
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
10275
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
10276
|
+
# equal to the end index. If the start index equals the end index, then the
|
10277
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
10278
|
+
# rendered in the UI as `#REF!`.
|
10277
10279
|
# Corresponds to the JSON property `range`
|
10278
10280
|
# @return [Google::Apis::SheetsV4::GridRange]
|
10279
10281
|
attr_accessor :range
|
@@ -10318,16 +10320,16 @@ module Google
|
|
10318
10320
|
# A range on a sheet. All indexes are zero-based. Indexes are half open, i.e.
|
10319
10321
|
# the start index is inclusive and the end index is exclusive -- [start_index,
|
10320
10322
|
# end_index). Missing indexes indicate the range is unbounded on that side. For
|
10321
|
-
# example, if `"Sheet1"` is sheet ID
|
10322
|
-
# start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
10323
|
-
# 1` `Sheet1!A3:B4 == sheet_id:
|
10324
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
10325
|
-
# start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
10326
|
-
# start_row_index: 4, start_column_index: 0, end_column_index:
|
10327
|
-
# sheet_id:
|
10328
|
-
# If the start index equals the end index, then the
|
10329
|
-
# ranges are typically not meaningful and are usually
|
10330
|
-
# REF!`.
|
10323
|
+
# example, if `"Sheet1"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id:
|
10324
|
+
# 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0,
|
10325
|
+
# end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2,
|
10326
|
+
# end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B ==
|
10327
|
+
# sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B ==
|
10328
|
+
# sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index:
|
10329
|
+
# 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or
|
10330
|
+
# equal to the end index. If the start index equals the end index, then the
|
10331
|
+
# range is empty. Empty ranges are typically not meaningful and are usually
|
10332
|
+
# rendered in the UI as `#REF!`.
|
10331
10333
|
# Corresponds to the JSON property `range`
|
10332
10334
|
# @return [Google::Apis::SheetsV4::GridRange]
|
10333
10335
|
attr_accessor :range
|
@@ -10934,7 +10936,8 @@ module Google
|
|
10934
10936
|
# @return [Google::Apis::SheetsV4::ValueRange]
|
10935
10937
|
attr_accessor :updated_data
|
10936
10938
|
|
10937
|
-
# The range (in A1 notation) that updates
|
10939
|
+
# The range (in [A1 notation](/sheets/api/guides/concepts#cell)) that updates
|
10940
|
+
# were applied to.
|
10938
10941
|
# Corresponds to the JSON property `updatedRange`
|
10939
10942
|
# @return [String]
|
10940
10943
|
attr_accessor :updated_range
|
@@ -11023,10 +11026,11 @@ module Google
|
|
11023
11026
|
# @return [String]
|
11024
11027
|
attr_accessor :major_dimension
|
11025
11028
|
|
11026
|
-
# The range the values cover, in A1 notation.
|
11027
|
-
# the entire requested range, even though the
|
11028
|
-
# and columns. When appending values, this
|
11029
|
-
# for a table, after which values will be
|
11029
|
+
# The range the values cover, in [A1 notation](/sheets/api/guides/concepts#cell).
|
11030
|
+
# For output, this range indicates the entire requested range, even though the
|
11031
|
+
# values will exclude trailing rows and columns. When appending values, this
|
11032
|
+
# field represents the range to search for a table, after which values will be
|
11033
|
+
# appended.
|
11030
11034
|
# Corresponds to the JSON property `range`
|
11031
11035
|
# @return [String]
|
11032
11036
|
attr_accessor :range
|
@@ -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.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220411"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,15 +124,19 @@ module Google
|
|
124
124
|
end
|
125
125
|
|
126
126
|
# Returns the spreadsheet at the given ID. The caller must specify the
|
127
|
-
# spreadsheet ID. By default, data within grids
|
128
|
-
#
|
129
|
-
#
|
127
|
+
# spreadsheet ID. By default, data within grids is not returned. You can include
|
128
|
+
# grid data in one of 2 ways: * Specify a field mask listing your desired fields
|
129
|
+
# using the `fields` URL parameter in HTTP * Set the includeGridData URL
|
130
130
|
# parameter to true. If a field mask is set, the `includeGridData` parameter is
|
131
|
-
# ignored For large spreadsheets,
|
132
|
-
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
131
|
+
# ignored For large spreadsheets, as a best practice, retrieve only the specific
|
132
|
+
# spreadsheet fields that you want. To retrieve only subsets of spreadsheet data,
|
133
|
+
# use the ranges URL parameter. Ranges are specified using [A1 notation](/
|
134
|
+
# sheets/api/guides/concepts#cell). You can define a single cell (for example, `
|
135
|
+
# A1`) or multiple cells (for example, `A1:D5`). You can also get cells from
|
136
|
+
# other sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or
|
137
|
+
# retrieve multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:
|
138
|
+
# C4`). Limiting the range returns only the portions of the spreadsheet that
|
139
|
+
# intersect the requested ranges.
|
136
140
|
# @param [String] spreadsheet_id
|
137
141
|
# The spreadsheet to request.
|
138
142
|
# @param [Boolean] include_grid_data
|
@@ -173,14 +177,13 @@ module Google
|
|
173
177
|
# spreadsheet ID. This method differs from GetSpreadsheet in that it allows
|
174
178
|
# selecting which subsets of spreadsheet data to return by specifying a
|
175
179
|
# dataFilters parameter. Multiple DataFilters can be specified. Specifying one
|
176
|
-
# or more data filters
|
177
|
-
#
|
178
|
-
#
|
179
|
-
#
|
180
|
-
#
|
181
|
-
# includeGridData` parameter is ignored For large spreadsheets,
|
182
|
-
#
|
183
|
-
# want.
|
180
|
+
# or more data filters returns the portions of the spreadsheet that intersect
|
181
|
+
# ranges matched by any of the filters. By default, data within grids is not
|
182
|
+
# returned. You can include grid data one of 2 ways: * Specify a field mask
|
183
|
+
# listing your desired fields using the `fields` URL parameter in HTTP * Set the
|
184
|
+
# includeGridData parameter to true. If a field mask is set, the `
|
185
|
+
# includeGridData` parameter is ignored For large spreadsheets, as a best
|
186
|
+
# practice, retrieve only the specific spreadsheet fields that you want.
|
184
187
|
# @param [String] spreadsheet_id
|
185
188
|
# The spreadsheet to request.
|
186
189
|
# @param [Google::Apis::SheetsV4::GetSpreadsheetByDataFilterRequest] get_spreadsheet_by_data_filter_request_object
|
@@ -333,8 +336,8 @@ module Google
|
|
333
336
|
# @param [String] spreadsheet_id
|
334
337
|
# The ID of the spreadsheet to update.
|
335
338
|
# @param [String] range
|
336
|
-
# The A1 notation of a range to search for a
|
337
|
-
# appended after the last row of the table.
|
339
|
+
# The [A1 notation](/sheets/api/guides/concepts#cell) of a range to search for a
|
340
|
+
# logical table of data. Values are appended after the last row of the table.
|
338
341
|
# @param [Google::Apis::SheetsV4::ValueRange] value_range_object
|
339
342
|
# @param [Boolean] include_values_in_response
|
340
343
|
# Determines if the update response should include the values of the cells that
|
@@ -387,8 +390,8 @@ module Google
|
|
387
390
|
|
388
391
|
# Clears one or more ranges of values from a spreadsheet. The caller must
|
389
392
|
# specify the spreadsheet ID and one or more ranges. Only values are cleared --
|
390
|
-
# all other properties of the cell (such as formatting
|
391
|
-
#
|
393
|
+
# all other properties of the cell (such as formatting and data validation) are
|
394
|
+
# kept.
|
392
395
|
# @param [String] spreadsheet_id
|
393
396
|
# The ID of the spreadsheet to update.
|
394
397
|
# @param [Google::Apis::SheetsV4::BatchClearValuesRequest] batch_clear_values_request_object
|
@@ -468,11 +471,12 @@ module Google
|
|
468
471
|
# option is SERIAL_NUMBER.
|
469
472
|
# @param [String] major_dimension
|
470
473
|
# The major dimension that results should use. For example, if the spreadsheet
|
471
|
-
# data is: `A1=1,B1=2,A2=3,B2=4`, then requesting `
|
472
|
-
# ROWS` returns `[[1,2],[3,4]]`, whereas requesting `
|
473
|
-
# COLUMNS` returns `[[1,3],[2,4]]`.
|
474
|
+
# data is: `A1=1,B1=2,A2=3,B2=4`, then requesting `ranges=["A1:B2"],
|
475
|
+
# majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas requesting `ranges=["A1:
|
476
|
+
# B2"],majorDimension=COLUMNS` returns `[[1,3],[2,4]]`.
|
474
477
|
# @param [Array<String>, String] ranges
|
475
|
-
# The A1 notation or R1C1 notation of the
|
478
|
+
# The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the
|
479
|
+
# range to retrieve values from.
|
476
480
|
# @param [String] value_render_option
|
477
481
|
# How values should be represented in the output. The default render option is
|
478
482
|
# ValueRenderOption.FORMATTED_VALUE.
|
@@ -616,7 +620,8 @@ module Google
|
|
616
620
|
# @param [String] spreadsheet_id
|
617
621
|
# The ID of the spreadsheet to update.
|
618
622
|
# @param [String] range
|
619
|
-
# The A1 notation or R1C1 notation of the
|
623
|
+
# The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the
|
624
|
+
# values to clear.
|
620
625
|
# @param [Google::Apis::SheetsV4::ClearValuesRequest] clear_values_request_object
|
621
626
|
# @param [String] fields
|
622
627
|
# Selector specifying which fields to include in a partial response.
|
@@ -653,7 +658,8 @@ module Google
|
|
653
658
|
# @param [String] spreadsheet_id
|
654
659
|
# The ID of the spreadsheet to retrieve data from.
|
655
660
|
# @param [String] range
|
656
|
-
# The A1 notation or R1C1 notation of the
|
661
|
+
# The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the
|
662
|
+
# range to retrieve values from.
|
657
663
|
# @param [String] date_time_render_option
|
658
664
|
# How dates, times, and durations should be represented in the output. This is
|
659
665
|
# ignored if value_render_option is FORMATTED_VALUE. The default dateTime render
|
@@ -702,7 +708,7 @@ module Google
|
|
702
708
|
# @param [String] spreadsheet_id
|
703
709
|
# The ID of the spreadsheet to update.
|
704
710
|
# @param [String] range
|
705
|
-
# The A1 notation of the values to update.
|
711
|
+
# The [A1 notation](/sheets/api/guides/concepts#cell) of the values to update.
|
706
712
|
# @param [Google::Apis::SheetsV4::ValueRange] value_range_object
|
707
713
|
# @param [Boolean] include_values_in_response
|
708
714
|
# Determines if the update response should include the values of the cells that
|
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.14.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: 2022-
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.5'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.5'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.14.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.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Sheets API V4
|