google-cloud-run-v2 0.18.0 → 0.20.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.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +30 -20
  3. data/lib/google/cloud/run/v2/builds/client.rb +28 -2
  4. data/lib/google/cloud/run/v2/builds/rest/client.rb +28 -2
  5. data/lib/google/cloud/run/v2/builds/rest/service_stub.rb +22 -8
  6. data/lib/google/cloud/run/v2/executions/client.rb +31 -5
  7. data/lib/google/cloud/run/v2/executions/operations.rb +12 -15
  8. data/lib/google/cloud/run/v2/executions/rest/client.rb +31 -5
  9. data/lib/google/cloud/run/v2/executions/rest/operations.rb +52 -45
  10. data/lib/google/cloud/run/v2/executions/rest/service_stub.rb +46 -26
  11. data/lib/google/cloud/run/v2/jobs/client.rb +33 -10
  12. data/lib/google/cloud/run/v2/jobs/operations.rb +12 -15
  13. data/lib/google/cloud/run/v2/jobs/rest/client.rb +33 -10
  14. data/lib/google/cloud/run/v2/jobs/rest/operations.rb +52 -45
  15. data/lib/google/cloud/run/v2/jobs/rest/service_stub.rb +86 -56
  16. data/lib/google/cloud/run/v2/revisions/client.rb +30 -4
  17. data/lib/google/cloud/run/v2/revisions/operations.rb +12 -15
  18. data/lib/google/cloud/run/v2/revisions/rest/client.rb +30 -4
  19. data/lib/google/cloud/run/v2/revisions/rest/operations.rb +52 -45
  20. data/lib/google/cloud/run/v2/revisions/rest/service_stub.rb +38 -20
  21. data/lib/google/cloud/run/v2/services/client.rb +32 -9
  22. data/lib/google/cloud/run/v2/services/operations.rb +12 -15
  23. data/lib/google/cloud/run/v2/services/rest/client.rb +32 -9
  24. data/lib/google/cloud/run/v2/services/rest/operations.rb +52 -45
  25. data/lib/google/cloud/run/v2/services/rest/service_stub.rb +78 -50
  26. data/lib/google/cloud/run/v2/tasks/client.rb +29 -3
  27. data/lib/google/cloud/run/v2/tasks/rest/client.rb +29 -3
  28. data/lib/google/cloud/run/v2/tasks/rest/service_stub.rb +30 -14
  29. data/lib/google/cloud/run/v2/vendor_settings_pb.rb +1 -1
  30. data/lib/google/cloud/run/v2/version.rb +1 -1
  31. data/proto_docs/google/api/client.rb +19 -0
  32. data/proto_docs/google/cloud/run/v2/vendor_settings.rb +5 -0
  33. data/proto_docs/google/longrunning/operations.rb +19 -14
  34. metadata +5 -5
@@ -181,14 +181,26 @@ module Google
181
181
  universe_domain: @config.universe_domain,
182
182
  channel_args: @config.channel_args,
183
183
  interceptors: @config.interceptors,
184
- channel_pool_config: @config.channel_pool
184
+ channel_pool_config: @config.channel_pool,
185
+ logger: @config.logger
185
186
  )
186
187
 
188
+ @services_stub.stub_logger&.info do |entry|
189
+ entry.set_system_name
190
+ entry.set_service
191
+ entry.message = "Created client for #{entry.service}"
192
+ entry.set_credentials_fields credentials
193
+ entry.set "customEndpoint", @config.endpoint if @config.endpoint
194
+ entry.set "defaultTimeout", @config.timeout if @config.timeout
195
+ entry.set "quotaProject", @quota_project_id if @quota_project_id
196
+ end
197
+
187
198
  @location_client = Google::Cloud::Location::Locations::Client.new do |config|
188
199
  config.credentials = credentials
189
200
  config.quota_project = @quota_project_id
190
201
  config.endpoint = @services_stub.endpoint
191
202
  config.universe_domain = @services_stub.universe_domain
203
+ config.logger = @services_stub.logger if config.respond_to? :logger=
192
204
  end
193
205
  end
194
206
 
@@ -206,6 +218,15 @@ module Google
206
218
  #
207
219
  attr_reader :location_client
208
220
 
221
+ ##
222
+ # The logger used for request/response debug logging.
223
+ #
224
+ # @return [Logger]
225
+ #
226
+ def logger
227
+ @services_stub.logger
228
+ end
229
+
209
230
  # Service calls
210
231
 
211
232
  ##
@@ -310,7 +331,7 @@ module Google
310
331
  @services_stub.call_rpc :create_service, request, options: options do |response, operation|
311
332
  response = ::Gapic::Operation.new response, @operations_client, options: options
312
333
  yield response, operation if block_given?
313
- return response
334
+ throw :response, response
314
335
  end
315
336
  rescue ::GRPC::BadStatus => e
316
337
  raise ::Google::Cloud::Error.from_error(e)
@@ -401,7 +422,6 @@ module Google
401
422
 
402
423
  @services_stub.call_rpc :get_service, request, options: options do |response, operation|
403
424
  yield response, operation if block_given?
404
- return response
405
425
  end
406
426
  rescue ::GRPC::BadStatus => e
407
427
  raise ::Google::Cloud::Error.from_error(e)
@@ -505,7 +525,7 @@ module Google
505
525
  @services_stub.call_rpc :list_services, request, options: options do |response, operation|
506
526
  response = ::Gapic::PagedEnumerable.new @services_stub, :list_services, request, response, operation, options
507
527
  yield response, operation if block_given?
508
- return response
528
+ throw :response, response
509
529
  end
510
530
  rescue ::GRPC::BadStatus => e
511
531
  raise ::Google::Cloud::Error.from_error(e)
@@ -611,7 +631,7 @@ module Google
611
631
  @services_stub.call_rpc :update_service, request, options: options do |response, operation|
612
632
  response = ::Gapic::Operation.new response, @operations_client, options: options
613
633
  yield response, operation if block_given?
614
- return response
634
+ throw :response, response
615
635
  end
616
636
  rescue ::GRPC::BadStatus => e
617
637
  raise ::Google::Cloud::Error.from_error(e)
@@ -718,7 +738,7 @@ module Google
718
738
  @services_stub.call_rpc :delete_service, request, options: options do |response, operation|
719
739
  response = ::Gapic::Operation.new response, @operations_client, options: options
720
740
  yield response, operation if block_given?
721
- return response
741
+ throw :response, response
722
742
  end
723
743
  rescue ::GRPC::BadStatus => e
724
744
  raise ::Google::Cloud::Error.from_error(e)
@@ -809,7 +829,6 @@ module Google
809
829
 
810
830
  @services_stub.call_rpc :get_iam_policy, request, options: options do |response, operation|
811
831
  yield response, operation if block_given?
812
- return response
813
832
  end
814
833
  rescue ::GRPC::BadStatus => e
815
834
  raise ::Google::Cloud::Error.from_error(e)
@@ -908,7 +927,6 @@ module Google
908
927
 
909
928
  @services_stub.call_rpc :set_iam_policy, request, options: options do |response, operation|
910
929
  yield response, operation if block_given?
911
- return response
912
930
  end
913
931
  rescue ::GRPC::BadStatus => e
914
932
  raise ::Google::Cloud::Error.from_error(e)
@@ -1002,7 +1020,6 @@ module Google
1002
1020
 
1003
1021
  @services_stub.call_rpc :test_iam_permissions, request, options: options do |response, operation|
1004
1022
  yield response, operation if block_given?
1005
- return response
1006
1023
  end
1007
1024
  rescue ::GRPC::BadStatus => e
1008
1025
  raise ::Google::Cloud::Error.from_error(e)
@@ -1091,6 +1108,11 @@ module Google
1091
1108
  # default endpoint URL. The default value of nil uses the environment
1092
1109
  # universe (usually the default "googleapis.com" universe).
1093
1110
  # @return [::String,nil]
1111
+ # @!attribute [rw] logger
1112
+ # A custom logger to use for request/response debug logging, or the value
1113
+ # `:default` (the default) to construct a default logger, or `nil` to
1114
+ # explicitly disable logging.
1115
+ # @return [::Logger,:default,nil]
1094
1116
  #
1095
1117
  class Configuration
1096
1118
  extend ::Gapic::Config
@@ -1115,6 +1137,7 @@ module Google
1115
1137
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
1116
1138
  config_attr :quota_project, nil, ::String, nil
1117
1139
  config_attr :universe_domain, nil, ::String, nil
1140
+ config_attr :logger, :default, ::Logger, nil, :default
1118
1141
 
1119
1142
  # @private
1120
1143
  def initialize parent_config = nil
@@ -124,14 +124,6 @@ module Google
124
124
  # Lists operations that match the specified filter in the request. If the
125
125
  # server doesn't support this method, it returns `UNIMPLEMENTED`.
126
126
  #
127
- # NOTE: the `name` binding allows API services to override the binding
128
- # to use different resource name schemes, such as `users/*/operations`. To
129
- # override the binding, API services can add a binding such as
130
- # `"/v1/{name=users/*}/operations"` to their service configuration.
131
- # For backwards compatibility, the default name includes the operations
132
- # collection id, however overriding users must ensure the name binding
133
- # is the parent resource, without the operations collection id.
134
- #
135
127
  # @overload list_operations(request, options = nil)
136
128
  # Pass arguments to `list_operations` via a request object, either of type
137
129
  # {::Google::Longrunning::ListOperationsRequest} or an equivalent Hash.
@@ -221,7 +213,7 @@ module Google
221
213
  wrap_lro_operation = ->(op_response) { ::Gapic::Operation.new op_response, @operations_client }
222
214
  response = ::Gapic::PagedEnumerable.new @operations_stub, :list_operations, request, response, operation, options, format_resource: wrap_lro_operation
223
215
  yield response, operation if block_given?
224
- return response
216
+ throw :response, response
225
217
  end
226
218
  rescue ::GRPC::BadStatus => e
227
219
  raise ::Google::Cloud::Error.from_error(e)
@@ -317,7 +309,7 @@ module Google
317
309
  @operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
318
310
  response = ::Gapic::Operation.new response, @operations_client, options: options
319
311
  yield response, operation if block_given?
320
- return response
312
+ throw :response, response
321
313
  end
322
314
  rescue ::GRPC::BadStatus => e
323
315
  raise ::Google::Cloud::Error.from_error(e)
@@ -406,7 +398,6 @@ module Google
406
398
 
407
399
  @operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
408
400
  yield response, operation if block_given?
409
- return response
410
401
  end
411
402
  rescue ::GRPC::BadStatus => e
412
403
  raise ::Google::Cloud::Error.from_error(e)
@@ -421,8 +412,9 @@ module Google
421
412
  # other methods to check whether the cancellation succeeded or whether the
422
413
  # operation completed despite cancellation. On successful cancellation,
423
414
  # the operation is not deleted; instead, it becomes an operation with
424
- # an {::Google::Longrunning::Operation#error Operation.error} value with a {::Google::Rpc::Status#code google.rpc.Status.code} of 1,
425
- # corresponding to `Code.CANCELLED`.
415
+ # an {::Google::Longrunning::Operation#error Operation.error} value with a
416
+ # {::Google::Rpc::Status#code google.rpc.Status.code} of `1`, corresponding to
417
+ # `Code.CANCELLED`.
426
418
  #
427
419
  # @overload cancel_operation(request, options = nil)
428
420
  # Pass arguments to `cancel_operation` via a request object, either of type
@@ -501,7 +493,6 @@ module Google
501
493
 
502
494
  @operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
503
495
  yield response, operation if block_given?
504
- return response
505
496
  end
506
497
  rescue ::GRPC::BadStatus => e
507
498
  raise ::Google::Cloud::Error.from_error(e)
@@ -607,7 +598,7 @@ module Google
607
598
  @operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
608
599
  response = ::Gapic::Operation.new response, @operations_client, options: options
609
600
  yield response, operation if block_given?
610
- return response
601
+ throw :response, response
611
602
  end
612
603
  rescue ::GRPC::BadStatus => e
613
604
  raise ::Google::Cloud::Error.from_error(e)
@@ -696,6 +687,11 @@ module Google
696
687
  # default endpoint URL. The default value of nil uses the environment
697
688
  # universe (usually the default "googleapis.com" universe).
698
689
  # @return [::String,nil]
690
+ # @!attribute [rw] logger
691
+ # A custom logger to use for request/response debug logging, or the value
692
+ # `:default` (the default) to construct a default logger, or `nil` to
693
+ # explicitly disable logging.
694
+ # @return [::Logger,:default,nil]
699
695
  #
700
696
  class Configuration
701
697
  extend ::Gapic::Config
@@ -720,6 +716,7 @@ module Google
720
716
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
721
717
  config_attr :quota_project, nil, ::String, nil
722
718
  config_attr :universe_domain, nil, ::String, nil
719
+ config_attr :logger, :default, ::Logger, nil, :default
723
720
 
724
721
  # @private
725
722
  def initialize parent_config = nil
@@ -174,14 +174,26 @@ module Google
174
174
  endpoint: @config.endpoint,
175
175
  endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
176
176
  universe_domain: @config.universe_domain,
177
- credentials: credentials
177
+ credentials: credentials,
178
+ logger: @config.logger
178
179
  )
179
180
 
181
+ @services_stub.logger(stub: true)&.info do |entry|
182
+ entry.set_system_name
183
+ entry.set_service
184
+ entry.message = "Created client for #{entry.service}"
185
+ entry.set_credentials_fields credentials
186
+ entry.set "customEndpoint", @config.endpoint if @config.endpoint
187
+ entry.set "defaultTimeout", @config.timeout if @config.timeout
188
+ entry.set "quotaProject", @quota_project_id if @quota_project_id
189
+ end
190
+
180
191
  @location_client = Google::Cloud::Location::Locations::Rest::Client.new do |config|
181
192
  config.credentials = credentials
182
193
  config.quota_project = @quota_project_id
183
194
  config.endpoint = @services_stub.endpoint
184
195
  config.universe_domain = @services_stub.universe_domain
196
+ config.logger = @services_stub.logger if config.respond_to? :logger=
185
197
  end
186
198
  end
187
199
 
@@ -199,6 +211,15 @@ module Google
199
211
  #
200
212
  attr_reader :location_client
201
213
 
214
+ ##
215
+ # The logger used for request/response debug logging.
216
+ #
217
+ # @return [Logger]
218
+ #
219
+ def logger
220
+ @services_stub.logger
221
+ end
222
+
202
223
  # Service calls
203
224
 
204
225
  ##
@@ -293,7 +314,7 @@ module Google
293
314
  @services_stub.create_service request, options do |result, operation|
294
315
  result = ::Gapic::Operation.new result, @operations_client, options: options
295
316
  yield result, operation if block_given?
296
- return result
317
+ throw :response, result
297
318
  end
298
319
  rescue ::Gapic::Rest::Error => e
299
320
  raise ::Google::Cloud::Error.from_error(e)
@@ -374,7 +395,6 @@ module Google
374
395
 
375
396
  @services_stub.get_service request, options do |result, operation|
376
397
  yield result, operation if block_given?
377
- return result
378
398
  end
379
399
  rescue ::Gapic::Rest::Error => e
380
400
  raise ::Google::Cloud::Error.from_error(e)
@@ -468,7 +488,7 @@ module Google
468
488
  @services_stub.list_services request, options do |result, operation|
469
489
  result = ::Gapic::Rest::PagedEnumerable.new @services_stub, :list_services, "services", request, result, options
470
490
  yield result, operation if block_given?
471
- return result
491
+ throw :response, result
472
492
  end
473
493
  rescue ::Gapic::Rest::Error => e
474
494
  raise ::Google::Cloud::Error.from_error(e)
@@ -564,7 +584,7 @@ module Google
564
584
  @services_stub.update_service request, options do |result, operation|
565
585
  result = ::Gapic::Operation.new result, @operations_client, options: options
566
586
  yield result, operation if block_given?
567
- return result
587
+ throw :response, result
568
588
  end
569
589
  rescue ::Gapic::Rest::Error => e
570
590
  raise ::Google::Cloud::Error.from_error(e)
@@ -661,7 +681,7 @@ module Google
661
681
  @services_stub.delete_service request, options do |result, operation|
662
682
  result = ::Gapic::Operation.new result, @operations_client, options: options
663
683
  yield result, operation if block_given?
664
- return result
684
+ throw :response, result
665
685
  end
666
686
  rescue ::Gapic::Rest::Error => e
667
687
  raise ::Google::Cloud::Error.from_error(e)
@@ -745,7 +765,6 @@ module Google
745
765
 
746
766
  @services_stub.get_iam_policy request, options do |result, operation|
747
767
  yield result, operation if block_given?
748
- return result
749
768
  end
750
769
  rescue ::Gapic::Rest::Error => e
751
770
  raise ::Google::Cloud::Error.from_error(e)
@@ -837,7 +856,6 @@ module Google
837
856
 
838
857
  @services_stub.set_iam_policy request, options do |result, operation|
839
858
  yield result, operation if block_given?
840
- return result
841
859
  end
842
860
  rescue ::Gapic::Rest::Error => e
843
861
  raise ::Google::Cloud::Error.from_error(e)
@@ -924,7 +942,6 @@ module Google
924
942
 
925
943
  @services_stub.test_iam_permissions request, options do |result, operation|
926
944
  yield result, operation if block_given?
927
- return result
928
945
  end
929
946
  rescue ::Gapic::Rest::Error => e
930
947
  raise ::Google::Cloud::Error.from_error(e)
@@ -1004,6 +1021,11 @@ module Google
1004
1021
  # default endpoint URL. The default value of nil uses the environment
1005
1022
  # universe (usually the default "googleapis.com" universe).
1006
1023
  # @return [::String,nil]
1024
+ # @!attribute [rw] logger
1025
+ # A custom logger to use for request/response debug logging, or the value
1026
+ # `:default` (the default) to construct a default logger, or `nil` to
1027
+ # explicitly disable logging.
1028
+ # @return [::Logger,:default,nil]
1007
1029
  #
1008
1030
  class Configuration
1009
1031
  extend ::Gapic::Config
@@ -1025,6 +1047,7 @@ module Google
1025
1047
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
1026
1048
  config_attr :quota_project, nil, ::String, nil
1027
1049
  config_attr :universe_domain, nil, ::String, nil
1050
+ config_attr :logger, :default, ::Logger, nil, :default
1028
1051
 
1029
1052
  # @private
1030
1053
  def initialize parent_config = nil
@@ -115,14 +115,6 @@ module Google
115
115
  # Lists operations that match the specified filter in the request. If the
116
116
  # server doesn't support this method, it returns `UNIMPLEMENTED`.
117
117
  #
118
- # NOTE: the `name` binding allows API services to override the binding
119
- # to use different resource name schemes, such as `users/*/operations`. To
120
- # override the binding, API services can add a binding such as
121
- # `"/v1/{name=users/*}/operations"` to their service configuration.
122
- # For backwards compatibility, the default name includes the operations
123
- # collection id, however overriding users must ensure the name binding
124
- # is the parent resource, without the operations collection id.
125
- #
126
118
  # @overload list_operations(request, options = nil)
127
119
  # Pass arguments to `list_operations` via a request object, either of type
128
120
  # {::Google::Longrunning::ListOperationsRequest} or an equivalent Hash.
@@ -204,7 +196,7 @@ module Google
204
196
  @operations_stub.list_operations request, options do |result, operation|
205
197
  result = ::Gapic::Rest::PagedEnumerable.new @operations_stub, :list_operations, "operations", request, result, options
206
198
  yield result, operation if block_given?
207
- return result
199
+ throw :response, result
208
200
  end
209
201
  rescue ::Gapic::Rest::Error => e
210
202
  raise ::Google::Cloud::Error.from_error(e)
@@ -293,7 +285,7 @@ module Google
293
285
  @operations_stub.get_operation request, options do |result, operation|
294
286
  result = ::Gapic::Operation.new result, @operations_client, options: options
295
287
  yield result, operation if block_given?
296
- return result
288
+ throw :response, result
297
289
  end
298
290
  rescue ::Gapic::Rest::Error => e
299
291
  raise ::Google::Cloud::Error.from_error(e)
@@ -375,7 +367,6 @@ module Google
375
367
 
376
368
  @operations_stub.delete_operation request, options do |result, operation|
377
369
  yield result, operation if block_given?
378
- return result
379
370
  end
380
371
  rescue ::Gapic::Rest::Error => e
381
372
  raise ::Google::Cloud::Error.from_error(e)
@@ -390,8 +381,9 @@ module Google
390
381
  # other methods to check whether the cancellation succeeded or whether the
391
382
  # operation completed despite cancellation. On successful cancellation,
392
383
  # the operation is not deleted; instead, it becomes an operation with
393
- # an {::Google::Longrunning::Operation#error Operation.error} value with a {::Google::Rpc::Status#code google.rpc.Status.code} of 1,
394
- # corresponding to `Code.CANCELLED`.
384
+ # an {::Google::Longrunning::Operation#error Operation.error} value with a
385
+ # {::Google::Rpc::Status#code google.rpc.Status.code} of `1`, corresponding to
386
+ # `Code.CANCELLED`.
395
387
  #
396
388
  # @overload cancel_operation(request, options = nil)
397
389
  # Pass arguments to `cancel_operation` via a request object, either of type
@@ -463,7 +455,6 @@ module Google
463
455
 
464
456
  @operations_stub.cancel_operation request, options do |result, operation|
465
457
  yield result, operation if block_given?
466
- return result
467
458
  end
468
459
  rescue ::Gapic::Rest::Error => e
469
460
  raise ::Google::Cloud::Error.from_error(e)
@@ -562,7 +553,7 @@ module Google
562
553
  @operations_stub.wait_operation request, options do |result, operation|
563
554
  result = ::Gapic::Operation.new result, @operations_client, options: options
564
555
  yield result, operation if block_given?
565
- return result
556
+ throw :response, result
566
557
  end
567
558
  rescue ::Gapic::Rest::Error => e
568
559
  raise ::Google::Cloud::Error.from_error(e)
@@ -642,6 +633,11 @@ module Google
642
633
  # default endpoint URL. The default value of nil uses the environment
643
634
  # universe (usually the default "googleapis.com" universe).
644
635
  # @return [::String,nil]
636
+ # @!attribute [rw] logger
637
+ # A custom logger to use for request/response debug logging, or the value
638
+ # `:default` (the default) to construct a default logger, or `nil` to
639
+ # explicitly disable logging.
640
+ # @return [::Logger,:default,nil]
645
641
  #
646
642
  class Configuration
647
643
  extend ::Gapic::Config
@@ -663,6 +659,7 @@ module Google
663
659
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
664
660
  config_attr :quota_project, nil, ::String, nil
665
661
  config_attr :universe_domain, nil, ::String, nil
662
+ config_attr :logger, :default, ::Logger, nil, :default
666
663
 
667
664
  # @private
668
665
  def initialize parent_config = nil
@@ -789,16 +786,18 @@ module Google
789
786
 
790
787
  response = @client_stub.make_http_request(
791
788
  verb,
792
- uri: uri,
793
- body: body || "",
794
- params: query_string_params,
789
+ uri: uri,
790
+ body: body || "",
791
+ params: query_string_params,
792
+ method_name: "list_operations",
795
793
  options: options
796
794
  )
797
795
  operation = ::Gapic::Rest::TransportOperation.new response
798
796
  result = ::Google::Longrunning::ListOperationsResponse.decode_json response.body, ignore_unknown_fields: true
799
-
800
- yield result, operation if block_given?
801
- result
797
+ catch :response do
798
+ yield result, operation if block_given?
799
+ result
800
+ end
802
801
  end
803
802
 
804
803
  ##
@@ -827,16 +826,18 @@ module Google
827
826
 
828
827
  response = @client_stub.make_http_request(
829
828
  verb,
830
- uri: uri,
831
- body: body || "",
832
- params: query_string_params,
829
+ uri: uri,
830
+ body: body || "",
831
+ params: query_string_params,
832
+ method_name: "get_operation",
833
833
  options: options
834
834
  )
835
835
  operation = ::Gapic::Rest::TransportOperation.new response
836
836
  result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
837
-
838
- yield result, operation if block_given?
839
- result
837
+ catch :response do
838
+ yield result, operation if block_given?
839
+ result
840
+ end
840
841
  end
841
842
 
842
843
  ##
@@ -865,16 +866,18 @@ module Google
865
866
 
866
867
  response = @client_stub.make_http_request(
867
868
  verb,
868
- uri: uri,
869
- body: body || "",
870
- params: query_string_params,
869
+ uri: uri,
870
+ body: body || "",
871
+ params: query_string_params,
872
+ method_name: "delete_operation",
871
873
  options: options
872
874
  )
873
875
  operation = ::Gapic::Rest::TransportOperation.new response
874
876
  result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
875
-
876
- yield result, operation if block_given?
877
- result
877
+ catch :response do
878
+ yield result, operation if block_given?
879
+ result
880
+ end
878
881
  end
879
882
 
880
883
  ##
@@ -903,16 +906,18 @@ module Google
903
906
 
904
907
  response = @client_stub.make_http_request(
905
908
  verb,
906
- uri: uri,
907
- body: body || "",
908
- params: query_string_params,
909
+ uri: uri,
910
+ body: body || "",
911
+ params: query_string_params,
912
+ method_name: "cancel_operation",
909
913
  options: options
910
914
  )
911
915
  operation = ::Gapic::Rest::TransportOperation.new response
912
916
  result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
913
-
914
- yield result, operation if block_given?
915
- result
917
+ catch :response do
918
+ yield result, operation if block_given?
919
+ result
920
+ end
916
921
  end
917
922
 
918
923
  ##
@@ -941,16 +946,18 @@ module Google
941
946
 
942
947
  response = @client_stub.make_http_request(
943
948
  verb,
944
- uri: uri,
945
- body: body || "",
946
- params: query_string_params,
949
+ uri: uri,
950
+ body: body || "",
951
+ params: query_string_params,
952
+ method_name: "wait_operation",
947
953
  options: options
948
954
  )
949
955
  operation = ::Gapic::Rest::TransportOperation.new response
950
956
  result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
951
-
952
- yield result, operation if block_given?
953
- result
957
+ catch :response do
958
+ yield result, operation if block_given?
959
+ result
960
+ end
954
961
  end
955
962
 
956
963
  ##