google-apis-sheets_v4 0.32.0 → 0.34.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ed12962927fc4ddf8100ec0f875a594efedc9016237c91a88ad7388766b1f1b
4
- data.tar.gz: ab66f98bb0cb18c96b2c90518c336bcbfa06b224287c341cde90501bc9bbf854
3
+ metadata.gz: 5282b4d63bf29813020160833920ae377b6cdb51831b77ce58b6b2ff2b7d30fe
4
+ data.tar.gz: bea34c69c0d3731494edc7d68126904cacfb43e70d2bb32de95060a12097e878
5
5
  SHA512:
6
- metadata.gz: 383de88557577fedf57af51eeb87d029e93e92e8edb020c06ea662909d09671784cbddb2849197e1e7ba450452b560ae853376b4bc065e1023f91b36bac11688
7
- data.tar.gz: 4bc59adfa0cb7a482b50fd96f9664c86c2cfcf3b3c5ff266680f6668b5294f46ece8a393993607a990fd66d72999c8aac56a24c3e66aa40674f5355acda10c60
6
+ metadata.gz: 6632e8d6f32eb271813837a7664ce4232f30eb62f0d4a2c1d17df267d9154409976c218825e8a4b3452249810f094117ba04b746d2c4f08a979cae337bbb80c1
7
+ data.tar.gz: 8693dc2dadc56ebc1cf47f72611c0698c7812188eaf3bcf8055c2df23b8f986d847501b6f49f960edc3eee27e19e78af04c3c47447fc17ab32cb51162e50b878
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-sheets_v4
2
2
 
3
+ ### v0.34.0 (2024-08-11)
4
+
5
+ * Regenerated from discovery document revision 20240730
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.33.0 (2024-07-25)
9
+
10
+ * Regenerated from discovery document revision 20240716
11
+
3
12
  ### v0.32.0 (2024-05-26)
4
13
 
5
14
  * Regenerated from discovery document revision 20240514
@@ -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
 
@@ -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 Looker 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 Looker 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
@@ -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.32.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240514"
25
+ REVISION = "20240730"
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.32.0
4
+ version: 0.34.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-26 00:00:00.000000000 Z
11
+ date: 2024-08-11 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.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.34.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: []