google-apis-sheets_v4 0.31.0 → 0.33.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: 53eb53d8771048e1fbf464da220dbfb4aa53f7a4bd23a9182ef7051e08bff2dc
4
- data.tar.gz: b8cddbe3d1be68ee301d5d6c7f88a350f2d6cb7b1e790a4d5ba3a60a8b80f6cf
3
+ metadata.gz: 455985da2866eb43108e691519a67f220f4a6b6f1b638e6cd1b05a31b2ee3679
4
+ data.tar.gz: 6c8afeb36778b20680c9eb46c6e9bc23aed052dd79189434df3367754c345acb
5
5
  SHA512:
6
- metadata.gz: 0e5778d4eda5041b5d62b5ca7703411367f08dde158851d160432cf9c195f8d34e4f83803867ac7c2fac451d0067ebd6aff22c3eb54b49093ee86a71cd83ef5a
7
- data.tar.gz: c1d57c3eead46a2d51915b61845c1e33bdde2b2556ff43ebe8de0aa8957add0bc1ba8dbf25b5e5daef51e678e7a09ebed2ce18dbeed701e4c6e3dafd61d0e0d2
6
+ metadata.gz: 1b4be7f08f03ef80ba7067d0519861c1edef4b31d869c513580b1cec96b43015a9501c6faae655a09b18574549581ee8dd95c28821296a7dc263f130bb14ae9e
7
+ data.tar.gz: db075d7946749ae3ff1b1022487ef2274215cc13818ec1add08b0c5ceae8a802f11a641c303448cae007742feb4388c0aef8ca896b101bb34fa89b9b40ff7ddb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-sheets_v4
2
2
 
3
+ ### v0.33.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240716
6
+
7
+ ### v0.32.0 (2024-05-26)
8
+
9
+ * Regenerated from discovery document revision 20240514
10
+ * Regenerated using generator version 0.15.0
11
+
3
12
  ### v0.31.0 (2024-05-05)
4
13
 
5
14
  * Regenerated from discovery document revision 20240423
@@ -127,7 +127,7 @@ module Google
127
127
  # Adds a data source. After the data source is added successfully, an associated
128
128
  # DATA_SOURCE sheet is created and an execution is triggered to refresh the
129
129
  # sheet to read data from the data source. The request requires an additional `
130
- # bigquery.readonly` OAuth scope.
130
+ # bigquery.readonly` OAuth scope if you are adding a BigQuery data source.
131
131
  class AddDataSourceRequest
132
132
  include Google::Apis::Core::Hashable
133
133
 
@@ -2355,7 +2355,9 @@ module Google
2355
2355
  end
2356
2356
 
2357
2357
  # Cancels one or multiple refreshes of data source objects in the spreadsheet by
2358
- # the specified references.
2358
+ # the specified references. The request requires an additional `bigquery.
2359
+ # readonly` OAuth scope if you are cancelling a refresh on a BigQuery data
2360
+ # source.
2359
2361
  class CancelDataSourceRefreshRequest
2360
2362
  include Google::Apis::Core::Hashable
2361
2363
 
@@ -2420,7 +2422,7 @@ module Google
2420
2422
  # @return [Google::Apis::SheetsV4::DataSourceObjectReference]
2421
2423
  attr_accessor :reference
2422
2424
 
2423
- # The status of a refresh cancellation. You can send cancel request to
2425
+ # The status of a refresh cancellation. You can send a cancel request to
2424
2426
  # explicitly cancel one or multiple data source object refreshes.
2425
2427
  # Corresponds to the JSON property `refreshCancellationStatus`
2426
2428
  # @return [Google::Apis::SheetsV4::RefreshCancellationStatus]
@@ -4314,6 +4316,11 @@ module Google
4314
4316
  # @return [Google::Apis::SheetsV4::BigQueryDataSourceSpec]
4315
4317
  attr_accessor :big_query
4316
4318
 
4319
+ # The specification of a Looker data source.
4320
+ # Corresponds to the JSON property `looker`
4321
+ # @return [Google::Apis::SheetsV4::LookerDataSourceSpec]
4322
+ attr_accessor :looker
4323
+
4317
4324
  # The parameters of the data source, used when querying the data source.
4318
4325
  # Corresponds to the JSON property `parameters`
4319
4326
  # @return [Array<Google::Apis::SheetsV4::DataSourceParameter>]
@@ -4326,6 +4333,7 @@ module Google
4326
4333
  # Update properties of this object
4327
4334
  def update!(**args)
4328
4335
  @big_query = args[:big_query] if args.key?(:big_query)
4336
+ @looker = args[:looker] if args.key?(:looker)
4329
4337
  @parameters = args[:parameters] if args.key?(:parameters)
4330
4338
  end
4331
4339
  end
@@ -6596,6 +6604,37 @@ module Google
6596
6604
  end
6597
6605
  end
6598
6606
 
6607
+ # The specification of a Looker data source.
6608
+ class LookerDataSourceSpec
6609
+ include Google::Apis::Core::Hashable
6610
+
6611
+ # Name of a LookerML model explore.
6612
+ # Corresponds to the JSON property `explore`
6613
+ # @return [String]
6614
+ attr_accessor :explore
6615
+
6616
+ # A Looker instance URL.
6617
+ # Corresponds to the JSON property `instanceUri`
6618
+ # @return [String]
6619
+ attr_accessor :instance_uri
6620
+
6621
+ # Name of a LookerML model.
6622
+ # Corresponds to the JSON property `model`
6623
+ # @return [String]
6624
+ attr_accessor :model
6625
+
6626
+ def initialize(**args)
6627
+ update!(**args)
6628
+ end
6629
+
6630
+ # Update properties of this object
6631
+ def update!(**args)
6632
+ @explore = args[:explore] if args.key?(:explore)
6633
+ @instance_uri = args[:instance_uri] if args.key?(:instance_uri)
6634
+ @model = args[:model] if args.key?(:model)
6635
+ end
6636
+ end
6637
+
6599
6638
  # Allows you to manually organize the values in a source data column into
6600
6639
  # buckets with names of your choosing. For example, a pivot table that
6601
6640
  # aggregates population by state: +-------+-------------------+ | State | SUM of
@@ -7799,7 +7838,7 @@ module Google
7799
7838
  end
7800
7839
  end
7801
7840
 
7802
- # The status of a refresh cancellation. You can send cancel request to
7841
+ # The status of a refresh cancellation. You can send a cancel request to
7803
7842
  # explicitly cancel one or multiple data source object refreshes.
7804
7843
  class RefreshCancellationStatus
7805
7844
  include Google::Apis::Core::Hashable
@@ -7860,9 +7899,10 @@ module Google
7860
7899
 
7861
7900
  # Refreshes one or multiple data source objects in the spreadsheet by the
7862
7901
  # specified references. The request requires an additional `bigquery.readonly`
7863
- # OAuth scope. If there are multiple refresh requests referencing the same data
7864
- # source objects in one batch, only the last refresh request is processed, and
7865
- # all those requests will have the same response accordingly.
7902
+ # OAuth scope if you are refreshing a BigQuery data source. If there are
7903
+ # multiple refresh requests referencing the same data source objects in one
7904
+ # batch, only the last refresh request is processed, and all those requests will
7905
+ # have the same response accordingly.
7866
7906
  class RefreshDataSourceRequest
7867
7907
  include Google::Apis::Core::Hashable
7868
7908
 
@@ -8000,7 +8040,7 @@ module Google
8000
8040
  # Adds a data source. After the data source is added successfully, an associated
8001
8041
  # DATA_SOURCE sheet is created and an execution is triggered to refresh the
8002
8042
  # sheet to read data from the data source. The request requires an additional `
8003
- # bigquery.readonly` OAuth scope.
8043
+ # bigquery.readonly` OAuth scope if you are adding a BigQuery data source.
8004
8044
  # Corresponds to the JSON property `addDataSource`
8005
8045
  # @return [Google::Apis::SheetsV4::AddDataSourceRequest]
8006
8046
  attr_accessor :add_data_source
@@ -8073,7 +8113,9 @@ module Google
8073
8113
  attr_accessor :auto_resize_dimensions
8074
8114
 
8075
8115
  # Cancels one or multiple refreshes of data source objects in the spreadsheet by
8076
- # the specified references.
8116
+ # the specified references. The request requires an additional `bigquery.
8117
+ # readonly` OAuth scope if you are cancelling a refresh on a BigQuery data
8118
+ # source.
8077
8119
  # Corresponds to the JSON property `cancelDataSourceRefresh`
8078
8120
  # @return [Google::Apis::SheetsV4::CancelDataSourceRefreshRequest]
8079
8121
  attr_accessor :cancel_data_source_refresh
@@ -8222,9 +8264,10 @@ module Google
8222
8264
 
8223
8265
  # Refreshes one or multiple data source objects in the spreadsheet by the
8224
8266
  # specified references. The request requires an additional `bigquery.readonly`
8225
- # OAuth scope. If there are multiple refresh requests referencing the same data
8226
- # source objects in one batch, only the last refresh request is processed, and
8227
- # all those requests will have the same response accordingly.
8267
+ # OAuth scope if you are refreshing a BigQuery data source. If there are
8268
+ # multiple refresh requests referencing the same data source objects in one
8269
+ # batch, only the last refresh request is processed, and all those requests will
8270
+ # have the same response accordingly.
8228
8271
  # Corresponds to the JSON property `refreshDataSource`
8229
8272
  # @return [Google::Apis::SheetsV4::RefreshDataSourceRequest]
8230
8273
  attr_accessor :refresh_data_source
@@ -8313,7 +8356,7 @@ module Google
8313
8356
  # Updates a data source. After the data source is updated successfully, an
8314
8357
  # execution is triggered to refresh the associated DATA_SOURCE sheet to read
8315
8358
  # data from the updated data source. The request requires an additional `
8316
- # bigquery.readonly` OAuth scope.
8359
+ # bigquery.readonly` OAuth scope if you are updating a BigQuery data source.
8317
8360
  # Corresponds to the JSON property `updateDataSource`
8318
8361
  # @return [Google::Apis::SheetsV4::UpdateDataSourceRequest]
8319
8362
  attr_accessor :update_data_source
@@ -10594,7 +10637,7 @@ module Google
10594
10637
  # Updates a data source. After the data source is updated successfully, an
10595
10638
  # execution is triggered to refresh the associated DATA_SOURCE sheet to read
10596
10639
  # data from the updated data source. The request requires an additional `
10597
- # bigquery.readonly` OAuth scope.
10640
+ # bigquery.readonly` OAuth scope if you are updating a BigQuery data source.
10598
10641
  class UpdateDataSourceRequest
10599
10642
  include Google::Apis::Core::Hashable
10600
10643
 
@@ -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.31.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240423"
25
+ REVISION = "20240716"
26
26
  end
27
27
  end
28
28
  end
@@ -982,6 +982,12 @@ module Google
982
982
  include Google::Apis::Core::JsonObjectSupport
983
983
  end
984
984
 
985
+ class LookerDataSourceSpec
986
+ class Representation < Google::Apis::Core::JsonRepresentation; end
987
+
988
+ include Google::Apis::Core::JsonObjectSupport
989
+ end
990
+
985
991
  class ManualRule
986
992
  class Representation < Google::Apis::Core::JsonRepresentation; end
987
993
 
@@ -2631,6 +2637,8 @@ module Google
2631
2637
  class Representation < Google::Apis::Core::JsonRepresentation
2632
2638
  property :big_query, as: 'bigQuery', class: Google::Apis::SheetsV4::BigQueryDataSourceSpec, decorator: Google::Apis::SheetsV4::BigQueryDataSourceSpec::Representation
2633
2639
 
2640
+ property :looker, as: 'looker', class: Google::Apis::SheetsV4::LookerDataSourceSpec, decorator: Google::Apis::SheetsV4::LookerDataSourceSpec::Representation
2641
+
2634
2642
  collection :parameters, as: 'parameters', class: Google::Apis::SheetsV4::DataSourceParameter, decorator: Google::Apis::SheetsV4::DataSourceParameter::Representation
2635
2643
 
2636
2644
  end
@@ -3211,6 +3219,15 @@ module Google
3211
3219
  end
3212
3220
  end
3213
3221
 
3222
+ class LookerDataSourceSpec
3223
+ # @private
3224
+ class Representation < Google::Apis::Core::JsonRepresentation
3225
+ property :explore, as: 'explore'
3226
+ property :instance_uri, as: 'instanceUri'
3227
+ property :model, as: 'model'
3228
+ end
3229
+ end
3230
+
3214
3231
  class ManualRule
3215
3232
  # @private
3216
3233
  class Representation < Google::Apis::Core::JsonRepresentation
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.31.0
4
+ version: 0.33.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: 2024-05-05 00:00:00.000000000 Z
11
+ date: 2024-07-25 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.14.0
19
+ version: 0.15.0
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.14.0
29
+ version: 0.15.0
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.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.33.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: []