google-cloud-run-v2 0.19.0 → 0.20.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 +30 -20
- data/lib/google/cloud/run/v2/builds/client.rb +28 -2
- data/lib/google/cloud/run/v2/builds/rest/client.rb +28 -2
- data/lib/google/cloud/run/v2/builds/rest/service_stub.rb +22 -8
- data/lib/google/cloud/run/v2/executions/client.rb +31 -5
- data/lib/google/cloud/run/v2/executions/operations.rb +9 -5
- data/lib/google/cloud/run/v2/executions/rest/client.rb +31 -5
- data/lib/google/cloud/run/v2/executions/rest/operations.rb +49 -35
- data/lib/google/cloud/run/v2/executions/rest/service_stub.rb +46 -26
- data/lib/google/cloud/run/v2/jobs/client.rb +33 -10
- data/lib/google/cloud/run/v2/jobs/operations.rb +9 -5
- data/lib/google/cloud/run/v2/jobs/rest/client.rb +33 -10
- data/lib/google/cloud/run/v2/jobs/rest/operations.rb +49 -35
- data/lib/google/cloud/run/v2/jobs/rest/service_stub.rb +86 -56
- data/lib/google/cloud/run/v2/revisions/client.rb +30 -4
- data/lib/google/cloud/run/v2/revisions/operations.rb +9 -5
- data/lib/google/cloud/run/v2/revisions/rest/client.rb +30 -4
- data/lib/google/cloud/run/v2/revisions/rest/operations.rb +49 -35
- data/lib/google/cloud/run/v2/revisions/rest/service_stub.rb +38 -20
- data/lib/google/cloud/run/v2/services/client.rb +32 -9
- data/lib/google/cloud/run/v2/services/operations.rb +9 -5
- data/lib/google/cloud/run/v2/services/rest/client.rb +32 -9
- data/lib/google/cloud/run/v2/services/rest/operations.rb +49 -35
- data/lib/google/cloud/run/v2/services/rest/service_stub.rb +78 -50
- data/lib/google/cloud/run/v2/tasks/client.rb +29 -3
- data/lib/google/cloud/run/v2/tasks/rest/client.rb +29 -3
- data/lib/google/cloud/run/v2/tasks/rest/service_stub.rb +30 -14
- data/lib/google/cloud/run/v2/version.rb +1 -1
- data/proto_docs/google/api/client.rb +19 -0
- metadata +5 -5
@@ -158,14 +158,26 @@ module Google
|
|
158
158
|
endpoint: @config.endpoint,
|
159
159
|
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
160
160
|
universe_domain: @config.universe_domain,
|
161
|
-
credentials: credentials
|
161
|
+
credentials: credentials,
|
162
|
+
logger: @config.logger
|
162
163
|
)
|
163
164
|
|
165
|
+
@revisions_stub.logger(stub: true)&.info do |entry|
|
166
|
+
entry.set_system_name
|
167
|
+
entry.set_service
|
168
|
+
entry.message = "Created client for #{entry.service}"
|
169
|
+
entry.set_credentials_fields credentials
|
170
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
171
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
172
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
173
|
+
end
|
174
|
+
|
164
175
|
@location_client = Google::Cloud::Location::Locations::Rest::Client.new do |config|
|
165
176
|
config.credentials = credentials
|
166
177
|
config.quota_project = @quota_project_id
|
167
178
|
config.endpoint = @revisions_stub.endpoint
|
168
179
|
config.universe_domain = @revisions_stub.universe_domain
|
180
|
+
config.logger = @revisions_stub.logger if config.respond_to? :logger=
|
169
181
|
end
|
170
182
|
end
|
171
183
|
|
@@ -183,6 +195,15 @@ module Google
|
|
183
195
|
#
|
184
196
|
attr_reader :location_client
|
185
197
|
|
198
|
+
##
|
199
|
+
# The logger used for request/response debug logging.
|
200
|
+
#
|
201
|
+
# @return [Logger]
|
202
|
+
#
|
203
|
+
def logger
|
204
|
+
@revisions_stub.logger
|
205
|
+
end
|
206
|
+
|
186
207
|
# Service calls
|
187
208
|
|
188
209
|
##
|
@@ -260,7 +281,6 @@ module Google
|
|
260
281
|
|
261
282
|
@revisions_stub.get_revision request, options do |result, operation|
|
262
283
|
yield result, operation if block_given?
|
263
|
-
return result
|
264
284
|
end
|
265
285
|
rescue ::Gapic::Rest::Error => e
|
266
286
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -355,7 +375,7 @@ module Google
|
|
355
375
|
@revisions_stub.list_revisions request, options do |result, operation|
|
356
376
|
result = ::Gapic::Rest::PagedEnumerable.new @revisions_stub, :list_revisions, "revisions", request, result, options
|
357
377
|
yield result, operation if block_given?
|
358
|
-
|
378
|
+
throw :response, result
|
359
379
|
end
|
360
380
|
rescue ::Gapic::Rest::Error => e
|
361
381
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -450,7 +470,7 @@ module Google
|
|
450
470
|
@revisions_stub.delete_revision request, options do |result, operation|
|
451
471
|
result = ::Gapic::Operation.new result, @operations_client, options: options
|
452
472
|
yield result, operation if block_given?
|
453
|
-
|
473
|
+
throw :response, result
|
454
474
|
end
|
455
475
|
rescue ::Gapic::Rest::Error => e
|
456
476
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -530,6 +550,11 @@ module Google
|
|
530
550
|
# default endpoint URL. The default value of nil uses the environment
|
531
551
|
# universe (usually the default "googleapis.com" universe).
|
532
552
|
# @return [::String,nil]
|
553
|
+
# @!attribute [rw] logger
|
554
|
+
# A custom logger to use for request/response debug logging, or the value
|
555
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
556
|
+
# explicitly disable logging.
|
557
|
+
# @return [::Logger,:default,nil]
|
533
558
|
#
|
534
559
|
class Configuration
|
535
560
|
extend ::Gapic::Config
|
@@ -551,6 +576,7 @@ module Google
|
|
551
576
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
552
577
|
config_attr :quota_project, nil, ::String, nil
|
553
578
|
config_attr :universe_domain, nil, ::String, nil
|
579
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
554
580
|
|
555
581
|
# @private
|
556
582
|
def initialize parent_config = nil
|
@@ -196,7 +196,7 @@ module Google
|
|
196
196
|
@operations_stub.list_operations request, options do |result, operation|
|
197
197
|
result = ::Gapic::Rest::PagedEnumerable.new @operations_stub, :list_operations, "operations", request, result, options
|
198
198
|
yield result, operation if block_given?
|
199
|
-
|
199
|
+
throw :response, result
|
200
200
|
end
|
201
201
|
rescue ::Gapic::Rest::Error => e
|
202
202
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -285,7 +285,7 @@ module Google
|
|
285
285
|
@operations_stub.get_operation request, options do |result, operation|
|
286
286
|
result = ::Gapic::Operation.new result, @operations_client, options: options
|
287
287
|
yield result, operation if block_given?
|
288
|
-
|
288
|
+
throw :response, result
|
289
289
|
end
|
290
290
|
rescue ::Gapic::Rest::Error => e
|
291
291
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -367,7 +367,6 @@ module Google
|
|
367
367
|
|
368
368
|
@operations_stub.delete_operation request, options do |result, operation|
|
369
369
|
yield result, operation if block_given?
|
370
|
-
return result
|
371
370
|
end
|
372
371
|
rescue ::Gapic::Rest::Error => e
|
373
372
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -456,7 +455,6 @@ module Google
|
|
456
455
|
|
457
456
|
@operations_stub.cancel_operation request, options do |result, operation|
|
458
457
|
yield result, operation if block_given?
|
459
|
-
return result
|
460
458
|
end
|
461
459
|
rescue ::Gapic::Rest::Error => e
|
462
460
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -555,7 +553,7 @@ module Google
|
|
555
553
|
@operations_stub.wait_operation request, options do |result, operation|
|
556
554
|
result = ::Gapic::Operation.new result, @operations_client, options: options
|
557
555
|
yield result, operation if block_given?
|
558
|
-
|
556
|
+
throw :response, result
|
559
557
|
end
|
560
558
|
rescue ::Gapic::Rest::Error => e
|
561
559
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -635,6 +633,11 @@ module Google
|
|
635
633
|
# default endpoint URL. The default value of nil uses the environment
|
636
634
|
# universe (usually the default "googleapis.com" universe).
|
637
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]
|
638
641
|
#
|
639
642
|
class Configuration
|
640
643
|
extend ::Gapic::Config
|
@@ -656,6 +659,7 @@ module Google
|
|
656
659
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
657
660
|
config_attr :quota_project, nil, ::String, nil
|
658
661
|
config_attr :universe_domain, nil, ::String, nil
|
662
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
659
663
|
|
660
664
|
# @private
|
661
665
|
def initialize parent_config = nil
|
@@ -782,16 +786,18 @@ module Google
|
|
782
786
|
|
783
787
|
response = @client_stub.make_http_request(
|
784
788
|
verb,
|
785
|
-
uri:
|
786
|
-
body:
|
787
|
-
params:
|
789
|
+
uri: uri,
|
790
|
+
body: body || "",
|
791
|
+
params: query_string_params,
|
792
|
+
method_name: "list_operations",
|
788
793
|
options: options
|
789
794
|
)
|
790
795
|
operation = ::Gapic::Rest::TransportOperation.new response
|
791
796
|
result = ::Google::Longrunning::ListOperationsResponse.decode_json response.body, ignore_unknown_fields: true
|
792
|
-
|
793
|
-
|
794
|
-
|
797
|
+
catch :response do
|
798
|
+
yield result, operation if block_given?
|
799
|
+
result
|
800
|
+
end
|
795
801
|
end
|
796
802
|
|
797
803
|
##
|
@@ -820,16 +826,18 @@ module Google
|
|
820
826
|
|
821
827
|
response = @client_stub.make_http_request(
|
822
828
|
verb,
|
823
|
-
uri:
|
824
|
-
body:
|
825
|
-
params:
|
829
|
+
uri: uri,
|
830
|
+
body: body || "",
|
831
|
+
params: query_string_params,
|
832
|
+
method_name: "get_operation",
|
826
833
|
options: options
|
827
834
|
)
|
828
835
|
operation = ::Gapic::Rest::TransportOperation.new response
|
829
836
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
830
|
-
|
831
|
-
|
832
|
-
|
837
|
+
catch :response do
|
838
|
+
yield result, operation if block_given?
|
839
|
+
result
|
840
|
+
end
|
833
841
|
end
|
834
842
|
|
835
843
|
##
|
@@ -858,16 +866,18 @@ module Google
|
|
858
866
|
|
859
867
|
response = @client_stub.make_http_request(
|
860
868
|
verb,
|
861
|
-
uri:
|
862
|
-
body:
|
863
|
-
params:
|
869
|
+
uri: uri,
|
870
|
+
body: body || "",
|
871
|
+
params: query_string_params,
|
872
|
+
method_name: "delete_operation",
|
864
873
|
options: options
|
865
874
|
)
|
866
875
|
operation = ::Gapic::Rest::TransportOperation.new response
|
867
876
|
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
868
|
-
|
869
|
-
|
870
|
-
|
877
|
+
catch :response do
|
878
|
+
yield result, operation if block_given?
|
879
|
+
result
|
880
|
+
end
|
871
881
|
end
|
872
882
|
|
873
883
|
##
|
@@ -896,16 +906,18 @@ module Google
|
|
896
906
|
|
897
907
|
response = @client_stub.make_http_request(
|
898
908
|
verb,
|
899
|
-
uri:
|
900
|
-
body:
|
901
|
-
params:
|
909
|
+
uri: uri,
|
910
|
+
body: body || "",
|
911
|
+
params: query_string_params,
|
912
|
+
method_name: "cancel_operation",
|
902
913
|
options: options
|
903
914
|
)
|
904
915
|
operation = ::Gapic::Rest::TransportOperation.new response
|
905
916
|
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
906
|
-
|
907
|
-
|
908
|
-
|
917
|
+
catch :response do
|
918
|
+
yield result, operation if block_given?
|
919
|
+
result
|
920
|
+
end
|
909
921
|
end
|
910
922
|
|
911
923
|
##
|
@@ -934,16 +946,18 @@ module Google
|
|
934
946
|
|
935
947
|
response = @client_stub.make_http_request(
|
936
948
|
verb,
|
937
|
-
uri:
|
938
|
-
body:
|
939
|
-
params:
|
949
|
+
uri: uri,
|
950
|
+
body: body || "",
|
951
|
+
params: query_string_params,
|
952
|
+
method_name: "wait_operation",
|
940
953
|
options: options
|
941
954
|
)
|
942
955
|
operation = ::Gapic::Rest::TransportOperation.new response
|
943
956
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
944
|
-
|
945
|
-
|
946
|
-
|
957
|
+
catch :response do
|
958
|
+
yield result, operation if block_given?
|
959
|
+
result
|
960
|
+
end
|
947
961
|
end
|
948
962
|
|
949
963
|
##
|
@@ -30,7 +30,8 @@ module Google
|
|
30
30
|
# including transcoding, making the REST call, and deserialing the response.
|
31
31
|
#
|
32
32
|
class ServiceStub
|
33
|
-
|
33
|
+
# @private
|
34
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
|
34
35
|
# These require statements are intentionally placed here to initialize
|
35
36
|
# the REST modules only when it's required.
|
36
37
|
require "gapic/rest"
|
@@ -40,7 +41,9 @@ module Google
|
|
40
41
|
universe_domain: universe_domain,
|
41
42
|
credentials: credentials,
|
42
43
|
numeric_enums: true,
|
43
|
-
|
44
|
+
service_name: self.class,
|
45
|
+
raise_faraday_errors: false,
|
46
|
+
logger: logger
|
44
47
|
end
|
45
48
|
|
46
49
|
##
|
@@ -61,6 +64,15 @@ module Google
|
|
61
64
|
@client_stub.endpoint
|
62
65
|
end
|
63
66
|
|
67
|
+
##
|
68
|
+
# The logger used for request/response debug logging.
|
69
|
+
#
|
70
|
+
# @return [Logger]
|
71
|
+
#
|
72
|
+
def logger stub: false
|
73
|
+
stub ? @client_stub.stub_logger : @client_stub.logger
|
74
|
+
end
|
75
|
+
|
64
76
|
##
|
65
77
|
# Baseline implementation for the get_revision REST call
|
66
78
|
#
|
@@ -87,16 +99,18 @@ module Google
|
|
87
99
|
|
88
100
|
response = @client_stub.make_http_request(
|
89
101
|
verb,
|
90
|
-
uri:
|
91
|
-
body:
|
92
|
-
params:
|
102
|
+
uri: uri,
|
103
|
+
body: body || "",
|
104
|
+
params: query_string_params,
|
105
|
+
method_name: "get_revision",
|
93
106
|
options: options
|
94
107
|
)
|
95
108
|
operation = ::Gapic::Rest::TransportOperation.new response
|
96
109
|
result = ::Google::Cloud::Run::V2::Revision.decode_json response.body, ignore_unknown_fields: true
|
97
|
-
|
98
|
-
|
99
|
-
|
110
|
+
catch :response do
|
111
|
+
yield result, operation if block_given?
|
112
|
+
result
|
113
|
+
end
|
100
114
|
end
|
101
115
|
|
102
116
|
##
|
@@ -125,16 +139,18 @@ module Google
|
|
125
139
|
|
126
140
|
response = @client_stub.make_http_request(
|
127
141
|
verb,
|
128
|
-
uri:
|
129
|
-
body:
|
130
|
-
params:
|
142
|
+
uri: uri,
|
143
|
+
body: body || "",
|
144
|
+
params: query_string_params,
|
145
|
+
method_name: "list_revisions",
|
131
146
|
options: options
|
132
147
|
)
|
133
148
|
operation = ::Gapic::Rest::TransportOperation.new response
|
134
149
|
result = ::Google::Cloud::Run::V2::ListRevisionsResponse.decode_json response.body, ignore_unknown_fields: true
|
135
|
-
|
136
|
-
|
137
|
-
|
150
|
+
catch :response do
|
151
|
+
yield result, operation if block_given?
|
152
|
+
result
|
153
|
+
end
|
138
154
|
end
|
139
155
|
|
140
156
|
##
|
@@ -163,16 +179,18 @@ module Google
|
|
163
179
|
|
164
180
|
response = @client_stub.make_http_request(
|
165
181
|
verb,
|
166
|
-
uri:
|
167
|
-
body:
|
168
|
-
params:
|
182
|
+
uri: uri,
|
183
|
+
body: body || "",
|
184
|
+
params: query_string_params,
|
185
|
+
method_name: "delete_revision",
|
169
186
|
options: options
|
170
187
|
)
|
171
188
|
operation = ::Gapic::Rest::TransportOperation.new response
|
172
189
|
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
173
|
-
|
174
|
-
|
175
|
-
|
190
|
+
catch :response do
|
191
|
+
yield result, operation if block_given?
|
192
|
+
result
|
193
|
+
end
|
176
194
|
end
|
177
195
|
|
178
196
|
##
|
@@ -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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
@@ -213,7 +213,7 @@ module Google
|
|
213
213
|
wrap_lro_operation = ->(op_response) { ::Gapic::Operation.new op_response, @operations_client }
|
214
214
|
response = ::Gapic::PagedEnumerable.new @operations_stub, :list_operations, request, response, operation, options, format_resource: wrap_lro_operation
|
215
215
|
yield response, operation if block_given?
|
216
|
-
|
216
|
+
throw :response, response
|
217
217
|
end
|
218
218
|
rescue ::GRPC::BadStatus => e
|
219
219
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -309,7 +309,7 @@ module Google
|
|
309
309
|
@operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
|
310
310
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
311
311
|
yield response, operation if block_given?
|
312
|
-
|
312
|
+
throw :response, response
|
313
313
|
end
|
314
314
|
rescue ::GRPC::BadStatus => e
|
315
315
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -398,7 +398,6 @@ module Google
|
|
398
398
|
|
399
399
|
@operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
|
400
400
|
yield response, operation if block_given?
|
401
|
-
return response
|
402
401
|
end
|
403
402
|
rescue ::GRPC::BadStatus => e
|
404
403
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -494,7 +493,6 @@ module Google
|
|
494
493
|
|
495
494
|
@operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
|
496
495
|
yield response, operation if block_given?
|
497
|
-
return response
|
498
496
|
end
|
499
497
|
rescue ::GRPC::BadStatus => e
|
500
498
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -600,7 +598,7 @@ module Google
|
|
600
598
|
@operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
|
601
599
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
602
600
|
yield response, operation if block_given?
|
603
|
-
|
601
|
+
throw :response, response
|
604
602
|
end
|
605
603
|
rescue ::GRPC::BadStatus => e
|
606
604
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -689,6 +687,11 @@ module Google
|
|
689
687
|
# default endpoint URL. The default value of nil uses the environment
|
690
688
|
# universe (usually the default "googleapis.com" universe).
|
691
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]
|
692
695
|
#
|
693
696
|
class Configuration
|
694
697
|
extend ::Gapic::Config
|
@@ -713,6 +716,7 @@ module Google
|
|
713
716
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
714
717
|
config_attr :quota_project, nil, ::String, nil
|
715
718
|
config_attr :universe_domain, nil, ::String, nil
|
719
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
716
720
|
|
717
721
|
# @private
|
718
722
|
def initialize parent_config = nil
|