google-apis-bigquerydatatransfer_v1 0.8.0 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85e27b1f516c56c51ab2438c5f2c5ce8a0b9d4d7296f2ff747d1a4e249e9ec76
4
- data.tar.gz: 5e6b1e6812ef3c457a63ca53935cfeb98081d9cc02572b63db48232b77a9cd8d
3
+ metadata.gz: f5057b7b7f5d2b406978c29d8c45b14c0b06d2b04f428383249d2911d525b2b9
4
+ data.tar.gz: 78e39b6255cd906aa304305bda41768d52764101c4f34903feca15d6b011db69
5
5
  SHA512:
6
- metadata.gz: 9df39bb859695c88cc9c32d2699a568db641a1bd49e3b5f36331a651daefeb32304b5a14f6ebdd0af2c424a3ee3504585e75a084e06adda83a2f5a087b38a36e
7
- data.tar.gz: 328a98340d5b7e2c6c0b043452b5dbe00840a6247a56cd5c17b02978c136acc78c34c82eba20a9698b9f6ac57d702106eace6a7c32bbc8e59b414fafbcc0f92a
6
+ metadata.gz: 71f6859e42a7cb2ee49e551f06227ec6cf45329bb5021d9d237b4ddeb3a3e30faef7ef3764031b9095aecd3d996cbd8690c8d7d132aee26e2a8450d657c03df0
7
+ data.tar.gz: bb7858e1a70199b571ea402f406f9b9a17254d98dd0b0d772e60776a6211bd11762d641fa602a84a121bfbb85aada0115ca8c4761af3cfbe4e474a5d0de54fc6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-bigquerydatatransfer_v1
2
2
 
3
+ ### v0.12.0 (2021-08-22)
4
+
5
+ * Regenerated from discovery document revision 20210814
6
+
7
+ ### v0.11.0 (2021-07-22)
8
+
9
+ * Regenerated from discovery document revision 20210717
10
+
11
+ ### v0.10.0 (2021-06-29)
12
+
13
+ * Regenerated using generator version 0.4.0
14
+
15
+ ### v0.9.0 (2021-06-24)
16
+
17
+ * Regenerated using generator version 0.3.0
18
+
3
19
  ### v0.8.0 (2021-05-19)
4
20
 
5
21
  * Unspecified changes
@@ -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 Platform data
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 Platform services
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.8.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210418"
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
@@ -478,7 +478,8 @@ module Google
478
478
  execute_or_queue_command(command, &block)
479
479
  end
480
480
 
481
- # Returns information about all data transfers in the project.
481
+ # Returns information about all transfer configs owned by a project in the
482
+ # specified location.
482
483
  # @param [String] parent
483
484
  # Required. The BigQuery project id for which data sources should be returned: `
484
485
  # projects/`project_id`` or `projects/`project_id`/locations/`location_id``
@@ -948,7 +949,8 @@ module Google
948
949
  execute_or_queue_command(command, &block)
949
950
  end
950
951
 
951
- # Returns information about all data transfers in the project.
952
+ # Returns information about all transfer configs owned by a project in the
953
+ # specified location.
952
954
  # @param [String] parent
953
955
  # Required. The BigQuery project id for which data sources should be returned: `
954
956
  # projects/`project_id`` or `projects/`project_id`/locations/`location_id``
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigquerydatatransfer_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.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-05-24 00:00:00.000000000 Z
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
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.4'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for BigQuery Data Transfer API V1. Simple
28
34
  REST clients are Ruby client libraries that provide access to Google services via
29
35
  their HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigquerydatatransfer_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigquerydatatransfer_v1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquerydatatransfer_v1/v0.12.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigquerydatatransfer_v1
57
63
  post_install_message:
58
64
  rdoc_options: []