google-apis-bigquerydatatransfer_v1 0.33.0 → 0.35.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/bigquerydatatransfer_v1/classes.rb +30 -4
- data/lib/google/apis/bigquerydatatransfer_v1/gem_version.rb +2 -2
- data/lib/google/apis/bigquerydatatransfer_v1/representations.rb +15 -0
- data/lib/google/apis/bigquerydatatransfer_v1/service.rb +10 -8
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d192744d243765c7a4c4c66bb735ab312a7aba0837e4079043bd71d6685ae49d
|
4
|
+
data.tar.gz: cc3bc4c2145bb7767f12bfabbee6412aa9b2d1814432affe56f5bfce2a5db9a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 663399ed3f9cf03d61083ddadf6debd04aba5adc0517201cd632924e2372931c3874b4ce6d8521b42a5f08a98101d220e00ce545dc809d94a8921afe73733855
|
7
|
+
data.tar.gz: cdc50e201a150381ccbe5dee34a8f82a6c74ecd5de4ea5c9b2282870db029df3e94fe5ed0abb53daaea44c5a7b69d1f5a8c17213260944209dc30a501333de7f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-bigquerydatatransfer_v1
|
2
2
|
|
3
|
+
### v0.35.0 (2023-09-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230827
|
6
|
+
|
7
|
+
### v0.34.0 (2023-08-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230722
|
10
|
+
|
3
11
|
### v0.33.0 (2023-07-23)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230715
|
@@ -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,10 +823,16 @@ module Google
|
|
804
823
|
# @return [Google::Apis::BigquerydatatransferV1::EmailPreferences]
|
805
824
|
attr_accessor :email_preferences
|
806
825
|
|
807
|
-
#
|
808
|
-
#
|
809
|
-
#
|
810
|
-
|
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
|
+
|
831
|
+
# The resource name of the transfer config. Transfer config names have the form
|
832
|
+
# either `projects/`project_id`/locations/`region`/transferConfigs/`config_id``
|
833
|
+
# or `projects/`project_id`/transferConfigs/`config_id``, where `config_id` is
|
834
|
+
# usually a UUID, even though it is not guaranteed or required. The name is
|
835
|
+
# ignored when creating a transfer config.
|
811
836
|
# Corresponds to the JSON property `name`
|
812
837
|
# @return [String]
|
813
838
|
attr_accessor :name
|
@@ -883,6 +908,7 @@ module Google
|
|
883
908
|
@disabled = args[:disabled] if args.key?(:disabled)
|
884
909
|
@display_name = args[:display_name] if args.key?(:display_name)
|
885
910
|
@email_preferences = args[:email_preferences] if args.key?(:email_preferences)
|
911
|
+
@encryption_configuration = args[:encryption_configuration] if args.key?(:encryption_configuration)
|
886
912
|
@name = args[:name] if args.key?(:name)
|
887
913
|
@next_run_time = args[:next_run_time] if args.key?(:next_run_time)
|
888
914
|
@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.35.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 = "20230827"
|
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'
|
@@ -600,10 +600,11 @@ module Google
|
|
600
600
|
# Updates a data transfer configuration. All fields must be set, even if they
|
601
601
|
# are not updated.
|
602
602
|
# @param [String] name
|
603
|
-
# The resource name of the transfer config. Transfer config names have the form
|
604
|
-
# projects/`project_id`/locations/`region`/transferConfigs/`config_id
|
605
|
-
# config_id
|
606
|
-
#
|
603
|
+
# The resource name of the transfer config. Transfer config names have the form
|
604
|
+
# either `projects/`project_id`/locations/`region`/transferConfigs/`config_id``
|
605
|
+
# or `projects/`project_id`/transferConfigs/`config_id``, where `config_id` is
|
606
|
+
# usually a UUID, even though it is not guaranteed or required. The name is
|
607
|
+
# ignored when creating a transfer config.
|
607
608
|
# @param [Google::Apis::BigquerydatatransferV1::TransferConfig] transfer_config_object
|
608
609
|
# @param [String] authorization_code
|
609
610
|
# Optional OAuth2 authorization code to use with this transfer configuration.
|
@@ -1083,10 +1084,11 @@ module Google
|
|
1083
1084
|
# Updates a data transfer configuration. All fields must be set, even if they
|
1084
1085
|
# are not updated.
|
1085
1086
|
# @param [String] name
|
1086
|
-
# The resource name of the transfer config. Transfer config names have the form
|
1087
|
-
# projects/`project_id`/locations/`region`/transferConfigs/`config_id
|
1088
|
-
# config_id
|
1089
|
-
#
|
1087
|
+
# The resource name of the transfer config. Transfer config names have the form
|
1088
|
+
# either `projects/`project_id`/locations/`region`/transferConfigs/`config_id``
|
1089
|
+
# or `projects/`project_id`/transferConfigs/`config_id``, where `config_id` is
|
1090
|
+
# usually a UUID, even though it is not guaranteed or required. The name is
|
1091
|
+
# ignored when creating a transfer config.
|
1090
1092
|
# @param [Google::Apis::BigquerydatatransferV1::TransferConfig] transfer_config_object
|
1091
1093
|
# @param [String] authorization_code
|
1092
1094
|
# Optional OAuth2 authorization code to use with this transfer configuration.
|
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.35.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-09-03 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.35.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for BigQuery Data Transfer API V1
|