google-apis-sheets_v4 0.11.0 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2fd189708f4b96c17951e10ee82b2760a0e8180e59712245019d60eedbcb3dd8
4
- data.tar.gz: 1c096c1ee47c35de56441d58e8f2ea6b15d2b23c6ee0c95b55bce46d363cbe20
3
+ metadata.gz: 3fa037003d3f9a8b0a63436373264ba204b40839f6226b75589d4f186deb7571
4
+ data.tar.gz: 27036850cd12fe77ce1d209a05f03a7b33ac4771ba73f9e99dbeb68af81ceb88
5
5
  SHA512:
6
- metadata.gz: 5906ee3b6a9d64bf9d75a3257ca5492ad87cefebe1960df86b226142bf0b93a6ee6def2659141124d5a7bb55fde018afc72c9ddcd695da0c7efaf0069d07bca9
7
- data.tar.gz: 9ffb00eca929beb00395c953fce790a0f5f4c77614c227963f758512715dc84540e3c85fc7c05e77d557f3902695a9027d84334ef7d26462f656be8f08cdb6d0
6
+ metadata.gz: ba10bc9a1f6037c73277e38457cc8bcddf6196315f5c885fbb0e47bb3c83265e6782cb419cd2502e8e4f605c4792c908d2b5892738984b1cba053d9aef470fce
7
+ data.tar.gz: 5511cc5320481d2b4f2f5512b076eee7065b3c31d06043d81efb2618e1a2e28ab39387e7e2a14667c48ddf4c6a91a7961a7597c798a580fce3540c05bee51753
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-sheets_v4
2
2
 
3
+ ### v0.12.0 (2022-03-15)
4
+
5
+ * Regenerated from discovery document revision 20220308
6
+ * Regenerated using generator version 0.4.1
7
+
3
8
  ### v0.11.0 (2021-12-16)
4
9
 
5
10
  * 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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
532
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
533
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
534
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
535
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
536
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
537
- # sheet_id:0` The start index must always be less than or equal to the end index.
538
- # If the start index equals the end index, then the range is empty. Empty
539
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
624
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
625
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
626
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
627
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
628
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
629
- # sheet_id:0` The start index must always be less than or equal to the end index.
630
- # If the start index equals the end index, then the range is empty. Empty
631
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
1378
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
1379
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
1380
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
1381
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
1382
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
1383
- # sheet_id:0` The start index must always be less than or equal to the end index.
1384
- # If the start index equals the end index, then the range is empty. Empty
1385
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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. If the requests are for an
1517
- # unbounded range or a ranger larger than the bounds of the sheet, this is the
1518
- # actual ranges that were cleared, bounded to the sheet's limits.
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
3421
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
3422
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
3423
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
3424
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
3425
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
3426
- # sheet_id:0` The start index must always be less than or equal to the end index.
3427
- # If the start index equals the end index, then the range is empty. Empty
3428
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
3448
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
3449
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
3450
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
3451
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
3452
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
3453
- # sheet_id:0` The start index must always be less than or equal to the end index.
3454
- # If the start index equals the end index, then the range is empty. Empty
3455
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
3564
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
3565
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
3566
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
3567
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
3568
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
3569
- # sheet_id:0` The start index must always be less than or equal to the end index.
3570
- # If the start index equals the end index, then the range is empty. Empty
3571
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
3660
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
3661
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
3662
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
3663
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
3664
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
3665
- # sheet_id:0` The start index must always be less than or equal to the end index.
3666
- # If the start index equals the end index, then the range is empty. Empty
3667
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
3995
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
3996
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
3997
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
3998
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
3999
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
4000
- # sheet_id:0` The start index must always be less than or equal to the end index.
4001
- # If the start index equals the end index, then the range is empty. Empty
4002
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
4591
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
4592
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
4593
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
4594
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
4595
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
4596
- # sheet_id:0` The start index must always be less than or equal to the end index.
4597
- # If the start index equals the end index, then the range is empty. Empty
4598
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
4718
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
4719
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
4720
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
4721
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
4722
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
4723
- # sheet_id:0` The start index must always be less than or equal to the end index.
4724
- # If the start index equals the end index, then the range is empty. Empty
4725
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
5617
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
5618
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
5619
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
5620
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
5621
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
5622
- # sheet_id:0` The start index must always be less than or equal to the end index.
5623
- # If the start index equals the end index, then the range is empty. Empty
5624
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
5695
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
5696
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
5697
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
5698
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
5699
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
5700
- # sheet_id:0` The start index must always be less than or equal to the end index.
5701
- # If the start index equals the end index, then the range is empty. Empty
5702
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
5995
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
5996
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
5997
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
5998
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
5999
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
6000
- # sheet_id:0` The start index must always be less than or equal to the end index.
6001
- # If the start index equals the end index, then the range is empty. Empty
6002
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
6272
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
6273
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
6274
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
6275
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
6276
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
6277
- # sheet_id:0` The start index must always be less than or equal to the end index.
6278
- # If the start index equals the end index, then the range is empty. Empty
6279
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
6644
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
6645
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
6646
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
6647
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
6648
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
6649
- # sheet_id:0` The start index must always be less than or equal to the end index.
6650
- # If the start index equals the end index, then the range is empty. Empty
6651
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
6721
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
6722
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
6723
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
6724
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
6725
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
6726
- # sheet_id:0` The start index must always be less than or equal to the end index.
6727
- # If the start index equals the end index, then the range is empty. Empty
6728
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
7476
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
7477
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
7478
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
7479
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
7480
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
7481
- # sheet_id:0` The start index must always be less than or equal to the end index.
7482
- # If the start index equals the end index, then the range is empty. Empty
7483
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
7630
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
7631
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
7632
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
7633
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
7634
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
7635
- # sheet_id:0` The start index must always be less than or equal to the end index.
7636
- # If the start index equals the end index, then the range is empty. Empty
7637
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
7693
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
7694
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
7695
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
7696
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
7697
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
7698
- # sheet_id:0` The start index must always be less than or equal to the end index.
7699
- # If the start index equals the end index, then the range is empty. Empty
7700
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
7843
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
7844
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
7845
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
7846
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
7847
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
7848
- # sheet_id:0` The start index must always be less than or equal to the end index.
7849
- # If the start index equals the end index, then the range is empty. Empty
7850
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
8646
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
8647
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
8648
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
8649
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
8650
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
8651
- # sheet_id:0` The start index must always be less than or equal to the end index.
8652
- # If the start index equals the end index, then the range is empty. Empty
8653
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
9006
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
9007
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
9008
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
9009
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
9010
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
9011
- # sheet_id:0` The start index must always be less than or equal to the end index.
9012
- # If the start index equals the end index, then the range is empty. Empty
9013
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
9067
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
9068
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
9069
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
9070
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
9071
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
9072
- # sheet_id:0` The start index must always be less than or equal to the end index.
9073
- # If the start index equals the end index, then the range is empty. Empty
9074
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
9260
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
9261
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
9262
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
9263
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
9264
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
9265
- # sheet_id:0` The start index must always be less than or equal to the end index.
9266
- # If the start index equals the end index, then the range is empty. Empty
9267
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
9647
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
9648
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
9649
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
9650
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
9651
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
9652
- # sheet_id:0` The start index must always be less than or equal to the end index.
9653
- # If the start index equals the end index, then the range is empty. Empty
9654
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
10135
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
10136
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
10137
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
10138
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
10139
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
10140
- # sheet_id:0` The start index must always be less than or equal to the end index.
10141
- # If the start index equals the end index, then the range is empty. Empty
10142
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
10185
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
10186
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
10187
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
10188
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
10189
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
10190
- # sheet_id:0` The start index must always be less than or equal to the end index.
10191
- # If the start index equals the end index, then the range is empty. Empty
10192
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
10268
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
10269
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
10270
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
10271
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
10272
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
10273
- # sheet_id:0` The start index must always be less than or equal to the end index.
10274
- # If the start index equals the end index, then the range is empty. Empty
10275
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 0, then: `Sheet1!A1:A1 == sheet_id: 0,
10322
- # start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index:
10323
- # 1` `Sheet1!A3:B4 == sheet_id: 0, start_row_index: 2, end_row_index: 4,
10324
- # start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 0,
10325
- # start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 0,
10326
- # start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 ==
10327
- # sheet_id:0` The start index must always be less than or equal to the end index.
10328
- # If the start index equals the end index, then the range is empty. Empty
10329
- # ranges are typically not meaningful and are usually rendered in the UI as `#
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 were applied to.
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. For output, this range indicates
11027
- # the entire requested range, even though the values will exclude trailing rows
11028
- # and columns. When appending values, this field represents the range to search
11029
- # for a table, after which values will be appended.
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.11.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210629"
25
+ REVISION = "20220308"
26
26
  end
27
27
  end
28
28
  end
@@ -333,8 +333,8 @@ module Google
333
333
  # @param [String] spreadsheet_id
334
334
  # The ID of the spreadsheet to update.
335
335
  # @param [String] range
336
- # The A1 notation of a range to search for a logical table of data. Values are
337
- # appended after the last row of the table.
336
+ # The [A1 notation](/sheets/api/guides/concepts#cell) of a range to search for a
337
+ # logical table of data. Values are appended after the last row of the table.
338
338
  # @param [Google::Apis::SheetsV4::ValueRange] value_range_object
339
339
  # @param [Boolean] include_values_in_response
340
340
  # Determines if the update response should include the values of the cells that
@@ -387,8 +387,8 @@ module Google
387
387
 
388
388
  # Clears one or more ranges of values from a spreadsheet. The caller must
389
389
  # specify the spreadsheet ID and one or more ranges. Only values are cleared --
390
- # all other properties of the cell (such as formatting, data validation, etc..)
391
- # are kept.
390
+ # all other properties of the cell (such as formatting and data validation) are
391
+ # kept.
392
392
  # @param [String] spreadsheet_id
393
393
  # The ID of the spreadsheet to update.
394
394
  # @param [Google::Apis::SheetsV4::BatchClearValuesRequest] batch_clear_values_request_object
@@ -468,11 +468,12 @@ module Google
468
468
  # option is SERIAL_NUMBER.
469
469
  # @param [String] major_dimension
470
470
  # 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 `range=A1:B2,majorDimension=
472
- # ROWS` returns `[[1,2],[3,4]]`, whereas requesting `range=A1:B2,majorDimension=
473
- # COLUMNS` returns `[[1,3],[2,4]]`.
471
+ # data is: `A1=1,B1=2,A2=3,B2=4`, then requesting `ranges=["A1:B2"],
472
+ # majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas requesting `ranges=["A1:
473
+ # B2"],majorDimension=COLUMNS` returns `[[1,3],[2,4]]`.
474
474
  # @param [Array<String>, String] ranges
475
- # The A1 notation or R1C1 notation of the range to retrieve values from.
475
+ # The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the
476
+ # range to retrieve values from.
476
477
  # @param [String] value_render_option
477
478
  # How values should be represented in the output. The default render option is
478
479
  # ValueRenderOption.FORMATTED_VALUE.
@@ -616,7 +617,8 @@ module Google
616
617
  # @param [String] spreadsheet_id
617
618
  # The ID of the spreadsheet to update.
618
619
  # @param [String] range
619
- # The A1 notation or R1C1 notation of the values to clear.
620
+ # The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the
621
+ # values to clear.
620
622
  # @param [Google::Apis::SheetsV4::ClearValuesRequest] clear_values_request_object
621
623
  # @param [String] fields
622
624
  # Selector specifying which fields to include in a partial response.
@@ -653,7 +655,8 @@ module Google
653
655
  # @param [String] spreadsheet_id
654
656
  # The ID of the spreadsheet to retrieve data from.
655
657
  # @param [String] range
656
- # The A1 notation or R1C1 notation of the range to retrieve values from.
658
+ # The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the
659
+ # range to retrieve values from.
657
660
  # @param [String] date_time_render_option
658
661
  # How dates, times, and durations should be represented in the output. This is
659
662
  # ignored if value_render_option is FORMATTED_VALUE. The default dateTime render
@@ -702,7 +705,7 @@ module Google
702
705
  # @param [String] spreadsheet_id
703
706
  # The ID of the spreadsheet to update.
704
707
  # @param [String] range
705
- # The A1 notation of the values to update.
708
+ # The [A1 notation](/sheets/api/guides/concepts#cell) of the values to update.
706
709
  # @param [Google::Apis::SheetsV4::ValueRange] value_range_object
707
710
  # @param [Boolean] include_values_in_response
708
711
  # 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.11.0
4
+ version: 0.12.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-01-10 00:00:00.000000000 Z
11
+ date: 2022-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sheets_v4/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.12.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.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Sheets API V4