google-apis-bigquerydatatransfer_v1 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: 2df2230a4dabcaf3667e0e464f45eb45596e25f4119f280b62fc53857da1fd1e
4
- data.tar.gz: 4ffbd3be54e4ca28387bd6ee48f9602d8f8f88a450e5723f725aafa0547fb29d
3
+ metadata.gz: 6a58947f1126517f572f73a97e8cdb79bdc56c870fec02f0290f717d7fb81d09
4
+ data.tar.gz: ac9d500796c2dc4b74869c146ad287c2cfc6e1906688dbb479b52e63ae760540
5
5
  SHA512:
6
- metadata.gz: 4902b7411cd6dd44da9972354f9e5c49d95c6aa10c43a5fc235d0f9e00f2547255e619f6d684513de0714af629d297db9c1829b6bc6add19f497e705942f2037
7
- data.tar.gz: e05c56adae2ad6b93abac1953a4d6f30e06b8fe4e7f78ce37299fc2cc17211575e7e4ffe58c6fb79ced22e86d8499c31dad31bfe87148c68bfed67a03f1609ee
6
+ metadata.gz: 809f3e3b105bb8447d80e9ca450cc2ee75d5e7432dc960aa5b7e51a20a8dadd413942c714c328073eb0a4461f5347433444567994d08fc60c66dae760f74d628
7
+ data.tar.gz: c70bf5d5fc2859bc6ca9704c6ed662077d8a8332af0b70c064b4ed679837ca63a34d3adad5c7b7b2f3d1d8a043bf0bd6cc82e46137c2279b5a2987960c12ef10
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigquerydatatransfer_v1
2
2
 
3
+ ### v0.34.0 (2023-08-03)
4
+
5
+ * Regenerated from discovery document revision 20230722
6
+
7
+ ### v0.33.0 (2023-07-23)
8
+
9
+ * Regenerated from discovery document revision 20230715
10
+
3
11
  ### v0.32.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230423
@@ -345,6 +345,25 @@ module Google
345
345
  end
346
346
  end
347
347
 
348
+ # Represents the encryption configuration for a transfer.
349
+ class EncryptionConfiguration
350
+ include Google::Apis::Core::Hashable
351
+
352
+ # The name of the KMS key used for encrypting BigQuery data.
353
+ # Corresponds to the JSON property `kmsKeyName`
354
+ # @return [String]
355
+ attr_accessor :kms_key_name
356
+
357
+ def initialize(**args)
358
+ update!(**args)
359
+ end
360
+
361
+ # Update properties of this object
362
+ def update!(**args)
363
+ @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
364
+ end
365
+ end
366
+
348
367
  # A request to enroll a set of data sources so they are visible in the BigQuery
349
368
  # UI's `Transfer` tab.
350
369
  class EnrollDataSourcesRequest
@@ -637,8 +656,9 @@ module Google
637
656
  class StartManualTransferRunsRequest
638
657
  include Google::Apis::Core::Hashable
639
658
 
640
- # Specific run_time for a transfer run to be started. The requested_run_time
641
- # must not be in the future.
659
+ # A run_time timestamp for historical data files or reports that are scheduled
660
+ # to be transferred by the scheduled transfer run. requested_run_time must be a
661
+ # past time and cannot include future time values.
642
662
  # Corresponds to the JSON property `requestedRunTime`
643
663
  # @return [String]
644
664
  attr_accessor :requested_run_time
@@ -803,6 +823,11 @@ module Google
803
823
  # @return [Google::Apis::BigquerydatatransferV1::EmailPreferences]
804
824
  attr_accessor :email_preferences
805
825
 
826
+ # Represents the encryption configuration for a transfer.
827
+ # Corresponds to the JSON property `encryptionConfiguration`
828
+ # @return [Google::Apis::BigquerydatatransferV1::EncryptionConfiguration]
829
+ attr_accessor :encryption_configuration
830
+
806
831
  # The resource name of the transfer config. Transfer config names have the form `
807
832
  # projects/`project_id`/locations/`region`/transferConfigs/`config_id``. Where `
808
833
  # config_id` is usually a uuid, even though it is not guaranteed or required.
@@ -882,6 +907,7 @@ module Google
882
907
  @disabled = args[:disabled] if args.key?(:disabled)
883
908
  @display_name = args[:display_name] if args.key?(:display_name)
884
909
  @email_preferences = args[:email_preferences] if args.key?(:email_preferences)
910
+ @encryption_configuration = args[:encryption_configuration] if args.key?(:encryption_configuration)
885
911
  @name = args[:name] if args.key?(:name)
886
912
  @next_run_time = args[:next_run_time] if args.key?(:next_run_time)
887
913
  @notification_pubsub_topic = args[:notification_pubsub_topic] if args.key?(:notification_pubsub_topic)
@@ -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.32.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230423"
25
+ REVISION = "20230722"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class EncryptionConfiguration
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class EnrollDataSourcesRequest
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -240,6 +246,13 @@ module Google
240
246
  end
241
247
  end
242
248
 
249
+ class EncryptionConfiguration
250
+ # @private
251
+ class Representation < Google::Apis::Core::JsonRepresentation
252
+ property :kms_key_name, as: 'kmsKeyName'
253
+ end
254
+ end
255
+
243
256
  class EnrollDataSourcesRequest
244
257
  # @private
245
258
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -373,6 +386,8 @@ module Google
373
386
  property :display_name, as: 'displayName'
374
387
  property :email_preferences, as: 'emailPreferences', class: Google::Apis::BigquerydatatransferV1::EmailPreferences, decorator: Google::Apis::BigquerydatatransferV1::EmailPreferences::Representation
375
388
 
389
+ property :encryption_configuration, as: 'encryptionConfiguration', class: Google::Apis::BigquerydatatransferV1::EncryptionConfiguration, decorator: Google::Apis::BigquerydatatransferV1::EncryptionConfiguration::Representation
390
+
376
391
  property :name, as: 'name'
377
392
  property :next_run_time, as: 'nextRunTime'
378
393
  property :notification_pubsub_topic, as: 'notificationPubsubTopic'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigquerydatatransfer_v1
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: 2023-04-30 00:00:00.000000000 Z
11
+ date: 2023-08-06 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-bigquerydatatransfer_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigquerydatatransfer_v1/v0.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquerydatatransfer_v1/v0.34.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquerydatatransfer_v1
63
63
  post_install_message:
64
64
  rdoc_options: []