google-cloud-storage_transfer-v1 0.4.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d082cb15d9669c1bb4a18633141a5dd569dcab740075396ad9092ad689f6e4db
4
- data.tar.gz: a445a078f7f51d8ff050876ff0f82a534d7bb65104b238b9bce5ca09f012d6df
3
+ metadata.gz: c56312327a5b6109f223205eac3f6aab3a7fdd9d7f108cedac8ac4df14300719
4
+ data.tar.gz: 6635a127cf70f9b8087720e7ee4f0c61e156e6b16f3e10c6adbcbd5187faa05f
5
5
  SHA512:
6
- metadata.gz: 7aa91d27442401c1a4129d8a94f08624c7f21a6a09f9402e098aebd106b28b059031b41cf677a0bbfc646defd154c7a7d9d4facd18aa24127b93c6446a225c76
7
- data.tar.gz: 5d6340e368c2551d93faf0269bade410aff705a123e0586c5d43f16e3ae10ed9fd5eb2ca3bde0f1084f2cd224cef254da087db4127fb4b3436ae3dfe236b6062
6
+ metadata.gz: 7653113070f45bd525544710de7cf7e5c8eef71ed471f3558782a742f92bcc38edae80abdbf936d4f19f2498c1588e8bab163234d65a6c9af3e0d81579e28d8e
7
+ data.tar.gz: 000f8b4af98b20061cb2418dc278425b8e8316ec4bf7213a6892005c9cc32297335c68aafbba5162263b693345d643419194f5c85b54cc5f99efc2cb9bebdace
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Ruby Client for the Storage Transfer Service V1 API
2
2
 
3
- API Client library for the Storage Transfer Service V1 API
3
+ Transfers data from external data sources to a Google Cloud Storage bucket or between Google Cloud Storage buckets.
4
4
 
5
5
  Storage Transfer Service allows you to quickly import online data into Cloud Storage. You can also set up a repeating schedule for transferring data, as well as transfer data within Cloud Storage, from one bucket to another.
6
6
 
@@ -46,7 +46,7 @@ for general usage information.
46
46
  ## Enabling Logging
47
47
 
48
48
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
49
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
49
+ The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
50
50
  or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
51
51
  that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
52
  and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
@@ -0,0 +1,37 @@
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/storage_transfer/v1/storage_transfer_service/rest"
20
+ require "google/cloud/storage_transfer/v1/version"
21
+
22
+ module Google
23
+ module Cloud
24
+ module StorageTransfer
25
+ ##
26
+ # To load just the REST part of this package, including all its services, and instantiate a REST client:
27
+ #
28
+ # @example
29
+ #
30
+ # require "google/cloud/storage_transfer/v1/rest"
31
+ # client = ::Google::Cloud::StorageTransfer::V1::StorageTransferService::Rest::Client.new
32
+ #
33
+ module V1
34
+ end
35
+ end
36
+ end
37
+ end
@@ -597,13 +597,11 @@ module Google
597
597
  # # Call the list_transfer_jobs method.
598
598
  # result = client.list_transfer_jobs request
599
599
  #
600
- # # The returned object is of type Gapic::PagedEnumerable. You can
601
- # # iterate over all elements by calling #each, and the enumerable
602
- # # will lazily make API calls to fetch subsequent pages. Other
603
- # # methods are also available for managing paging directly.
604
- # result.each do |response|
600
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
601
+ # # over elements, and API calls will be issued to fetch pages as needed.
602
+ # result.each do |item|
605
603
  # # Each element is of type ::Google::Cloud::StorageTransfer::V1::TransferJob.
606
- # p response
604
+ # p item
607
605
  # end
608
606
  #
609
607
  def list_transfer_jobs request, options = nil
@@ -856,14 +854,14 @@ module Google
856
854
  # # Call the run_transfer_job method.
857
855
  # result = client.run_transfer_job request
858
856
  #
859
- # # The returned object is of type Gapic::Operation. You can use this
860
- # # object to check the status of an operation, cancel it, or wait
861
- # # for results. Here is how to block until completion:
857
+ # # The returned object is of type Gapic::Operation. You can use it to
858
+ # # check the status of an operation, cancel it, or wait for results.
859
+ # # Here is how to wait for a response.
862
860
  # result.wait_until_done! timeout: 60
863
861
  # if result.response?
864
862
  # p result.response
865
863
  # else
866
- # puts "Error!"
864
+ # puts "No response received."
867
865
  # end
868
866
  #
869
867
  def run_transfer_job request, options = nil
@@ -1341,13 +1339,11 @@ module Google
1341
1339
  # # Call the list_agent_pools method.
1342
1340
  # result = client.list_agent_pools request
1343
1341
  #
1344
- # # The returned object is of type Gapic::PagedEnumerable. You can
1345
- # # iterate over all elements by calling #each, and the enumerable
1346
- # # will lazily make API calls to fetch subsequent pages. Other
1347
- # # methods are also available for managing paging directly.
1348
- # result.each do |response|
1342
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
1343
+ # # over elements, and API calls will be issued to fetch pages as needed.
1344
+ # result.each do |item|
1349
1345
  # # Each element is of type ::Google::Cloud::StorageTransfer::V1::AgentPool.
1350
- # p response
1346
+ # p item
1351
1347
  # end
1352
1348
  #
1353
1349
  def list_agent_pools request, options = nil
@@ -158,13 +158,11 @@ module Google
158
158
  # # Call the list_operations method.
159
159
  # result = client.list_operations request
160
160
  #
161
- # # The returned object is of type Gapic::PagedEnumerable. You can
162
- # # iterate over all elements by calling #each, and the enumerable
163
- # # will lazily make API calls to fetch subsequent pages. Other
164
- # # methods are also available for managing paging directly.
165
- # result.each do |response|
161
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
162
+ # # over elements, and API calls will be issued to fetch pages as needed.
163
+ # result.each do |item|
166
164
  # # Each element is of type ::Google::Longrunning::Operation.
167
- # p response
165
+ # p item
168
166
  # end
169
167
  #
170
168
  def list_operations request, options = nil
@@ -253,14 +251,14 @@ module Google
253
251
  # # Call the get_operation method.
254
252
  # result = client.get_operation request
255
253
  #
256
- # # The returned object is of type Gapic::Operation. You can use this
257
- # # object to check the status of an operation, cancel it, or wait
258
- # # for results. Here is how to block until completion:
254
+ # # The returned object is of type Gapic::Operation. You can use it to
255
+ # # check the status of an operation, cancel it, or wait for results.
256
+ # # Here is how to wait for a response.
259
257
  # result.wait_until_done! timeout: 60
260
258
  # if result.response?
261
259
  # p result.response
262
260
  # else
263
- # puts "Error!"
261
+ # puts "No response received."
264
262
  # end
265
263
  #
266
264
  def get_operation request, options = nil
@@ -540,14 +538,14 @@ module Google
540
538
  # # Call the wait_operation method.
541
539
  # result = client.wait_operation request
542
540
  #
543
- # # The returned object is of type Gapic::Operation. You can use this
544
- # # object to check the status of an operation, cancel it, or wait
545
- # # for results. Here is how to block until completion:
541
+ # # The returned object is of type Gapic::Operation. You can use it to
542
+ # # check the status of an operation, cancel it, or wait for results.
543
+ # # Here is how to wait for a response.
546
544
  # result.wait_until_done! timeout: 60
547
545
  # if result.response?
548
546
  # p result.response
549
547
  # else
550
- # puts "Error!"
548
+ # puts "No response received."
551
549
  # end
552
550
  #
553
551
  def wait_operation request, options = nil