google-cloud-storage_transfer-v1 0.1.0 → 0.1.1
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/lib/google/cloud/storage_transfer/v1/storage_transfer_service/client.rb +163 -18
- data/lib/google/cloud/storage_transfer/v1/storage_transfer_service/operations.rb +115 -12
- data/lib/google/cloud/storage_transfer/v1/version.rb +1 -1
- data/lib/google/storagetransfer/v1/transfer_pb.rb +2 -2
- data/lib/google/storagetransfer/v1/transfer_services_pb.rb +1 -1
- data/lib/google/storagetransfer/v1/transfer_types_pb.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55c503cb0b2dc31c3a7e65d3049ee7c5927878570d1dd1e66f1fa3fb90ac1902
|
4
|
+
data.tar.gz: 74caf82b189522819d2a786984fc73966cc93a34ad0193444e9c8566cbcd310d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a35b812854082d5c13b9184f803535a04a03aed833594720885f3b166259e7ea76f7a7e5b0d55418ea5ee6708260696dd6aa63a5faca197ea61aa032f9b04ac
|
7
|
+
data.tar.gz: afffabaf2311b63efc6a01244ecdfc32cd118fa264201f469e5a08f5ff9bb0e32b53c03400b25c9660913f9ae208fe75087e90be5bf28a4ce811f58412d8a851
|
@@ -195,6 +195,21 @@ module Google
|
|
195
195
|
#
|
196
196
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
197
197
|
#
|
198
|
+
# @example Basic example
|
199
|
+
# require "google/cloud/storage_transfer/v1"
|
200
|
+
#
|
201
|
+
# # Create a client object. The client can be reused for multiple calls.
|
202
|
+
# client = Google::Cloud::StorageTransfer::V1::StorageTransferService::Client.new
|
203
|
+
#
|
204
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
205
|
+
# request = Google::Cloud::StorageTransfer::V1::GetGoogleServiceAccountRequest.new
|
206
|
+
#
|
207
|
+
# # Call the get_google_service_account method.
|
208
|
+
# result = client.get_google_service_account request
|
209
|
+
#
|
210
|
+
# # The returned object is of type Google::Cloud::StorageTransfer::V1::GoogleServiceAccount.
|
211
|
+
# p result
|
212
|
+
#
|
198
213
|
def get_google_service_account request, options = nil
|
199
214
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
200
215
|
|
@@ -212,9 +227,11 @@ module Google
|
|
212
227
|
gapic_version: ::Google::Cloud::StorageTransfer::V1::VERSION
|
213
228
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
214
229
|
|
215
|
-
header_params = {
|
216
|
-
|
217
|
-
|
230
|
+
header_params = {}
|
231
|
+
if request.project_id
|
232
|
+
header_params["project_id"] = request.project_id
|
233
|
+
end
|
234
|
+
|
218
235
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
219
236
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
220
237
|
|
@@ -263,6 +280,21 @@ module Google
|
|
263
280
|
#
|
264
281
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
265
282
|
#
|
283
|
+
# @example Basic example
|
284
|
+
# require "google/cloud/storage_transfer/v1"
|
285
|
+
#
|
286
|
+
# # Create a client object. The client can be reused for multiple calls.
|
287
|
+
# client = Google::Cloud::StorageTransfer::V1::StorageTransferService::Client.new
|
288
|
+
#
|
289
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
290
|
+
# request = Google::Cloud::StorageTransfer::V1::CreateTransferJobRequest.new
|
291
|
+
#
|
292
|
+
# # Call the create_transfer_job method.
|
293
|
+
# result = client.create_transfer_job request
|
294
|
+
#
|
295
|
+
# # The returned object is of type Google::Cloud::StorageTransfer::V1::TransferJob.
|
296
|
+
# p result
|
297
|
+
#
|
266
298
|
def create_transfer_job request, options = nil
|
267
299
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
268
300
|
|
@@ -358,6 +390,21 @@ module Google
|
|
358
390
|
#
|
359
391
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
360
392
|
#
|
393
|
+
# @example Basic example
|
394
|
+
# require "google/cloud/storage_transfer/v1"
|
395
|
+
#
|
396
|
+
# # Create a client object. The client can be reused for multiple calls.
|
397
|
+
# client = Google::Cloud::StorageTransfer::V1::StorageTransferService::Client.new
|
398
|
+
#
|
399
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
400
|
+
# request = Google::Cloud::StorageTransfer::V1::UpdateTransferJobRequest.new
|
401
|
+
#
|
402
|
+
# # Call the update_transfer_job method.
|
403
|
+
# result = client.update_transfer_job request
|
404
|
+
#
|
405
|
+
# # The returned object is of type Google::Cloud::StorageTransfer::V1::TransferJob.
|
406
|
+
# p result
|
407
|
+
#
|
361
408
|
def update_transfer_job request, options = nil
|
362
409
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
363
410
|
|
@@ -375,9 +422,11 @@ module Google
|
|
375
422
|
gapic_version: ::Google::Cloud::StorageTransfer::V1::VERSION
|
376
423
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
377
424
|
|
378
|
-
header_params = {
|
379
|
-
|
380
|
-
|
425
|
+
header_params = {}
|
426
|
+
if request.job_name
|
427
|
+
header_params["job_name"] = request.job_name
|
428
|
+
end
|
429
|
+
|
381
430
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
382
431
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
383
432
|
|
@@ -430,6 +479,21 @@ module Google
|
|
430
479
|
#
|
431
480
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
432
481
|
#
|
482
|
+
# @example Basic example
|
483
|
+
# require "google/cloud/storage_transfer/v1"
|
484
|
+
#
|
485
|
+
# # Create a client object. The client can be reused for multiple calls.
|
486
|
+
# client = Google::Cloud::StorageTransfer::V1::StorageTransferService::Client.new
|
487
|
+
#
|
488
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
489
|
+
# request = Google::Cloud::StorageTransfer::V1::GetTransferJobRequest.new
|
490
|
+
#
|
491
|
+
# # Call the get_transfer_job method.
|
492
|
+
# result = client.get_transfer_job request
|
493
|
+
#
|
494
|
+
# # The returned object is of type Google::Cloud::StorageTransfer::V1::TransferJob.
|
495
|
+
# p result
|
496
|
+
#
|
433
497
|
def get_transfer_job request, options = nil
|
434
498
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
435
499
|
|
@@ -447,9 +511,11 @@ module Google
|
|
447
511
|
gapic_version: ::Google::Cloud::StorageTransfer::V1::VERSION
|
448
512
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
449
513
|
|
450
|
-
header_params = {
|
451
|
-
|
452
|
-
|
514
|
+
header_params = {}
|
515
|
+
if request.job_name
|
516
|
+
header_params["job_name"] = request.job_name
|
517
|
+
end
|
518
|
+
|
453
519
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
454
520
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
455
521
|
|
@@ -513,6 +579,27 @@ module Google
|
|
513
579
|
#
|
514
580
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
515
581
|
#
|
582
|
+
# @example Basic example
|
583
|
+
# require "google/cloud/storage_transfer/v1"
|
584
|
+
#
|
585
|
+
# # Create a client object. The client can be reused for multiple calls.
|
586
|
+
# client = Google::Cloud::StorageTransfer::V1::StorageTransferService::Client.new
|
587
|
+
#
|
588
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
589
|
+
# request = Google::Cloud::StorageTransfer::V1::ListTransferJobsRequest.new
|
590
|
+
#
|
591
|
+
# # Call the list_transfer_jobs method.
|
592
|
+
# result = client.list_transfer_jobs request
|
593
|
+
#
|
594
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
595
|
+
# # iterate over all elements by calling #each, and the enumerable
|
596
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
597
|
+
# # methods are also available for managing paging directly.
|
598
|
+
# result.each do |response|
|
599
|
+
# # Each element is of type ::Google::Cloud::StorageTransfer::V1::TransferJob.
|
600
|
+
# p response
|
601
|
+
# end
|
602
|
+
#
|
516
603
|
def list_transfer_jobs request, options = nil
|
517
604
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
518
605
|
|
@@ -576,6 +663,21 @@ module Google
|
|
576
663
|
#
|
577
664
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
578
665
|
#
|
666
|
+
# @example Basic example
|
667
|
+
# require "google/cloud/storage_transfer/v1"
|
668
|
+
#
|
669
|
+
# # Create a client object. The client can be reused for multiple calls.
|
670
|
+
# client = Google::Cloud::StorageTransfer::V1::StorageTransferService::Client.new
|
671
|
+
#
|
672
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
673
|
+
# request = Google::Cloud::StorageTransfer::V1::PauseTransferOperationRequest.new
|
674
|
+
#
|
675
|
+
# # Call the pause_transfer_operation method.
|
676
|
+
# result = client.pause_transfer_operation request
|
677
|
+
#
|
678
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
679
|
+
# p result
|
680
|
+
#
|
579
681
|
def pause_transfer_operation request, options = nil
|
580
682
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
581
683
|
|
@@ -593,9 +695,11 @@ module Google
|
|
593
695
|
gapic_version: ::Google::Cloud::StorageTransfer::V1::VERSION
|
594
696
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
595
697
|
|
596
|
-
header_params = {
|
597
|
-
|
598
|
-
|
698
|
+
header_params = {}
|
699
|
+
if request.name
|
700
|
+
header_params["name"] = request.name
|
701
|
+
end
|
702
|
+
|
599
703
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
600
704
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
601
705
|
|
@@ -644,6 +748,21 @@ module Google
|
|
644
748
|
#
|
645
749
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
646
750
|
#
|
751
|
+
# @example Basic example
|
752
|
+
# require "google/cloud/storage_transfer/v1"
|
753
|
+
#
|
754
|
+
# # Create a client object. The client can be reused for multiple calls.
|
755
|
+
# client = Google::Cloud::StorageTransfer::V1::StorageTransferService::Client.new
|
756
|
+
#
|
757
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
758
|
+
# request = Google::Cloud::StorageTransfer::V1::ResumeTransferOperationRequest.new
|
759
|
+
#
|
760
|
+
# # Call the resume_transfer_operation method.
|
761
|
+
# result = client.resume_transfer_operation request
|
762
|
+
#
|
763
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
764
|
+
# p result
|
765
|
+
#
|
647
766
|
def resume_transfer_operation request, options = nil
|
648
767
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
649
768
|
|
@@ -661,9 +780,11 @@ module Google
|
|
661
780
|
gapic_version: ::Google::Cloud::StorageTransfer::V1::VERSION
|
662
781
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
663
782
|
|
664
|
-
header_params = {
|
665
|
-
|
666
|
-
|
783
|
+
header_params = {}
|
784
|
+
if request.name
|
785
|
+
header_params["name"] = request.name
|
786
|
+
end
|
787
|
+
|
667
788
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
668
789
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
669
790
|
|
@@ -717,6 +838,28 @@ module Google
|
|
717
838
|
#
|
718
839
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
719
840
|
#
|
841
|
+
# @example Basic example
|
842
|
+
# require "google/cloud/storage_transfer/v1"
|
843
|
+
#
|
844
|
+
# # Create a client object. The client can be reused for multiple calls.
|
845
|
+
# client = Google::Cloud::StorageTransfer::V1::StorageTransferService::Client.new
|
846
|
+
#
|
847
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
848
|
+
# request = Google::Cloud::StorageTransfer::V1::RunTransferJobRequest.new
|
849
|
+
#
|
850
|
+
# # Call the run_transfer_job method.
|
851
|
+
# result = client.run_transfer_job request
|
852
|
+
#
|
853
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
854
|
+
# # object to check the status of an operation, cancel it, or wait
|
855
|
+
# # for results. Here is how to block until completion:
|
856
|
+
# result.wait_until_done! timeout: 60
|
857
|
+
# if result.response?
|
858
|
+
# p result.response
|
859
|
+
# else
|
860
|
+
# puts "Error!"
|
861
|
+
# end
|
862
|
+
#
|
720
863
|
def run_transfer_job request, options = nil
|
721
864
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
722
865
|
|
@@ -734,9 +877,11 @@ module Google
|
|
734
877
|
gapic_version: ::Google::Cloud::StorageTransfer::V1::VERSION
|
735
878
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
736
879
|
|
737
|
-
header_params = {
|
738
|
-
|
739
|
-
|
880
|
+
header_params = {}
|
881
|
+
if request.job_name
|
882
|
+
header_params["job_name"] = request.job_name
|
883
|
+
end
|
884
|
+
|
740
885
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
741
886
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
742
887
|
|
@@ -143,6 +143,27 @@ module Google
|
|
143
143
|
#
|
144
144
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
145
145
|
#
|
146
|
+
# @example Basic example
|
147
|
+
# require "google/longrunning"
|
148
|
+
#
|
149
|
+
# # Create a client object. The client can be reused for multiple calls.
|
150
|
+
# client = Google::Longrunning::Operations::Client.new
|
151
|
+
#
|
152
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
153
|
+
# request = Google::Longrunning::ListOperationsRequest.new
|
154
|
+
#
|
155
|
+
# # Call the list_operations method.
|
156
|
+
# result = client.list_operations request
|
157
|
+
#
|
158
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
159
|
+
# # iterate over all elements by calling #each, and the enumerable
|
160
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
161
|
+
# # methods are also available for managing paging directly.
|
162
|
+
# result.each do |response|
|
163
|
+
# # Each element is of type ::Google::Longrunning::Operation.
|
164
|
+
# p response
|
165
|
+
# end
|
166
|
+
#
|
146
167
|
def list_operations request, options = nil
|
147
168
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
148
169
|
|
@@ -160,9 +181,11 @@ module Google
|
|
160
181
|
gapic_version: ::Google::Cloud::StorageTransfer::V1::VERSION
|
161
182
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
162
183
|
|
163
|
-
header_params = {
|
164
|
-
|
165
|
-
|
184
|
+
header_params = {}
|
185
|
+
if request.name
|
186
|
+
header_params["name"] = request.name
|
187
|
+
end
|
188
|
+
|
166
189
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
167
190
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
168
191
|
|
@@ -215,6 +238,28 @@ module Google
|
|
215
238
|
#
|
216
239
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
217
240
|
#
|
241
|
+
# @example Basic example
|
242
|
+
# require "google/longrunning"
|
243
|
+
#
|
244
|
+
# # Create a client object. The client can be reused for multiple calls.
|
245
|
+
# client = Google::Longrunning::Operations::Client.new
|
246
|
+
#
|
247
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
248
|
+
# request = Google::Longrunning::GetOperationRequest.new
|
249
|
+
#
|
250
|
+
# # Call the get_operation method.
|
251
|
+
# result = client.get_operation request
|
252
|
+
#
|
253
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
254
|
+
# # object to check the status of an operation, cancel it, or wait
|
255
|
+
# # for results. Here is how to block until completion:
|
256
|
+
# result.wait_until_done! timeout: 60
|
257
|
+
# if result.response?
|
258
|
+
# p result.response
|
259
|
+
# else
|
260
|
+
# puts "Error!"
|
261
|
+
# end
|
262
|
+
#
|
218
263
|
def get_operation request, options = nil
|
219
264
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
220
265
|
|
@@ -232,9 +277,11 @@ module Google
|
|
232
277
|
gapic_version: ::Google::Cloud::StorageTransfer::V1::VERSION
|
233
278
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
234
279
|
|
235
|
-
header_params = {
|
236
|
-
|
237
|
-
|
280
|
+
header_params = {}
|
281
|
+
if request.name
|
282
|
+
header_params["name"] = request.name
|
283
|
+
end
|
284
|
+
|
238
285
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
239
286
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
240
287
|
|
@@ -287,6 +334,21 @@ module Google
|
|
287
334
|
#
|
288
335
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
289
336
|
#
|
337
|
+
# @example Basic example
|
338
|
+
# require "google/longrunning"
|
339
|
+
#
|
340
|
+
# # Create a client object. The client can be reused for multiple calls.
|
341
|
+
# client = Google::Longrunning::Operations::Client.new
|
342
|
+
#
|
343
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
344
|
+
# request = Google::Longrunning::DeleteOperationRequest.new
|
345
|
+
#
|
346
|
+
# # Call the delete_operation method.
|
347
|
+
# result = client.delete_operation request
|
348
|
+
#
|
349
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
350
|
+
# p result
|
351
|
+
#
|
290
352
|
def delete_operation request, options = nil
|
291
353
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
292
354
|
|
@@ -304,9 +366,11 @@ module Google
|
|
304
366
|
gapic_version: ::Google::Cloud::StorageTransfer::V1::VERSION
|
305
367
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
306
368
|
|
307
|
-
header_params = {
|
308
|
-
|
309
|
-
|
369
|
+
header_params = {}
|
370
|
+
if request.name
|
371
|
+
header_params["name"] = request.name
|
372
|
+
end
|
373
|
+
|
310
374
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
311
375
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
312
376
|
|
@@ -364,6 +428,21 @@ module Google
|
|
364
428
|
#
|
365
429
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
366
430
|
#
|
431
|
+
# @example Basic example
|
432
|
+
# require "google/longrunning"
|
433
|
+
#
|
434
|
+
# # Create a client object. The client can be reused for multiple calls.
|
435
|
+
# client = Google::Longrunning::Operations::Client.new
|
436
|
+
#
|
437
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
438
|
+
# request = Google::Longrunning::CancelOperationRequest.new
|
439
|
+
#
|
440
|
+
# # Call the cancel_operation method.
|
441
|
+
# result = client.cancel_operation request
|
442
|
+
#
|
443
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
444
|
+
# p result
|
445
|
+
#
|
367
446
|
def cancel_operation request, options = nil
|
368
447
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
369
448
|
|
@@ -381,9 +460,11 @@ module Google
|
|
381
460
|
gapic_version: ::Google::Cloud::StorageTransfer::V1::VERSION
|
382
461
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
383
462
|
|
384
|
-
header_params = {
|
385
|
-
|
386
|
-
|
463
|
+
header_params = {}
|
464
|
+
if request.name
|
465
|
+
header_params["name"] = request.name
|
466
|
+
end
|
467
|
+
|
387
468
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
388
469
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
389
470
|
|
@@ -444,6 +525,28 @@ module Google
|
|
444
525
|
#
|
445
526
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
446
527
|
#
|
528
|
+
# @example Basic example
|
529
|
+
# require "google/longrunning"
|
530
|
+
#
|
531
|
+
# # Create a client object. The client can be reused for multiple calls.
|
532
|
+
# client = Google::Longrunning::Operations::Client.new
|
533
|
+
#
|
534
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
535
|
+
# request = Google::Longrunning::WaitOperationRequest.new
|
536
|
+
#
|
537
|
+
# # Call the wait_operation method.
|
538
|
+
# result = client.wait_operation request
|
539
|
+
#
|
540
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
541
|
+
# # object to check the status of an operation, cancel it, or wait
|
542
|
+
# # for results. Here is how to block until completion:
|
543
|
+
# result.wait_until_done! timeout: 60
|
544
|
+
# if result.response?
|
545
|
+
# p result.response
|
546
|
+
# else
|
547
|
+
# puts "Error!"
|
548
|
+
# end
|
549
|
+
#
|
447
550
|
def wait_operation request, options = nil
|
448
551
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
449
552
|
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/storagetransfer/v1/transfer.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/annotations_pb'
|
7
5
|
require 'google/api/client_pb'
|
8
6
|
require 'google/api/field_behavior_pb'
|
@@ -11,6 +9,8 @@ require 'google/protobuf/duration_pb'
|
|
11
9
|
require 'google/protobuf/empty_pb'
|
12
10
|
require 'google/protobuf/field_mask_pb'
|
13
11
|
require 'google/storagetransfer/v1/transfer_types_pb'
|
12
|
+
require 'google/protobuf'
|
13
|
+
|
14
14
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
15
15
|
add_file("google/storagetransfer/v1/transfer.proto", :syntax => :proto3) do
|
16
16
|
add_message "google.storagetransfer.v1.GetGoogleServiceAccountRequest" do
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/storagetransfer/v1/transfer_types.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/annotations_pb'
|
7
5
|
require 'google/api/field_behavior_pb'
|
8
6
|
require 'google/protobuf/any_pb'
|
@@ -11,6 +9,8 @@ require 'google/protobuf/timestamp_pb'
|
|
11
9
|
require 'google/rpc/code_pb'
|
12
10
|
require 'google/type/date_pb'
|
13
11
|
require 'google/type/timeofday_pb'
|
12
|
+
require 'google/protobuf'
|
13
|
+
|
14
14
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
15
15
|
add_file("google/storagetransfer/v1/transfer_types.proto", :syntax => :proto3) do
|
16
16
|
add_message "google.storagetransfer.v1.GoogleServiceAccount" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-storage_transfer-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
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-08
|
11
|
+
date: 2021-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|