google-cloud-bigquery-data_transfer-v1 0.7.1 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/bigquery/data_transfer/v1/bindings_override.rb +104 -0
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest/client.rb +1582 -0
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest/service_stub.rb +1052 -0
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest.rb +55 -0
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service.rb +6 -0
- data/lib/google/cloud/bigquery/data_transfer/v1/rest.rb +40 -0
- data/lib/google/cloud/bigquery/data_transfer/v1/version.rb +1 -1
- data/lib/google/cloud/bigquery/data_transfer/v1.rb +5 -0
- metadata +7 -2
@@ -0,0 +1,55 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "gapic/rest"
|
20
|
+
require "gapic/config"
|
21
|
+
require "gapic/config/method"
|
22
|
+
|
23
|
+
require "google/cloud/bigquery/data_transfer/v1/version"
|
24
|
+
require "google/cloud/bigquery/data_transfer/v1/bindings_override"
|
25
|
+
|
26
|
+
require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/credentials"
|
27
|
+
require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/paths"
|
28
|
+
require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest/client"
|
29
|
+
|
30
|
+
module Google
|
31
|
+
module Cloud
|
32
|
+
module Bigquery
|
33
|
+
module DataTransfer
|
34
|
+
module V1
|
35
|
+
##
|
36
|
+
# This API allows users to manage their data transfers into BigQuery.
|
37
|
+
#
|
38
|
+
# To load this service and instantiate a REST client:
|
39
|
+
#
|
40
|
+
# require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest"
|
41
|
+
# client = ::Google::Cloud::Bigquery::DataTransfer::V1::DataTransferService::Rest::Client.new
|
42
|
+
#
|
43
|
+
module DataTransferService
|
44
|
+
# Client for the REST transport
|
45
|
+
module Rest
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
helper_path = ::File.join __dir__, "rest", "helpers.rb"
|
55
|
+
require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest/helpers" if ::File.file? helper_path
|
@@ -25,6 +25,7 @@ require "google/cloud/bigquery/data_transfer/v1/version"
|
|
25
25
|
require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/credentials"
|
26
26
|
require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/paths"
|
27
27
|
require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/client"
|
28
|
+
require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest"
|
28
29
|
|
29
30
|
module Google
|
30
31
|
module Cloud
|
@@ -39,6 +40,11 @@ module Google
|
|
39
40
|
# require "google/cloud/bigquery/data_transfer/v1/data_transfer_service"
|
40
41
|
# client = ::Google::Cloud::Bigquery::DataTransfer::V1::DataTransferService::Client.new
|
41
42
|
#
|
43
|
+
# @example Load this service and instantiate a REST client
|
44
|
+
#
|
45
|
+
# require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest"
|
46
|
+
# client = ::Google::Cloud::Bigquery::DataTransfer::V1::DataTransferService::Rest::Client.new
|
47
|
+
#
|
42
48
|
module DataTransferService
|
43
49
|
end
|
44
50
|
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest"
|
20
|
+
require "google/cloud/bigquery/data_transfer/v1/bindings_override"
|
21
|
+
require "google/cloud/bigquery/data_transfer/v1/version"
|
22
|
+
|
23
|
+
module Google
|
24
|
+
module Cloud
|
25
|
+
module Bigquery
|
26
|
+
module DataTransfer
|
27
|
+
##
|
28
|
+
# To load just the REST part of this package, including all its services, and instantiate a REST client:
|
29
|
+
#
|
30
|
+
# @example
|
31
|
+
#
|
32
|
+
# require "google/cloud/bigquery/data_transfer/v1/rest"
|
33
|
+
# client = ::Google::Cloud::Bigquery::DataTransfer::V1::DataTransferService::Rest::Client.new
|
34
|
+
#
|
35
|
+
module V1
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -31,6 +31,11 @@ module Google
|
|
31
31
|
# require "google/cloud/bigquery/data_transfer/v1"
|
32
32
|
# client = ::Google::Cloud::Bigquery::DataTransfer::V1::DataTransferService::Client.new
|
33
33
|
#
|
34
|
+
# @example Load this package, including all its services, and instantiate a REST client
|
35
|
+
#
|
36
|
+
# require "google/cloud/bigquery/data_transfer/v1"
|
37
|
+
# client = ::Google::Cloud::Bigquery::DataTransfer::V1::DataTransferService::Rest::Client.new
|
38
|
+
#
|
34
39
|
module V1
|
35
40
|
end
|
36
41
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-bigquery-data_transfer-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.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-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -192,10 +192,15 @@ files:
|
|
192
192
|
- README.md
|
193
193
|
- lib/google-cloud-bigquery-data_transfer-v1.rb
|
194
194
|
- lib/google/cloud/bigquery/data_transfer/v1.rb
|
195
|
+
- lib/google/cloud/bigquery/data_transfer/v1/bindings_override.rb
|
195
196
|
- lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service.rb
|
196
197
|
- lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/client.rb
|
197
198
|
- lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/credentials.rb
|
198
199
|
- lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/paths.rb
|
200
|
+
- lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest.rb
|
201
|
+
- lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest/client.rb
|
202
|
+
- lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest/service_stub.rb
|
203
|
+
- lib/google/cloud/bigquery/data_transfer/v1/rest.rb
|
199
204
|
- lib/google/cloud/bigquery/data_transfer/v1/version.rb
|
200
205
|
- lib/google/cloud/bigquery/datatransfer/v1/datatransfer_pb.rb
|
201
206
|
- lib/google/cloud/bigquery/datatransfer/v1/datatransfer_services_pb.rb
|