google-apis-bigquerydatatransfer_v1 0.33.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a58947f1126517f572f73a97e8cdb79bdc56c870fec02f0290f717d7fb81d09
|
4
|
+
data.tar.gz: ac9d500796c2dc4b74869c146ad287c2cfc6e1906688dbb479b52e63ae760540
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 809f3e3b105bb8447d80e9ca450cc2ee75d5e7432dc960aa5b7e51a20a8dadd413942c714c328073eb0a4461f5347433444567994d08fc60c66dae760f74d628
|
7
|
+
data.tar.gz: c70bf5d5fc2859bc6ca9704c6ed662077d8a8332af0b70c064b4ed679837ca63a34d3adad5c7b7b2f3d1d8a043bf0bd6cc82e46137c2279b5a2987960c12ef10
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -804,6 +823,11 @@ module Google
|
|
804
823
|
# @return [Google::Apis::BigquerydatatransferV1::EmailPreferences]
|
805
824
|
attr_accessor :email_preferences
|
806
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
|
+
|
807
831
|
# The resource name of the transfer config. Transfer config names have the form `
|
808
832
|
# projects/`project_id`/locations/`region`/transferConfigs/`config_id``. Where `
|
809
833
|
# config_id` is usually a uuid, even though it is not guaranteed or required.
|
@@ -883,6 +907,7 @@ module Google
|
|
883
907
|
@disabled = args[:disabled] if args.key?(:disabled)
|
884
908
|
@display_name = args[:display_name] if args.key?(:display_name)
|
885
909
|
@email_preferences = args[:email_preferences] if args.key?(:email_preferences)
|
910
|
+
@encryption_configuration = args[:encryption_configuration] if args.key?(:encryption_configuration)
|
886
911
|
@name = args[:name] if args.key?(:name)
|
887
912
|
@next_run_time = args[:next_run_time] if args.key?(:next_run_time)
|
888
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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|