google-apis-bigquery_v2 0.88.0 → 0.89.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: '098b282e7898fe120603340dbab70b3f18760480d4707388cb9a7926991214f8'
4
- data.tar.gz: 58decc294950a29fdacc940e4d53d358a9baaa18a8d7ae4db75c1280125b3df0
3
+ metadata.gz: d5723f47c5c6e8789c4135e55514e0c6994fabbc6e340bc5977aa3fd389d3029
4
+ data.tar.gz: 68339d2cf221117dcbe8a37bd9c4bb67ed0227138abd0d8928badd0690cbc9b9
5
5
  SHA512:
6
- metadata.gz: 2aa8d1f2cb2d89de920531d1ad782e18669a92780742b62cd2e317d2fad0c3ce2488353d6b4791be15a4543f175e278157aca85b804a7038a1afa5503346690a
7
- data.tar.gz: 4937d2362d8f9ed88c77bc61d48a972a2ea199aed27d9b84149c9637228e498d1d75a099f31c62793865ab9b12062b90a270c7cb067caba564ef7aee0aa711c2
6
+ metadata.gz: 02f8160e3b7966d7dcbd22733e154ed6564ac144e3f18794c4c5b7455b8fd85cd9e714be4f361da93e6e87f81a0f40b29913fc0244a320dd713e6dead1333052
7
+ data.tar.gz: 1b69200646bb7af9ccc6be3243a6e09f91d45ec0802be31b2fd05bf242582a2a58ccb8893f4d190adf84e1acaf36bce2b7bc7890265aae1c46c6fb036561dcfb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.89.0 (2025-05-18)
4
+
5
+ * Regenerated from discovery document revision 20250511
6
+
3
7
  ### v0.88.0 (2025-05-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20250427
@@ -2268,6 +2268,11 @@ module Google
2268
2268
  # @return [Google::Apis::BigqueryV2::DatasetReference]
2269
2269
  attr_accessor :dataset_reference
2270
2270
 
2271
+ # Configures the access a dataset defined in an external metadata storage.
2272
+ # Corresponds to the JSON property `externalDatasetReference`
2273
+ # @return [Google::Apis::BigqueryV2::ExternalDatasetReference]
2274
+ attr_accessor :external_dataset_reference
2275
+
2271
2276
  # An alternate name for the dataset. The friendly name is purely decorative in
2272
2277
  # nature.
2273
2278
  # Corresponds to the JSON property `friendlyName`
@@ -2302,6 +2307,7 @@ module Google
2302
2307
  # Update properties of this object
2303
2308
  def update!(**args)
2304
2309
  @dataset_reference = args[:dataset_reference] if args.key?(:dataset_reference)
2310
+ @external_dataset_reference = args[:external_dataset_reference] if args.key?(:external_dataset_reference)
2305
2311
  @friendly_name = args[:friendly_name] if args.key?(:friendly_name)
2306
2312
  @id = args[:id] if args.key?(:id)
2307
2313
  @kind = args[:kind] if args.key?(:kind)
@@ -4989,12 +4995,14 @@ module Google
4989
4995
  # Optional. Specifies the action that occurs if the destination table already
4990
4996
  # exists. The following values are supported: * WRITE_TRUNCATE: If the table
4991
4997
  # already exists, BigQuery overwrites the data, removes the constraints and uses
4992
- # the schema from the load job. * WRITE_APPEND: If the table already exists,
4993
- # BigQuery appends the data to the table. * WRITE_EMPTY: If the table already
4994
- # exists and contains data, a 'duplicate' error is returned in the job result.
4995
- # The default value is WRITE_APPEND. Each action is atomic and only occurs if
4996
- # BigQuery is able to complete the job successfully. Creation, truncation and
4997
- # append actions occur as one atomic update upon job completion.
4998
+ # the schema from the load job. * WRITE_TRUNCATE_DATA: If the table already
4999
+ # exists, BigQuery overwrites the data, but keeps the constraints and schema of
5000
+ # the existing table. * WRITE_APPEND: If the table already exists, BigQuery
5001
+ # appends the data to the table. * WRITE_EMPTY: If the table already exists and
5002
+ # contains data, a 'duplicate' error is returned in the job result. The default
5003
+ # value is WRITE_APPEND. Each action is atomic and only occurs if BigQuery is
5004
+ # able to complete the job successfully. Creation, truncation and append actions
5005
+ # occur as one atomic update upon job completion.
4998
5006
  # Corresponds to the JSON property `writeDisposition`
4999
5007
  # @return [String]
5000
5008
  attr_accessor :write_disposition
@@ -5250,12 +5258,14 @@ module Google
5250
5258
  # Optional. Specifies the action that occurs if the destination table already
5251
5259
  # exists. The following values are supported: * WRITE_TRUNCATE: If the table
5252
5260
  # already exists, BigQuery overwrites the data, removes the constraints, and
5253
- # uses the schema from the query result. * WRITE_APPEND: If the table already
5254
- # exists, BigQuery appends the data to the table. * WRITE_EMPTY: If the table
5255
- # already exists and contains data, a 'duplicate' error is returned in the job
5256
- # result. The default value is WRITE_EMPTY. Each action is atomic and only
5257
- # occurs if BigQuery is able to complete the job successfully. Creation,
5258
- # truncation and append actions occur as one atomic update upon job completion.
5261
+ # uses the schema from the query result. * WRITE_TRUNCATE_DATA: If the table
5262
+ # already exists, BigQuery overwrites the data, but keeps the constraints and
5263
+ # schema of the existing table. * WRITE_APPEND: If the table already exists,
5264
+ # BigQuery appends the data to the table. * WRITE_EMPTY: If the table already
5265
+ # exists and contains data, a 'duplicate' error is returned in the job result.
5266
+ # The default value is WRITE_EMPTY. Each action is atomic and only occurs if
5267
+ # BigQuery is able to complete the job successfully. Creation, truncation and
5268
+ # append actions occur as one atomic update upon job completion.
5259
5269
  # Corresponds to the JSON property `writeDisposition`
5260
5270
  # @return [String]
5261
5271
  attr_accessor :write_disposition
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BigqueryV2
18
18
  # Version of the google-apis-bigquery_v2 gem
19
- GEM_VERSION = "0.88.0"
19
+ GEM_VERSION = "0.89.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250427"
25
+ REVISION = "20250511"
26
26
  end
27
27
  end
28
28
  end
@@ -1879,6 +1879,8 @@ module Google
1879
1879
  class Representation < Google::Apis::Core::JsonRepresentation
1880
1880
  property :dataset_reference, as: 'datasetReference', class: Google::Apis::BigqueryV2::DatasetReference, decorator: Google::Apis::BigqueryV2::DatasetReference::Representation
1881
1881
 
1882
+ property :external_dataset_reference, as: 'externalDatasetReference', class: Google::Apis::BigqueryV2::ExternalDatasetReference, decorator: Google::Apis::BigqueryV2::ExternalDatasetReference::Representation
1883
+
1882
1884
  property :friendly_name, as: 'friendlyName'
1883
1885
  property :id, as: 'id'
1884
1886
  property :kind, as: 'kind'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigquery_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.88.0
4
+ version: 0.89.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.88.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.89.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
62
62
  rdoc_options: []
63
63
  require_paths: