google-apis-bigquerydatatransfer_v1 0.52.0 → 0.53.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: 46d59173d6b0bb2e2474f6351d34c37fc383be3a6c3e3071620ee19e554edeba
4
- data.tar.gz: 4c57ebd27a9802a2a8f362a3a76d424926c8c13094be4105a73e15ad5a27a45a
3
+ metadata.gz: d7d3a0a2edae6226a3db57a13cc1be8ff5323966d3553a93dcc95269da604838
4
+ data.tar.gz: 726405a905d345c2944829adbc68a17bb319f1a28055ea1a603c6e7eaee8439b
5
5
  SHA512:
6
- metadata.gz: 88e8762c4bde1bf30fffd7daea24e52bc17b5fea1597d694a2cd7d2c916e2aa22377842e4190a255cbc93e551046d61b93227ffcd174ee260c0a1b2b633044af
7
- data.tar.gz: fb6800527d5ce6dfdf0bbb4d6b26f44a682a5a1677607cf33dbd17e41246e014c7a97290ea3622420c216aa321fe3869c439d8e3a3ac242a578dd93b48a75e75
6
+ metadata.gz: 966a7ac634f651fb4e97f0e530bdad21a12a256affc87ddc315109c7a22f39cd6c7b8f5d1b9867da8540e199ce8ed7cb9e0abf4aaf5162dc593b777416ce87d5
7
+ data.tar.gz: '059325af3858783a9414736f8d4d98e361e2b00cb3a7e9dfc5e7b9d5c47778ee85b10bea736a0400dda626f2f8b4c436d9f9b9e9b7a3b78a0313774a654ebba6'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-bigquerydatatransfer_v1
2
2
 
3
+ ### v0.53.0 (2026-06-14)
4
+
5
+ * Regenerated from discovery document revision 20260601
6
+ * Regenerated using generator version 0.19.0
7
+
3
8
  ### v0.52.0 (2026-05-03)
4
9
 
5
10
  * Regenerated from discovery document revision 20260423
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/bigquery-transfer/) may pro
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -315,6 +315,27 @@ module Google
315
315
  end
316
316
  end
317
317
 
318
+ # Configuration for Dataplex destination.
319
+ class DataplexConfiguration
320
+ include Google::Apis::Core::Hashable
321
+
322
+ # Required. The Dataplex Universal Catalog entry group for importing the
323
+ # metadata. entry_group has the format of `projects/`project_id`/locations/`
324
+ # region`/entryGroups/`entry_group_id``.
325
+ # Corresponds to the JSON property `entryGroup`
326
+ # @return [String]
327
+ attr_accessor :entry_group
328
+
329
+ def initialize(**args)
330
+ update!(**args)
331
+ end
332
+
333
+ # Update properties of this object
334
+ def update!(**args)
335
+ @entry_group = args[:entry_group] if args.key?(:entry_group)
336
+ end
337
+ end
338
+
318
339
  # Represents preferences for sending email notifications for transfer run events.
319
340
  class EmailPreferences
320
341
  include Google::Apis::Core::Hashable
@@ -656,6 +677,25 @@ module Google
656
677
  end
657
678
  end
658
679
 
680
+ # The metadata destination of the transfer config.
681
+ class MetadataDestination
682
+ include Google::Apis::Core::Hashable
683
+
684
+ # Configuration for Dataplex destination.
685
+ # Corresponds to the JSON property `dataplexConfiguration`
686
+ # @return [Google::Apis::BigquerydatatransferV1::DataplexConfiguration]
687
+ attr_accessor :dataplex_configuration
688
+
689
+ def initialize(**args)
690
+ update!(**args)
691
+ end
692
+
693
+ # Update properties of this object
694
+ def update!(**args)
695
+ @dataplex_configuration = args[:dataplex_configuration] if args.key?(:dataplex_configuration)
696
+ end
697
+ end
698
+
659
699
  # Partition details related to hierarchy.
660
700
  class PartitionDetail
661
701
  include Google::Apis::Core::Hashable
@@ -1050,6 +1090,11 @@ module Google
1050
1090
  # @return [String]
1051
1091
  attr_accessor :managed_table_type
1052
1092
 
1093
+ # The metadata destination of the transfer config.
1094
+ # Corresponds to the JSON property `metadataDestination`
1095
+ # @return [Google::Apis::BigquerydatatransferV1::MetadataDestination]
1096
+ attr_accessor :metadata_destination
1097
+
1053
1098
  # Identifier. The resource name of the transfer config. Transfer config names
1054
1099
  # have the form either `projects/`project_id`/locations/`region`/transferConfigs/
1055
1100
  # `config_id`` or `projects/`project_id`/transferConfigs/`config_id``, where `
@@ -1141,6 +1186,7 @@ module Google
1141
1186
  @encryption_configuration = args[:encryption_configuration] if args.key?(:encryption_configuration)
1142
1187
  @error = args[:error] if args.key?(:error)
1143
1188
  @managed_table_type = args[:managed_table_type] if args.key?(:managed_table_type)
1189
+ @metadata_destination = args[:metadata_destination] if args.key?(:metadata_destination)
1144
1190
  @name = args[:name] if args.key?(:name)
1145
1191
  @next_run_time = args[:next_run_time] if args.key?(:next_run_time)
1146
1192
  @notification_pubsub_topic = args[:notification_pubsub_topic] if args.key?(:notification_pubsub_topic)
@@ -1324,6 +1370,11 @@ module Google
1324
1370
  # @return [Google::Apis::BigquerydatatransferV1::Status]
1325
1371
  attr_accessor :error_status
1326
1372
 
1373
+ # The metadata destination of the transfer config.
1374
+ # Corresponds to the JSON property `metadataDestination`
1375
+ # @return [Google::Apis::BigquerydatatransferV1::MetadataDestination]
1376
+ attr_accessor :metadata_destination
1377
+
1327
1378
  # Identifier. The resource name of the transfer run. Transfer run names have the
1328
1379
  # form `projects/`project_id`/locations/`location`/transferConfigs/`config_id`/
1329
1380
  # runs/`run_id``. The name is ignored when creating a transfer run.
@@ -1397,6 +1448,7 @@ module Google
1397
1448
  @email_preferences = args[:email_preferences] if args.key?(:email_preferences)
1398
1449
  @end_time = args[:end_time] if args.key?(:end_time)
1399
1450
  @error_status = args[:error_status] if args.key?(:error_status)
1451
+ @metadata_destination = args[:metadata_destination] if args.key?(:metadata_destination)
1400
1452
  @name = args[:name] if args.key?(:name)
1401
1453
  @notification_pubsub_topic = args[:notification_pubsub_topic] if args.key?(:notification_pubsub_topic)
1402
1454
  @params = args[:params] if args.key?(:params)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BigquerydatatransferV1
18
18
  # Version of the google-apis-bigquerydatatransfer_v1 gem
19
- GEM_VERSION = "0.52.0"
19
+ GEM_VERSION = "0.53.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260423"
25
+ REVISION = "20260601"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class DataplexConfiguration
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class EmailPreferences
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -130,6 +136,12 @@ module Google
130
136
  include Google::Apis::Core::JsonObjectSupport
131
137
  end
132
138
 
139
+ class MetadataDestination
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
133
145
  class PartitionDetail
134
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
147
 
@@ -318,6 +330,13 @@ module Google
318
330
  end
319
331
  end
320
332
 
333
+ class DataplexConfiguration
334
+ # @private
335
+ class Representation < Google::Apis::Core::JsonRepresentation
336
+ property :entry_group, as: 'entryGroup'
337
+ end
338
+ end
339
+
321
340
  class EmailPreferences
322
341
  # @private
323
342
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -433,6 +452,14 @@ module Google
433
452
  end
434
453
  end
435
454
 
455
+ class MetadataDestination
456
+ # @private
457
+ class Representation < Google::Apis::Core::JsonRepresentation
458
+ property :dataplex_configuration, as: 'dataplexConfiguration', class: Google::Apis::BigquerydatatransferV1::DataplexConfiguration, decorator: Google::Apis::BigquerydatatransferV1::DataplexConfiguration::Representation
459
+
460
+ end
461
+ end
462
+
436
463
  class PartitionDetail
437
464
  # @private
438
465
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -543,6 +570,8 @@ module Google
543
570
  property :error, as: 'error', class: Google::Apis::BigquerydatatransferV1::Status, decorator: Google::Apis::BigquerydatatransferV1::Status::Representation
544
571
 
545
572
  property :managed_table_type, as: 'managedTableType'
573
+ property :metadata_destination, as: 'metadataDestination', class: Google::Apis::BigquerydatatransferV1::MetadataDestination, decorator: Google::Apis::BigquerydatatransferV1::MetadataDestination::Representation
574
+
546
575
  property :name, as: 'name'
547
576
  property :next_run_time, as: 'nextRunTime'
548
577
  property :notification_pubsub_topic, as: 'notificationPubsubTopic'
@@ -609,6 +638,8 @@ module Google
609
638
  property :end_time, as: 'endTime'
610
639
  property :error_status, as: 'errorStatus', class: Google::Apis::BigquerydatatransferV1::Status, decorator: Google::Apis::BigquerydatatransferV1::Status::Representation
611
640
 
641
+ property :metadata_destination, as: 'metadataDestination', class: Google::Apis::BigquerydatatransferV1::MetadataDestination, decorator: Google::Apis::BigquerydatatransferV1::MetadataDestination::Representation
642
+
612
643
  property :name, as: 'name'
613
644
  property :notification_pubsub_topic, as: 'notificationPubsubTopic'
614
645
  hash :params, as: 'params'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigquerydatatransfer_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.0
4
+ version: 0.53.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-bigquerydatatransfer_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigquerydatatransfer_v1/v0.52.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquerydatatransfer_v1/v0.53.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquerydatatransfer_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="