google-apis-bigquerydatatransfer_v1 0.11.0 → 0.12.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 +4 -0
- data/lib/google/apis/bigquerydatatransfer_v1.rb +3 -3
- data/lib/google/apis/bigquerydatatransfer_v1/classes.rb +29 -2
- data/lib/google/apis/bigquerydatatransfer_v1/gem_version.rb +2 -2
- data/lib/google/apis/bigquerydatatransfer_v1/representations.rb +15 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5057b7b7f5d2b406978c29d8c45b14c0b06d2b04f428383249d2911d525b2b9
|
4
|
+
data.tar.gz: 78e39b6255cd906aa304305bda41768d52764101c4f34903feca15d6b011db69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71f6859e42a7cb2ee49e551f06227ec6cf45329bb5021d9d237b4ddeb3a3e30faef7ef3764031b9095aecd3d996cbd8690c8d7d132aee26e2a8450d657c03df0
|
7
|
+
data.tar.gz: bb7858e1a70199b571ea402f406f9b9a17254d98dd0b0d772e60776a6211bd11762d641fa602a84a121bfbb85aada0115ca8c4761af3cfbe4e474a5d0de54fc6
|
data/CHANGELOG.md
CHANGED
@@ -30,13 +30,13 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1'
|
32
32
|
|
33
|
-
# View and manage your data in Google BigQuery
|
33
|
+
# View and manage your data in Google BigQuery and see the email address for your Google Account
|
34
34
|
AUTH_BIGQUERY = 'https://www.googleapis.com/auth/bigquery'
|
35
35
|
|
36
|
-
# See, edit, configure, and delete your Google Cloud
|
36
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
37
37
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
38
38
|
|
39
|
-
# View your data across Google Cloud
|
39
|
+
# View your data across Google Cloud services and see the email address of your Google Account
|
40
40
|
AUTH_CLOUD_PLATFORM_READ_ONLY = 'https://www.googleapis.com/auth/cloud-platform.read-only'
|
41
41
|
end
|
42
42
|
end
|
@@ -799,11 +799,17 @@ module Google
|
|
799
799
|
attr_accessor :next_run_time
|
800
800
|
|
801
801
|
# Pub/Sub topic where notifications will be sent after transfer runs associated
|
802
|
-
# with this transfer config finish.
|
802
|
+
# with this transfer config finish. The format for specifying a pubsub topic is:
|
803
|
+
# `projects/`project`/topics/`topic``
|
803
804
|
# Corresponds to the JSON property `notificationPubsubTopic`
|
804
805
|
# @return [String]
|
805
806
|
attr_accessor :notification_pubsub_topic
|
806
807
|
|
808
|
+
# Information about a user.
|
809
|
+
# Corresponds to the JSON property `ownerInfo`
|
810
|
+
# @return [Google::Apis::BigquerydatatransferV1::UserInfo]
|
811
|
+
attr_accessor :owner_info
|
812
|
+
|
807
813
|
# Parameters specific to each data source. For more information see the bq tab
|
808
814
|
# in the 'Setting up a data transfer' section for each data source. For example
|
809
815
|
# the parameters for Cloud Storage transfers are listed here: https://cloud.
|
@@ -860,6 +866,7 @@ module Google
|
|
860
866
|
@name = args[:name] if args.key?(:name)
|
861
867
|
@next_run_time = args[:next_run_time] if args.key?(:next_run_time)
|
862
868
|
@notification_pubsub_topic = args[:notification_pubsub_topic] if args.key?(:notification_pubsub_topic)
|
869
|
+
@owner_info = args[:owner_info] if args.key?(:owner_info)
|
863
870
|
@params = args[:params] if args.key?(:params)
|
864
871
|
@schedule = args[:schedule] if args.key?(:schedule)
|
865
872
|
@schedule_options = args[:schedule_options] if args.key?(:schedule_options)
|
@@ -943,7 +950,8 @@ module Google
|
|
943
950
|
attr_accessor :name
|
944
951
|
|
945
952
|
# Output only. Pub/Sub topic where a notification will be sent after this
|
946
|
-
# transfer run finishes
|
953
|
+
# transfer run finishes. The format for specifying a pubsub topic is: `projects/`
|
954
|
+
# project`/topics/`topic``
|
947
955
|
# Corresponds to the JSON property `notificationPubsubTopic`
|
948
956
|
# @return [String]
|
949
957
|
attr_accessor :notification_pubsub_topic
|
@@ -1019,6 +1027,25 @@ module Google
|
|
1019
1027
|
@user_id = args[:user_id] if args.key?(:user_id)
|
1020
1028
|
end
|
1021
1029
|
end
|
1030
|
+
|
1031
|
+
# Information about a user.
|
1032
|
+
class UserInfo
|
1033
|
+
include Google::Apis::Core::Hashable
|
1034
|
+
|
1035
|
+
# E-mail address of the user.
|
1036
|
+
# Corresponds to the JSON property `email`
|
1037
|
+
# @return [String]
|
1038
|
+
attr_accessor :email
|
1039
|
+
|
1040
|
+
def initialize(**args)
|
1041
|
+
update!(**args)
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
# Update properties of this object
|
1045
|
+
def update!(**args)
|
1046
|
+
@email = args[:email] if args.key?(:email)
|
1047
|
+
end
|
1048
|
+
end
|
1022
1049
|
end
|
1023
1050
|
end
|
1024
1051
|
end
|
@@ -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.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210814"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -154,6 +154,12 @@ module Google
|
|
154
154
|
include Google::Apis::Core::JsonObjectSupport
|
155
155
|
end
|
156
156
|
|
157
|
+
class UserInfo
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
+
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
161
|
+
end
|
162
|
+
|
157
163
|
class CheckValidCredsRequest
|
158
164
|
# @private
|
159
165
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -357,6 +363,8 @@ module Google
|
|
357
363
|
property :name, as: 'name'
|
358
364
|
property :next_run_time, as: 'nextRunTime'
|
359
365
|
property :notification_pubsub_topic, as: 'notificationPubsubTopic'
|
366
|
+
property :owner_info, as: 'ownerInfo', class: Google::Apis::BigquerydatatransferV1::UserInfo, decorator: Google::Apis::BigquerydatatransferV1::UserInfo::Representation
|
367
|
+
|
360
368
|
hash :params, as: 'params'
|
361
369
|
property :schedule, as: 'schedule'
|
362
370
|
property :schedule_options, as: 'scheduleOptions', class: Google::Apis::BigquerydatatransferV1::ScheduleOptions, decorator: Google::Apis::BigquerydatatransferV1::ScheduleOptions::Representation
|
@@ -398,6 +406,13 @@ module Google
|
|
398
406
|
property :user_id, :numeric_string => true, as: 'userId'
|
399
407
|
end
|
400
408
|
end
|
409
|
+
|
410
|
+
class UserInfo
|
411
|
+
# @private
|
412
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
413
|
+
property :email, as: 'email'
|
414
|
+
end
|
415
|
+
end
|
401
416
|
end
|
402
417
|
end
|
403
418
|
end
|
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.12.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: 2021-
|
11
|
+
date: 2021-08-23 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/master/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.12.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigquerydatatransfer_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|