google-cloud-bigquery-data_transfer-v1 1.1.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +31 -21
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/client.rb +43 -17
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest/client.rb +43 -17
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest/service_stub.rb +142 -98
- data/lib/google/cloud/bigquery/data_transfer/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +39 -0
- data/proto_docs/google/cloud/bigquery/datatransfer/v1/datatransfer.rb +4 -0
- data/proto_docs/google/cloud/bigquery/datatransfer/v1/transfer.rb +6 -0
- data/proto_docs/google/protobuf/struct.rb +12 -0
- metadata +6 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2cf98b484859fe2c81c22c0550fc21102989d73311ad3bf48a771717e801684a
|
4
|
+
data.tar.gz: ccf2190cd247ffbd372c552601823e61128e65cb6592b567b7a9a1a9c4f046ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ad7611ddd4598a86e6cd78403e5b63be014596a7e8f4f72ef6de0a2c3e6c7b79c4dc160efd0fcd411b988e6732cdab996257959a882afb6a579e58768e78c76
|
7
|
+
data.tar.gz: ac09e3fc6e074376d09a04665934348c075d1a390e18f47ba7cad1834c966a2e31fd2e44259cc4d4fdb40d5cfd1589f13dcc97cc2c5c2337d1e387eef10c23f2
|
data/README.md
CHANGED
@@ -43,40 +43,50 @@ for class and method documentation.
|
|
43
43
|
See also the [Product Documentation](https://cloud.google.com/bigquery/transfer)
|
44
44
|
for general usage information.
|
45
45
|
|
46
|
-
##
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
46
|
+
## Debug Logging
|
47
|
+
|
48
|
+
This library comes with opt-in Debug Logging that can help you troubleshoot
|
49
|
+
your application's integration with the API. When logging is activated, key
|
50
|
+
events such as requests and responses, along with data payloads and metadata
|
51
|
+
such as headers and client configuration, are logged to the standard error
|
52
|
+
stream.
|
53
|
+
|
54
|
+
**WARNING:** Client Library Debug Logging includes your data payloads in
|
55
|
+
plaintext, which could include sensitive data such as PII for yourself or your
|
56
|
+
customers, private keys, or other security data that could be compromising if
|
57
|
+
leaked. Always practice good data hygiene with your application logs, and follow
|
58
|
+
the principle of least access. Google also recommends that Client Library Debug
|
59
|
+
Logging be enabled only temporarily during active debugging, and not used
|
60
|
+
permanently in production.
|
61
|
+
|
62
|
+
To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
|
63
|
+
to the value `all`. Alternatively, you can set the value to a comma-delimited
|
64
|
+
list of client library gem names. This will select the default logging behavior,
|
65
|
+
which writes logs to the standard error stream. On a local workstation, this may
|
66
|
+
result in logs appearing on the console. When running on a Google Cloud hosting
|
67
|
+
service such as [Google Cloud Run](https://cloud.google.com/run), this generally
|
68
|
+
results in logs appearing alongside your application logs in the
|
69
|
+
[Google Cloud Logging](https://cloud.google.com/logging/) service.
|
70
|
+
|
71
|
+
You can customize logging by modifying the `logger` configuration when
|
72
|
+
constructing a client object. For example:
|
55
73
|
|
56
74
|
```ruby
|
75
|
+
require "google/cloud/bigquery/data_transfer/v1"
|
57
76
|
require "logger"
|
58
77
|
|
59
|
-
|
60
|
-
|
61
|
-
def logger
|
62
|
-
LOGGER
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
# Define a gRPC module-level logger method before grpc/logconfig.rb loads.
|
67
|
-
module GRPC
|
68
|
-
extend MyLogger
|
78
|
+
client = ::Google::Cloud::Bigquery::DataTransfer::V1::DataTransferService::Client.new do |config|
|
79
|
+
config.logger = Logger.new "my-app.log"
|
69
80
|
end
|
70
81
|
```
|
71
82
|
|
72
|
-
|
73
83
|
## Google Cloud Samples
|
74
84
|
|
75
85
|
To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
|
76
86
|
|
77
87
|
## Supported Ruby Versions
|
78
88
|
|
79
|
-
This library is supported on Ruby
|
89
|
+
This library is supported on Ruby 3.0+.
|
80
90
|
|
81
91
|
Google provides official support for Ruby versions that are actively supported
|
82
92
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
@@ -215,14 +215,26 @@ module Google
|
|
215
215
|
universe_domain: @config.universe_domain,
|
216
216
|
channel_args: @config.channel_args,
|
217
217
|
interceptors: @config.interceptors,
|
218
|
-
channel_pool_config: @config.channel_pool
|
218
|
+
channel_pool_config: @config.channel_pool,
|
219
|
+
logger: @config.logger
|
219
220
|
)
|
220
221
|
|
222
|
+
@data_transfer_service_stub.stub_logger&.info do |entry|
|
223
|
+
entry.set_system_name
|
224
|
+
entry.set_service
|
225
|
+
entry.message = "Created client for #{entry.service}"
|
226
|
+
entry.set_credentials_fields credentials
|
227
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
228
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
229
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
230
|
+
end
|
231
|
+
|
221
232
|
@location_client = Google::Cloud::Location::Locations::Client.new do |config|
|
222
233
|
config.credentials = credentials
|
223
234
|
config.quota_project = @quota_project_id
|
224
235
|
config.endpoint = @data_transfer_service_stub.endpoint
|
225
236
|
config.universe_domain = @data_transfer_service_stub.universe_domain
|
237
|
+
config.logger = @data_transfer_service_stub.logger if config.respond_to? :logger=
|
226
238
|
end
|
227
239
|
end
|
228
240
|
|
@@ -233,6 +245,15 @@ module Google
|
|
233
245
|
#
|
234
246
|
attr_reader :location_client
|
235
247
|
|
248
|
+
##
|
249
|
+
# The logger used for request/response debug logging.
|
250
|
+
#
|
251
|
+
# @return [Logger]
|
252
|
+
#
|
253
|
+
def logger
|
254
|
+
@data_transfer_service_stub.logger
|
255
|
+
end
|
256
|
+
|
236
257
|
# Service calls
|
237
258
|
|
238
259
|
##
|
@@ -317,7 +338,6 @@ module Google
|
|
317
338
|
|
318
339
|
@data_transfer_service_stub.call_rpc :get_data_source, request, options: options do |response, operation|
|
319
340
|
yield response, operation if block_given?
|
320
|
-
return response
|
321
341
|
end
|
322
342
|
rescue ::GRPC::BadStatus => e
|
323
343
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -418,7 +438,7 @@ module Google
|
|
418
438
|
@data_transfer_service_stub.call_rpc :list_data_sources, request, options: options do |response, operation|
|
419
439
|
response = ::Gapic::PagedEnumerable.new @data_transfer_service_stub, :list_data_sources, request, response, operation, options
|
420
440
|
yield response, operation if block_given?
|
421
|
-
|
441
|
+
throw :response, response
|
422
442
|
end
|
423
443
|
rescue ::GRPC::BadStatus => e
|
424
444
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -555,7 +575,6 @@ module Google
|
|
555
575
|
|
556
576
|
@data_transfer_service_stub.call_rpc :create_transfer_config, request, options: options do |response, operation|
|
557
577
|
yield response, operation if block_given?
|
558
|
-
return response
|
559
578
|
end
|
560
579
|
rescue ::GRPC::BadStatus => e
|
561
580
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -689,7 +708,6 @@ module Google
|
|
689
708
|
|
690
709
|
@data_transfer_service_stub.call_rpc :update_transfer_config, request, options: options do |response, operation|
|
691
710
|
yield response, operation if block_given?
|
692
|
-
return response
|
693
711
|
end
|
694
712
|
rescue ::GRPC::BadStatus => e
|
695
713
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -778,7 +796,6 @@ module Google
|
|
778
796
|
|
779
797
|
@data_transfer_service_stub.call_rpc :delete_transfer_config, request, options: options do |response, operation|
|
780
798
|
yield response, operation if block_given?
|
781
|
-
return response
|
782
799
|
end
|
783
800
|
rescue ::GRPC::BadStatus => e
|
784
801
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -866,7 +883,6 @@ module Google
|
|
866
883
|
|
867
884
|
@data_transfer_service_stub.call_rpc :get_transfer_config, request, options: options do |response, operation|
|
868
885
|
yield response, operation if block_given?
|
869
|
-
return response
|
870
886
|
end
|
871
887
|
rescue ::GRPC::BadStatus => e
|
872
888
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -970,7 +986,7 @@ module Google
|
|
970
986
|
@data_transfer_service_stub.call_rpc :list_transfer_configs, request, options: options do |response, operation|
|
971
987
|
response = ::Gapic::PagedEnumerable.new @data_transfer_service_stub, :list_transfer_configs, request, response, operation, options
|
972
988
|
yield response, operation if block_given?
|
973
|
-
|
989
|
+
throw :response, response
|
974
990
|
end
|
975
991
|
rescue ::GRPC::BadStatus => e
|
976
992
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1070,7 +1086,6 @@ module Google
|
|
1070
1086
|
|
1071
1087
|
@data_transfer_service_stub.call_rpc :schedule_transfer_runs, request, options: options do |response, operation|
|
1072
1088
|
yield response, operation if block_given?
|
1073
|
-
return response
|
1074
1089
|
end
|
1075
1090
|
rescue ::GRPC::BadStatus => e
|
1076
1091
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1106,12 +1121,16 @@ module Google
|
|
1106
1121
|
# that are scheduled to be transferred by the scheduled transfer run.
|
1107
1122
|
# requested_time_range must be a past time and cannot include future time
|
1108
1123
|
# values.
|
1124
|
+
#
|
1125
|
+
# Note: The following fields are mutually exclusive: `requested_time_range`, `requested_run_time`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1109
1126
|
# @param requested_run_time [::Google::Protobuf::Timestamp, ::Hash]
|
1110
1127
|
# A run_time timestamp for historical data files or reports
|
1111
1128
|
# that are scheduled to be transferred by the scheduled transfer run.
|
1112
1129
|
# requested_run_time must be a past time and cannot include future time
|
1113
1130
|
# values.
|
1114
1131
|
#
|
1132
|
+
# Note: The following fields are mutually exclusive: `requested_run_time`, `requested_time_range`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1133
|
+
#
|
1115
1134
|
# @yield [response, operation] Access the result along with the RPC operation
|
1116
1135
|
# @yieldparam response [::Google::Cloud::Bigquery::DataTransfer::V1::StartManualTransferRunsResponse]
|
1117
1136
|
# @yieldparam operation [::GRPC::ActiveCall::Operation]
|
@@ -1171,7 +1190,6 @@ module Google
|
|
1171
1190
|
|
1172
1191
|
@data_transfer_service_stub.call_rpc :start_manual_transfer_runs, request, options: options do |response, operation|
|
1173
1192
|
yield response, operation if block_given?
|
1174
|
-
return response
|
1175
1193
|
end
|
1176
1194
|
rescue ::GRPC::BadStatus => e
|
1177
1195
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1260,7 +1278,6 @@ module Google
|
|
1260
1278
|
|
1261
1279
|
@data_transfer_service_stub.call_rpc :get_transfer_run, request, options: options do |response, operation|
|
1262
1280
|
yield response, operation if block_given?
|
1263
|
-
return response
|
1264
1281
|
end
|
1265
1282
|
rescue ::GRPC::BadStatus => e
|
1266
1283
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1349,7 +1366,6 @@ module Google
|
|
1349
1366
|
|
1350
1367
|
@data_transfer_service_stub.call_rpc :delete_transfer_run, request, options: options do |response, operation|
|
1351
1368
|
yield response, operation if block_given?
|
1352
|
-
return response
|
1353
1369
|
end
|
1354
1370
|
rescue ::GRPC::BadStatus => e
|
1355
1371
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1455,7 +1471,7 @@ module Google
|
|
1455
1471
|
@data_transfer_service_stub.call_rpc :list_transfer_runs, request, options: options do |response, operation|
|
1456
1472
|
response = ::Gapic::PagedEnumerable.new @data_transfer_service_stub, :list_transfer_runs, request, response, operation, options
|
1457
1473
|
yield response, operation if block_given?
|
1458
|
-
|
1474
|
+
throw :response, response
|
1459
1475
|
end
|
1460
1476
|
rescue ::GRPC::BadStatus => e
|
1461
1477
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1559,7 +1575,7 @@ module Google
|
|
1559
1575
|
@data_transfer_service_stub.call_rpc :list_transfer_logs, request, options: options do |response, operation|
|
1560
1576
|
response = ::Gapic::PagedEnumerable.new @data_transfer_service_stub, :list_transfer_logs, request, response, operation, options
|
1561
1577
|
yield response, operation if block_given?
|
1562
|
-
|
1578
|
+
throw :response, response
|
1563
1579
|
end
|
1564
1580
|
rescue ::GRPC::BadStatus => e
|
1565
1581
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1648,7 +1664,6 @@ module Google
|
|
1648
1664
|
|
1649
1665
|
@data_transfer_service_stub.call_rpc :check_valid_creds, request, options: options do |response, operation|
|
1650
1666
|
yield response, operation if block_given?
|
1651
|
-
return response
|
1652
1667
|
end
|
1653
1668
|
rescue ::GRPC::BadStatus => e
|
1654
1669
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1745,7 +1760,6 @@ module Google
|
|
1745
1760
|
|
1746
1761
|
@data_transfer_service_stub.call_rpc :enroll_data_sources, request, options: options do |response, operation|
|
1747
1762
|
yield response, operation if block_given?
|
1748
|
-
return response
|
1749
1763
|
end
|
1750
1764
|
rescue ::GRPC::BadStatus => e
|
1751
1765
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1839,7 +1853,6 @@ module Google
|
|
1839
1853
|
|
1840
1854
|
@data_transfer_service_stub.call_rpc :unenroll_data_sources, request, options: options do |response, operation|
|
1841
1855
|
yield response, operation if block_given?
|
1842
|
-
return response
|
1843
1856
|
end
|
1844
1857
|
rescue ::GRPC::BadStatus => e
|
1845
1858
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1889,6 +1902,13 @@ module Google
|
|
1889
1902
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1890
1903
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1891
1904
|
# * (`nil`) indicating no credentials
|
1905
|
+
#
|
1906
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1907
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1908
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1909
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1910
|
+
# For more information, refer to [Validate credential configurations from external
|
1911
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1892
1912
|
# @return [::Object]
|
1893
1913
|
# @!attribute [rw] scope
|
1894
1914
|
# The OAuth scopes
|
@@ -1928,6 +1948,11 @@ module Google
|
|
1928
1948
|
# default endpoint URL. The default value of nil uses the environment
|
1929
1949
|
# universe (usually the default "googleapis.com" universe).
|
1930
1950
|
# @return [::String,nil]
|
1951
|
+
# @!attribute [rw] logger
|
1952
|
+
# A custom logger to use for request/response debug logging, or the value
|
1953
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
1954
|
+
# explicitly disable logging.
|
1955
|
+
# @return [::Logger,:default,nil]
|
1931
1956
|
#
|
1932
1957
|
class Configuration
|
1933
1958
|
extend ::Gapic::Config
|
@@ -1952,6 +1977,7 @@ module Google
|
|
1952
1977
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1953
1978
|
config_attr :quota_project, nil, ::String, nil
|
1954
1979
|
config_attr :universe_domain, nil, ::String, nil
|
1980
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
1955
1981
|
|
1956
1982
|
# @private
|
1957
1983
|
def initialize parent_config = nil
|
@@ -208,15 +208,27 @@ module Google
|
|
208
208
|
endpoint: @config.endpoint,
|
209
209
|
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
210
210
|
universe_domain: @config.universe_domain,
|
211
|
-
credentials: credentials
|
211
|
+
credentials: credentials,
|
212
|
+
logger: @config.logger
|
212
213
|
)
|
213
214
|
|
215
|
+
@data_transfer_service_stub.logger(stub: true)&.info do |entry|
|
216
|
+
entry.set_system_name
|
217
|
+
entry.set_service
|
218
|
+
entry.message = "Created client for #{entry.service}"
|
219
|
+
entry.set_credentials_fields credentials
|
220
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
221
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
222
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
223
|
+
end
|
224
|
+
|
214
225
|
@location_client = Google::Cloud::Location::Locations::Rest::Client.new do |config|
|
215
226
|
config.credentials = credentials
|
216
227
|
config.quota_project = @quota_project_id
|
217
228
|
config.endpoint = @data_transfer_service_stub.endpoint
|
218
229
|
config.universe_domain = @data_transfer_service_stub.universe_domain
|
219
230
|
config.bindings_override = @config.bindings_override
|
231
|
+
config.logger = @data_transfer_service_stub.logger if config.respond_to? :logger=
|
220
232
|
end
|
221
233
|
end
|
222
234
|
|
@@ -227,6 +239,15 @@ module Google
|
|
227
239
|
#
|
228
240
|
attr_reader :location_client
|
229
241
|
|
242
|
+
##
|
243
|
+
# The logger used for request/response debug logging.
|
244
|
+
#
|
245
|
+
# @return [Logger]
|
246
|
+
#
|
247
|
+
def logger
|
248
|
+
@data_transfer_service_stub.logger
|
249
|
+
end
|
250
|
+
|
230
251
|
# Service calls
|
231
252
|
|
232
253
|
##
|
@@ -304,7 +325,6 @@ module Google
|
|
304
325
|
|
305
326
|
@data_transfer_service_stub.get_data_source request, options do |result, operation|
|
306
327
|
yield result, operation if block_given?
|
307
|
-
return result
|
308
328
|
end
|
309
329
|
rescue ::Gapic::Rest::Error => e
|
310
330
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -398,7 +418,7 @@ module Google
|
|
398
418
|
@data_transfer_service_stub.list_data_sources request, options do |result, operation|
|
399
419
|
result = ::Gapic::Rest::PagedEnumerable.new @data_transfer_service_stub, :list_data_sources, "data_sources", request, result, options
|
400
420
|
yield result, operation if block_given?
|
401
|
-
|
421
|
+
throw :response, result
|
402
422
|
end
|
403
423
|
rescue ::Gapic::Rest::Error => e
|
404
424
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -528,7 +548,6 @@ module Google
|
|
528
548
|
|
529
549
|
@data_transfer_service_stub.create_transfer_config request, options do |result, operation|
|
530
550
|
yield result, operation if block_given?
|
531
|
-
return result
|
532
551
|
end
|
533
552
|
rescue ::Gapic::Rest::Error => e
|
534
553
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -655,7 +674,6 @@ module Google
|
|
655
674
|
|
656
675
|
@data_transfer_service_stub.update_transfer_config request, options do |result, operation|
|
657
676
|
yield result, operation if block_given?
|
658
|
-
return result
|
659
677
|
end
|
660
678
|
rescue ::Gapic::Rest::Error => e
|
661
679
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -737,7 +755,6 @@ module Google
|
|
737
755
|
|
738
756
|
@data_transfer_service_stub.delete_transfer_config request, options do |result, operation|
|
739
757
|
yield result, operation if block_given?
|
740
|
-
return result
|
741
758
|
end
|
742
759
|
rescue ::Gapic::Rest::Error => e
|
743
760
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -818,7 +835,6 @@ module Google
|
|
818
835
|
|
819
836
|
@data_transfer_service_stub.get_transfer_config request, options do |result, operation|
|
820
837
|
yield result, operation if block_given?
|
821
|
-
return result
|
822
838
|
end
|
823
839
|
rescue ::Gapic::Rest::Error => e
|
824
840
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -915,7 +931,7 @@ module Google
|
|
915
931
|
@data_transfer_service_stub.list_transfer_configs request, options do |result, operation|
|
916
932
|
result = ::Gapic::Rest::PagedEnumerable.new @data_transfer_service_stub, :list_transfer_configs, "transfer_configs", request, result, options
|
917
933
|
yield result, operation if block_given?
|
918
|
-
|
934
|
+
throw :response, result
|
919
935
|
end
|
920
936
|
rescue ::Gapic::Rest::Error => e
|
921
937
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1006,7 +1022,6 @@ module Google
|
|
1006
1022
|
|
1007
1023
|
@data_transfer_service_stub.schedule_transfer_runs request, options do |result, operation|
|
1008
1024
|
yield result, operation if block_given?
|
1009
|
-
return result
|
1010
1025
|
end
|
1011
1026
|
rescue ::Gapic::Rest::Error => e
|
1012
1027
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1042,11 +1057,15 @@ module Google
|
|
1042
1057
|
# that are scheduled to be transferred by the scheduled transfer run.
|
1043
1058
|
# requested_time_range must be a past time and cannot include future time
|
1044
1059
|
# values.
|
1060
|
+
#
|
1061
|
+
# Note: The following fields are mutually exclusive: `requested_time_range`, `requested_run_time`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1045
1062
|
# @param requested_run_time [::Google::Protobuf::Timestamp, ::Hash]
|
1046
1063
|
# A run_time timestamp for historical data files or reports
|
1047
1064
|
# that are scheduled to be transferred by the scheduled transfer run.
|
1048
1065
|
# requested_run_time must be a past time and cannot include future time
|
1049
1066
|
# values.
|
1067
|
+
#
|
1068
|
+
# Note: The following fields are mutually exclusive: `requested_run_time`, `requested_time_range`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
1050
1069
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
1051
1070
|
# @yieldparam result [::Google::Cloud::Bigquery::DataTransfer::V1::StartManualTransferRunsResponse]
|
1052
1071
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
@@ -1100,7 +1119,6 @@ module Google
|
|
1100
1119
|
|
1101
1120
|
@data_transfer_service_stub.start_manual_transfer_runs request, options do |result, operation|
|
1102
1121
|
yield result, operation if block_given?
|
1103
|
-
return result
|
1104
1122
|
end
|
1105
1123
|
rescue ::Gapic::Rest::Error => e
|
1106
1124
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1182,7 +1200,6 @@ module Google
|
|
1182
1200
|
|
1183
1201
|
@data_transfer_service_stub.get_transfer_run request, options do |result, operation|
|
1184
1202
|
yield result, operation if block_given?
|
1185
|
-
return result
|
1186
1203
|
end
|
1187
1204
|
rescue ::Gapic::Rest::Error => e
|
1188
1205
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1264,7 +1281,6 @@ module Google
|
|
1264
1281
|
|
1265
1282
|
@data_transfer_service_stub.delete_transfer_run request, options do |result, operation|
|
1266
1283
|
yield result, operation if block_given?
|
1267
|
-
return result
|
1268
1284
|
end
|
1269
1285
|
rescue ::Gapic::Rest::Error => e
|
1270
1286
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1363,7 +1379,7 @@ module Google
|
|
1363
1379
|
@data_transfer_service_stub.list_transfer_runs request, options do |result, operation|
|
1364
1380
|
result = ::Gapic::Rest::PagedEnumerable.new @data_transfer_service_stub, :list_transfer_runs, "transfer_runs", request, result, options
|
1365
1381
|
yield result, operation if block_given?
|
1366
|
-
|
1382
|
+
throw :response, result
|
1367
1383
|
end
|
1368
1384
|
rescue ::Gapic::Rest::Error => e
|
1369
1385
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1460,7 +1476,7 @@ module Google
|
|
1460
1476
|
@data_transfer_service_stub.list_transfer_logs request, options do |result, operation|
|
1461
1477
|
result = ::Gapic::Rest::PagedEnumerable.new @data_transfer_service_stub, :list_transfer_logs, "transfer_messages", request, result, options
|
1462
1478
|
yield result, operation if block_given?
|
1463
|
-
|
1479
|
+
throw :response, result
|
1464
1480
|
end
|
1465
1481
|
rescue ::Gapic::Rest::Error => e
|
1466
1482
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1542,7 +1558,6 @@ module Google
|
|
1542
1558
|
|
1543
1559
|
@data_transfer_service_stub.check_valid_creds request, options do |result, operation|
|
1544
1560
|
yield result, operation if block_given?
|
1545
|
-
return result
|
1546
1561
|
end
|
1547
1562
|
rescue ::Gapic::Rest::Error => e
|
1548
1563
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1632,7 +1647,6 @@ module Google
|
|
1632
1647
|
|
1633
1648
|
@data_transfer_service_stub.enroll_data_sources request, options do |result, operation|
|
1634
1649
|
yield result, operation if block_given?
|
1635
|
-
return result
|
1636
1650
|
end
|
1637
1651
|
rescue ::Gapic::Rest::Error => e
|
1638
1652
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1719,7 +1733,6 @@ module Google
|
|
1719
1733
|
|
1720
1734
|
@data_transfer_service_stub.unenroll_data_sources request, options do |result, operation|
|
1721
1735
|
yield result, operation if block_given?
|
1722
|
-
return result
|
1723
1736
|
end
|
1724
1737
|
rescue ::Gapic::Rest::Error => e
|
1725
1738
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1767,6 +1780,13 @@ module Google
|
|
1767
1780
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1768
1781
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1769
1782
|
# * (`nil`) indicating no credentials
|
1783
|
+
#
|
1784
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1785
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1786
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1787
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1788
|
+
# For more information, refer to [Validate credential configurations from external
|
1789
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1770
1790
|
# @return [::Object]
|
1771
1791
|
# @!attribute [rw] scope
|
1772
1792
|
# The OAuth scopes
|
@@ -1799,6 +1819,11 @@ module Google
|
|
1799
1819
|
# default endpoint URL. The default value of nil uses the environment
|
1800
1820
|
# universe (usually the default "googleapis.com" universe).
|
1801
1821
|
# @return [::String,nil]
|
1822
|
+
# @!attribute [rw] logger
|
1823
|
+
# A custom logger to use for request/response debug logging, or the value
|
1824
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
1825
|
+
# explicitly disable logging.
|
1826
|
+
# @return [::Logger,:default,nil]
|
1802
1827
|
#
|
1803
1828
|
class Configuration
|
1804
1829
|
extend ::Gapic::Config
|
@@ -1827,6 +1852,7 @@ module Google
|
|
1827
1852
|
# by the host service.
|
1828
1853
|
# @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
|
1829
1854
|
config_attr :bindings_override, {}, ::Hash, nil
|
1855
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
1830
1856
|
|
1831
1857
|
# @private
|
1832
1858
|
def initialize parent_config = nil
|
@@ -31,7 +31,8 @@ module Google
|
|
31
31
|
# including transcoding, making the REST call, and deserialing the response.
|
32
32
|
#
|
33
33
|
class ServiceStub
|
34
|
-
|
34
|
+
# @private
|
35
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
|
35
36
|
# These require statements are intentionally placed here to initialize
|
36
37
|
# the REST modules only when it's required.
|
37
38
|
require "gapic/rest"
|
@@ -41,7 +42,9 @@ module Google
|
|
41
42
|
universe_domain: universe_domain,
|
42
43
|
credentials: credentials,
|
43
44
|
numeric_enums: true,
|
44
|
-
|
45
|
+
service_name: self.class,
|
46
|
+
raise_faraday_errors: false,
|
47
|
+
logger: logger
|
45
48
|
end
|
46
49
|
|
47
50
|
##
|
@@ -62,6 +65,15 @@ module Google
|
|
62
65
|
@client_stub.endpoint
|
63
66
|
end
|
64
67
|
|
68
|
+
##
|
69
|
+
# The logger used for request/response debug logging.
|
70
|
+
#
|
71
|
+
# @return [Logger]
|
72
|
+
#
|
73
|
+
def logger stub: false
|
74
|
+
stub ? @client_stub.stub_logger : @client_stub.logger
|
75
|
+
end
|
76
|
+
|
65
77
|
##
|
66
78
|
# Baseline implementation for the get_data_source REST call
|
67
79
|
#
|
@@ -88,16 +100,18 @@ module Google
|
|
88
100
|
|
89
101
|
response = @client_stub.make_http_request(
|
90
102
|
verb,
|
91
|
-
uri:
|
92
|
-
body:
|
93
|
-
params:
|
103
|
+
uri: uri,
|
104
|
+
body: body || "",
|
105
|
+
params: query_string_params,
|
106
|
+
method_name: "get_data_source",
|
94
107
|
options: options
|
95
108
|
)
|
96
109
|
operation = ::Gapic::Rest::TransportOperation.new response
|
97
110
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::DataSource.decode_json response.body, ignore_unknown_fields: true
|
98
|
-
|
99
|
-
|
100
|
-
|
111
|
+
catch :response do
|
112
|
+
yield result, operation if block_given?
|
113
|
+
result
|
114
|
+
end
|
101
115
|
end
|
102
116
|
|
103
117
|
##
|
@@ -126,16 +140,18 @@ module Google
|
|
126
140
|
|
127
141
|
response = @client_stub.make_http_request(
|
128
142
|
verb,
|
129
|
-
uri:
|
130
|
-
body:
|
131
|
-
params:
|
143
|
+
uri: uri,
|
144
|
+
body: body || "",
|
145
|
+
params: query_string_params,
|
146
|
+
method_name: "list_data_sources",
|
132
147
|
options: options
|
133
148
|
)
|
134
149
|
operation = ::Gapic::Rest::TransportOperation.new response
|
135
150
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::ListDataSourcesResponse.decode_json response.body, ignore_unknown_fields: true
|
136
|
-
|
137
|
-
|
138
|
-
|
151
|
+
catch :response do
|
152
|
+
yield result, operation if block_given?
|
153
|
+
result
|
154
|
+
end
|
139
155
|
end
|
140
156
|
|
141
157
|
##
|
@@ -164,16 +180,18 @@ module Google
|
|
164
180
|
|
165
181
|
response = @client_stub.make_http_request(
|
166
182
|
verb,
|
167
|
-
uri:
|
168
|
-
body:
|
169
|
-
params:
|
183
|
+
uri: uri,
|
184
|
+
body: body || "",
|
185
|
+
params: query_string_params,
|
186
|
+
method_name: "create_transfer_config",
|
170
187
|
options: options
|
171
188
|
)
|
172
189
|
operation = ::Gapic::Rest::TransportOperation.new response
|
173
190
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::TransferConfig.decode_json response.body, ignore_unknown_fields: true
|
174
|
-
|
175
|
-
|
176
|
-
|
191
|
+
catch :response do
|
192
|
+
yield result, operation if block_given?
|
193
|
+
result
|
194
|
+
end
|
177
195
|
end
|
178
196
|
|
179
197
|
##
|
@@ -202,16 +220,18 @@ module Google
|
|
202
220
|
|
203
221
|
response = @client_stub.make_http_request(
|
204
222
|
verb,
|
205
|
-
uri:
|
206
|
-
body:
|
207
|
-
params:
|
223
|
+
uri: uri,
|
224
|
+
body: body || "",
|
225
|
+
params: query_string_params,
|
226
|
+
method_name: "update_transfer_config",
|
208
227
|
options: options
|
209
228
|
)
|
210
229
|
operation = ::Gapic::Rest::TransportOperation.new response
|
211
230
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::TransferConfig.decode_json response.body, ignore_unknown_fields: true
|
212
|
-
|
213
|
-
|
214
|
-
|
231
|
+
catch :response do
|
232
|
+
yield result, operation if block_given?
|
233
|
+
result
|
234
|
+
end
|
215
235
|
end
|
216
236
|
|
217
237
|
##
|
@@ -240,16 +260,18 @@ module Google
|
|
240
260
|
|
241
261
|
response = @client_stub.make_http_request(
|
242
262
|
verb,
|
243
|
-
uri:
|
244
|
-
body:
|
245
|
-
params:
|
263
|
+
uri: uri,
|
264
|
+
body: body || "",
|
265
|
+
params: query_string_params,
|
266
|
+
method_name: "delete_transfer_config",
|
246
267
|
options: options
|
247
268
|
)
|
248
269
|
operation = ::Gapic::Rest::TransportOperation.new response
|
249
270
|
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
250
|
-
|
251
|
-
|
252
|
-
|
271
|
+
catch :response do
|
272
|
+
yield result, operation if block_given?
|
273
|
+
result
|
274
|
+
end
|
253
275
|
end
|
254
276
|
|
255
277
|
##
|
@@ -278,16 +300,18 @@ module Google
|
|
278
300
|
|
279
301
|
response = @client_stub.make_http_request(
|
280
302
|
verb,
|
281
|
-
uri:
|
282
|
-
body:
|
283
|
-
params:
|
303
|
+
uri: uri,
|
304
|
+
body: body || "",
|
305
|
+
params: query_string_params,
|
306
|
+
method_name: "get_transfer_config",
|
284
307
|
options: options
|
285
308
|
)
|
286
309
|
operation = ::Gapic::Rest::TransportOperation.new response
|
287
310
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::TransferConfig.decode_json response.body, ignore_unknown_fields: true
|
288
|
-
|
289
|
-
|
290
|
-
|
311
|
+
catch :response do
|
312
|
+
yield result, operation if block_given?
|
313
|
+
result
|
314
|
+
end
|
291
315
|
end
|
292
316
|
|
293
317
|
##
|
@@ -316,16 +340,18 @@ module Google
|
|
316
340
|
|
317
341
|
response = @client_stub.make_http_request(
|
318
342
|
verb,
|
319
|
-
uri:
|
320
|
-
body:
|
321
|
-
params:
|
343
|
+
uri: uri,
|
344
|
+
body: body || "",
|
345
|
+
params: query_string_params,
|
346
|
+
method_name: "list_transfer_configs",
|
322
347
|
options: options
|
323
348
|
)
|
324
349
|
operation = ::Gapic::Rest::TransportOperation.new response
|
325
350
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::ListTransferConfigsResponse.decode_json response.body, ignore_unknown_fields: true
|
326
|
-
|
327
|
-
|
328
|
-
|
351
|
+
catch :response do
|
352
|
+
yield result, operation if block_given?
|
353
|
+
result
|
354
|
+
end
|
329
355
|
end
|
330
356
|
|
331
357
|
##
|
@@ -354,16 +380,18 @@ module Google
|
|
354
380
|
|
355
381
|
response = @client_stub.make_http_request(
|
356
382
|
verb,
|
357
|
-
uri:
|
358
|
-
body:
|
359
|
-
params:
|
383
|
+
uri: uri,
|
384
|
+
body: body || "",
|
385
|
+
params: query_string_params,
|
386
|
+
method_name: "schedule_transfer_runs",
|
360
387
|
options: options
|
361
388
|
)
|
362
389
|
operation = ::Gapic::Rest::TransportOperation.new response
|
363
390
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::ScheduleTransferRunsResponse.decode_json response.body, ignore_unknown_fields: true
|
364
|
-
|
365
|
-
|
366
|
-
|
391
|
+
catch :response do
|
392
|
+
yield result, operation if block_given?
|
393
|
+
result
|
394
|
+
end
|
367
395
|
end
|
368
396
|
|
369
397
|
##
|
@@ -392,16 +420,18 @@ module Google
|
|
392
420
|
|
393
421
|
response = @client_stub.make_http_request(
|
394
422
|
verb,
|
395
|
-
uri:
|
396
|
-
body:
|
397
|
-
params:
|
423
|
+
uri: uri,
|
424
|
+
body: body || "",
|
425
|
+
params: query_string_params,
|
426
|
+
method_name: "start_manual_transfer_runs",
|
398
427
|
options: options
|
399
428
|
)
|
400
429
|
operation = ::Gapic::Rest::TransportOperation.new response
|
401
430
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::StartManualTransferRunsResponse.decode_json response.body, ignore_unknown_fields: true
|
402
|
-
|
403
|
-
|
404
|
-
|
431
|
+
catch :response do
|
432
|
+
yield result, operation if block_given?
|
433
|
+
result
|
434
|
+
end
|
405
435
|
end
|
406
436
|
|
407
437
|
##
|
@@ -430,16 +460,18 @@ module Google
|
|
430
460
|
|
431
461
|
response = @client_stub.make_http_request(
|
432
462
|
verb,
|
433
|
-
uri:
|
434
|
-
body:
|
435
|
-
params:
|
463
|
+
uri: uri,
|
464
|
+
body: body || "",
|
465
|
+
params: query_string_params,
|
466
|
+
method_name: "get_transfer_run",
|
436
467
|
options: options
|
437
468
|
)
|
438
469
|
operation = ::Gapic::Rest::TransportOperation.new response
|
439
470
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::TransferRun.decode_json response.body, ignore_unknown_fields: true
|
440
|
-
|
441
|
-
|
442
|
-
|
471
|
+
catch :response do
|
472
|
+
yield result, operation if block_given?
|
473
|
+
result
|
474
|
+
end
|
443
475
|
end
|
444
476
|
|
445
477
|
##
|
@@ -468,16 +500,18 @@ module Google
|
|
468
500
|
|
469
501
|
response = @client_stub.make_http_request(
|
470
502
|
verb,
|
471
|
-
uri:
|
472
|
-
body:
|
473
|
-
params:
|
503
|
+
uri: uri,
|
504
|
+
body: body || "",
|
505
|
+
params: query_string_params,
|
506
|
+
method_name: "delete_transfer_run",
|
474
507
|
options: options
|
475
508
|
)
|
476
509
|
operation = ::Gapic::Rest::TransportOperation.new response
|
477
510
|
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
478
|
-
|
479
|
-
|
480
|
-
|
511
|
+
catch :response do
|
512
|
+
yield result, operation if block_given?
|
513
|
+
result
|
514
|
+
end
|
481
515
|
end
|
482
516
|
|
483
517
|
##
|
@@ -506,16 +540,18 @@ module Google
|
|
506
540
|
|
507
541
|
response = @client_stub.make_http_request(
|
508
542
|
verb,
|
509
|
-
uri:
|
510
|
-
body:
|
511
|
-
params:
|
543
|
+
uri: uri,
|
544
|
+
body: body || "",
|
545
|
+
params: query_string_params,
|
546
|
+
method_name: "list_transfer_runs",
|
512
547
|
options: options
|
513
548
|
)
|
514
549
|
operation = ::Gapic::Rest::TransportOperation.new response
|
515
550
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::ListTransferRunsResponse.decode_json response.body, ignore_unknown_fields: true
|
516
|
-
|
517
|
-
|
518
|
-
|
551
|
+
catch :response do
|
552
|
+
yield result, operation if block_given?
|
553
|
+
result
|
554
|
+
end
|
519
555
|
end
|
520
556
|
|
521
557
|
##
|
@@ -544,16 +580,18 @@ module Google
|
|
544
580
|
|
545
581
|
response = @client_stub.make_http_request(
|
546
582
|
verb,
|
547
|
-
uri:
|
548
|
-
body:
|
549
|
-
params:
|
583
|
+
uri: uri,
|
584
|
+
body: body || "",
|
585
|
+
params: query_string_params,
|
586
|
+
method_name: "list_transfer_logs",
|
550
587
|
options: options
|
551
588
|
)
|
552
589
|
operation = ::Gapic::Rest::TransportOperation.new response
|
553
590
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::ListTransferLogsResponse.decode_json response.body, ignore_unknown_fields: true
|
554
|
-
|
555
|
-
|
556
|
-
|
591
|
+
catch :response do
|
592
|
+
yield result, operation if block_given?
|
593
|
+
result
|
594
|
+
end
|
557
595
|
end
|
558
596
|
|
559
597
|
##
|
@@ -582,16 +620,18 @@ module Google
|
|
582
620
|
|
583
621
|
response = @client_stub.make_http_request(
|
584
622
|
verb,
|
585
|
-
uri:
|
586
|
-
body:
|
587
|
-
params:
|
623
|
+
uri: uri,
|
624
|
+
body: body || "",
|
625
|
+
params: query_string_params,
|
626
|
+
method_name: "check_valid_creds",
|
588
627
|
options: options
|
589
628
|
)
|
590
629
|
operation = ::Gapic::Rest::TransportOperation.new response
|
591
630
|
result = ::Google::Cloud::Bigquery::DataTransfer::V1::CheckValidCredsResponse.decode_json response.body, ignore_unknown_fields: true
|
592
|
-
|
593
|
-
|
594
|
-
|
631
|
+
catch :response do
|
632
|
+
yield result, operation if block_given?
|
633
|
+
result
|
634
|
+
end
|
595
635
|
end
|
596
636
|
|
597
637
|
##
|
@@ -620,16 +660,18 @@ module Google
|
|
620
660
|
|
621
661
|
response = @client_stub.make_http_request(
|
622
662
|
verb,
|
623
|
-
uri:
|
624
|
-
body:
|
625
|
-
params:
|
663
|
+
uri: uri,
|
664
|
+
body: body || "",
|
665
|
+
params: query_string_params,
|
666
|
+
method_name: "enroll_data_sources",
|
626
667
|
options: options
|
627
668
|
)
|
628
669
|
operation = ::Gapic::Rest::TransportOperation.new response
|
629
670
|
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
630
|
-
|
631
|
-
|
632
|
-
|
671
|
+
catch :response do
|
672
|
+
yield result, operation if block_given?
|
673
|
+
result
|
674
|
+
end
|
633
675
|
end
|
634
676
|
|
635
677
|
##
|
@@ -658,16 +700,18 @@ module Google
|
|
658
700
|
|
659
701
|
response = @client_stub.make_http_request(
|
660
702
|
verb,
|
661
|
-
uri:
|
662
|
-
body:
|
663
|
-
params:
|
703
|
+
uri: uri,
|
704
|
+
body: body || "",
|
705
|
+
params: query_string_params,
|
706
|
+
method_name: "unenroll_data_sources",
|
664
707
|
options: options
|
665
708
|
)
|
666
709
|
operation = ::Gapic::Rest::TransportOperation.new response
|
667
710
|
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
668
|
-
|
669
|
-
|
670
|
-
|
711
|
+
catch :response do
|
712
|
+
yield result, operation if block_given?
|
713
|
+
result
|
714
|
+
end
|
671
715
|
end
|
672
716
|
|
673
717
|
##
|
@@ -28,6 +28,9 @@ module Google
|
|
28
28
|
# @!attribute [rw] destinations
|
29
29
|
# @return [::Array<::Google::Api::ClientLibraryDestination>]
|
30
30
|
# The destination where API teams want this client library to be published.
|
31
|
+
# @!attribute [rw] selective_gapic_generation
|
32
|
+
# @return [::Google::Api::SelectiveGapicGeneration]
|
33
|
+
# Configuration for which RPCs should be generated in the GAPIC client.
|
31
34
|
class CommonLanguageSettings
|
32
35
|
include ::Google::Protobuf::MessageExts
|
33
36
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -212,6 +215,12 @@ module Google
|
|
212
215
|
# enabled. By default, asynchronous REST clients will not be generated.
|
213
216
|
# This feature will be enabled by default 1 month after launching the
|
214
217
|
# feature in preview packages.
|
218
|
+
# @!attribute [rw] protobuf_pythonic_types_enabled
|
219
|
+
# @return [::Boolean]
|
220
|
+
# Enables generation of protobuf code using new types that are more
|
221
|
+
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
|
+
# enabled by default 1 month after launching the feature in preview
|
223
|
+
# packages.
|
215
224
|
class ExperimentalFeatures
|
216
225
|
include ::Google::Protobuf::MessageExts
|
217
226
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -297,9 +306,28 @@ module Google
|
|
297
306
|
# @!attribute [rw] common
|
298
307
|
# @return [::Google::Api::CommonLanguageSettings]
|
299
308
|
# Some settings.
|
309
|
+
# @!attribute [rw] renamed_services
|
310
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
311
|
+
# Map of service names to renamed services. Keys are the package relative
|
312
|
+
# service names and values are the name to be used for the service client
|
313
|
+
# and call options.
|
314
|
+
#
|
315
|
+
# publishing:
|
316
|
+
# go_settings:
|
317
|
+
# renamed_services:
|
318
|
+
# Publisher: TopicAdmin
|
300
319
|
class GoSettings
|
301
320
|
include ::Google::Protobuf::MessageExts
|
302
321
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
322
|
+
|
323
|
+
# @!attribute [rw] key
|
324
|
+
# @return [::String]
|
325
|
+
# @!attribute [rw] value
|
326
|
+
# @return [::String]
|
327
|
+
class RenamedServicesEntry
|
328
|
+
include ::Google::Protobuf::MessageExts
|
329
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
330
|
+
end
|
303
331
|
end
|
304
332
|
|
305
333
|
# Describes the generator configuration for a method.
|
@@ -375,6 +403,17 @@ module Google
|
|
375
403
|
end
|
376
404
|
end
|
377
405
|
|
406
|
+
# This message is used to configure the generation of a subset of the RPCs in
|
407
|
+
# a service for client libraries.
|
408
|
+
# @!attribute [rw] methods
|
409
|
+
# @return [::Array<::String>]
|
410
|
+
# An allowlist of the fully qualified names of RPCs that should be included
|
411
|
+
# on public client surfaces.
|
412
|
+
class SelectiveGapicGeneration
|
413
|
+
include ::Google::Protobuf::MessageExts
|
414
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
415
|
+
end
|
416
|
+
|
378
417
|
# The organization for which the client libraries are being published.
|
379
418
|
# Affects the url where generated docs are published, etc.
|
380
419
|
module ClientLibraryOrganization
|
@@ -647,12 +647,16 @@ module Google
|
|
647
647
|
# that are scheduled to be transferred by the scheduled transfer run.
|
648
648
|
# requested_time_range must be a past time and cannot include future time
|
649
649
|
# values.
|
650
|
+
#
|
651
|
+
# Note: The following fields are mutually exclusive: `requested_time_range`, `requested_run_time`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
650
652
|
# @!attribute [rw] requested_run_time
|
651
653
|
# @return [::Google::Protobuf::Timestamp]
|
652
654
|
# A run_time timestamp for historical data files or reports
|
653
655
|
# that are scheduled to be transferred by the scheduled transfer run.
|
654
656
|
# requested_run_time must be a past time and cannot include future time
|
655
657
|
# values.
|
658
|
+
#
|
659
|
+
# Note: The following fields are mutually exclusive: `requested_run_time`, `requested_time_range`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
656
660
|
class StartManualTransferRunsRequest
|
657
661
|
include ::Google::Protobuf::MessageExts
|
658
662
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -65,16 +65,22 @@ module Google
|
|
65
65
|
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::TimeBasedSchedule]
|
66
66
|
# Time based transfer schedule options. This is the default schedule
|
67
67
|
# option.
|
68
|
+
#
|
69
|
+
# Note: The following fields are mutually exclusive: `time_based_schedule`, `manual_schedule`, `event_driven_schedule`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
68
70
|
# @!attribute [rw] manual_schedule
|
69
71
|
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::ManualSchedule]
|
70
72
|
# Manual transfer schedule. If set, the transfer run will not be
|
71
73
|
# auto-scheduled by the system, unless the client invokes
|
72
74
|
# StartManualTransferRuns. This is equivalent to
|
73
75
|
# disable_auto_scheduling = true.
|
76
|
+
#
|
77
|
+
# Note: The following fields are mutually exclusive: `manual_schedule`, `time_based_schedule`, `event_driven_schedule`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
74
78
|
# @!attribute [rw] event_driven_schedule
|
75
79
|
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::EventDrivenSchedule]
|
76
80
|
# Event driven transfer schedule options. If set, the transfer will be
|
77
81
|
# scheduled upon events arrial.
|
82
|
+
#
|
83
|
+
# Note: The following fields are mutually exclusive: `event_driven_schedule`, `time_based_schedule`, `manual_schedule`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
78
84
|
class ScheduleOptionsV2
|
79
85
|
include ::Google::Protobuf::MessageExts
|
80
86
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -53,21 +53,33 @@ module Google
|
|
53
53
|
# @!attribute [rw] null_value
|
54
54
|
# @return [::Google::Protobuf::NullValue]
|
55
55
|
# Represents a null value.
|
56
|
+
#
|
57
|
+
# Note: The following fields are mutually exclusive: `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
56
58
|
# @!attribute [rw] number_value
|
57
59
|
# @return [::Float]
|
58
60
|
# Represents a double value.
|
61
|
+
#
|
62
|
+
# Note: The following fields are mutually exclusive: `number_value`, `null_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
59
63
|
# @!attribute [rw] string_value
|
60
64
|
# @return [::String]
|
61
65
|
# Represents a string value.
|
66
|
+
#
|
67
|
+
# Note: The following fields are mutually exclusive: `string_value`, `null_value`, `number_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
62
68
|
# @!attribute [rw] bool_value
|
63
69
|
# @return [::Boolean]
|
64
70
|
# Represents a boolean value.
|
71
|
+
#
|
72
|
+
# Note: The following fields are mutually exclusive: `bool_value`, `null_value`, `number_value`, `string_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
65
73
|
# @!attribute [rw] struct_value
|
66
74
|
# @return [::Google::Protobuf::Struct]
|
67
75
|
# Represents a structured value.
|
76
|
+
#
|
77
|
+
# Note: The following fields are mutually exclusive: `struct_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
68
78
|
# @!attribute [rw] list_value
|
69
79
|
# @return [::Google::Protobuf::ListValue]
|
70
80
|
# Represents a repeated `Value`.
|
81
|
+
#
|
82
|
+
# Note: The following fields are mutually exclusive: `list_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
71
83
|
class Value
|
72
84
|
include ::Google::Protobuf::MessageExts
|
73
85
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-bigquery-data_transfer-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gapic-common
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.25.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -112,7 +111,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
112
111
|
licenses:
|
113
112
|
- Apache-2.0
|
114
113
|
metadata: {}
|
115
|
-
post_install_message:
|
116
114
|
rdoc_options: []
|
117
115
|
require_paths:
|
118
116
|
- lib
|
@@ -120,15 +118,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
120
118
|
requirements:
|
121
119
|
- - ">="
|
122
120
|
- !ruby/object:Gem::Version
|
123
|
-
version: '
|
121
|
+
version: '3.0'
|
124
122
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
125
123
|
requirements:
|
126
124
|
- - ">="
|
127
125
|
- !ruby/object:Gem::Version
|
128
126
|
version: '0'
|
129
127
|
requirements: []
|
130
|
-
rubygems_version: 3.
|
131
|
-
signing_key:
|
128
|
+
rubygems_version: 3.6.2
|
132
129
|
specification_version: 4
|
133
130
|
summary: Schedule queries or transfer external data from SaaS applications to Google
|
134
131
|
BigQuery on a regular basis.
|