google-shopping-merchant-accounts-v1beta 0.3.0 → 0.4.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/shopping/merchant/accounts/v1beta/account_issue_service/client.rb +28 -2
- data/lib/google/shopping/merchant/accounts/v1beta/account_issue_service/rest/client.rb +28 -2
- data/lib/google/shopping/merchant/accounts/v1beta/account_issue_service/rest/service_stub.rb +22 -8
- data/lib/google/shopping/merchant/accounts/v1beta/account_tax_service/client.rb +28 -4
- data/lib/google/shopping/merchant/accounts/v1beta/account_tax_service/rest/client.rb +28 -4
- data/lib/google/shopping/merchant/accounts/v1beta/account_tax_service/rest/service_stub.rb +38 -20
- data/lib/google/shopping/merchant/accounts/v1beta/accounts_service/client.rb +29 -7
- data/lib/google/shopping/merchant/accounts/v1beta/accounts_service/rest/client.rb +29 -7
- data/lib/google/shopping/merchant/accounts/v1beta/accounts_service/rest/service_stub.rb +62 -38
- data/lib/google/shopping/merchant/accounts/v1beta/autofeed_settings_service/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/autofeed_settings_service/rest/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/autofeed_settings_service/rest/service_stub.rb +30 -14
- data/lib/google/shopping/merchant/accounts/v1beta/business_identity_service/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/business_identity_service/rest/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/business_identity_service/rest/service_stub.rb +30 -14
- data/lib/google/shopping/merchant/accounts/v1beta/business_info_service/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/business_info_service/rest/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/business_info_service/rest/service_stub.rb +30 -14
- data/lib/google/shopping/merchant/accounts/v1beta/email_preferences_service/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/email_preferences_service/rest/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/email_preferences_service/rest/service_stub.rb +30 -14
- data/lib/google/shopping/merchant/accounts/v1beta/homepage_service/client.rb +27 -5
- data/lib/google/shopping/merchant/accounts/v1beta/homepage_service/rest/client.rb +27 -5
- data/lib/google/shopping/merchant/accounts/v1beta/homepage_service/rest/service_stub.rb +46 -26
- data/lib/google/shopping/merchant/accounts/v1beta/online_return_policy_service/client.rb +28 -3
- data/lib/google/shopping/merchant/accounts/v1beta/online_return_policy_service/rest/client.rb +28 -3
- data/lib/google/shopping/merchant/accounts/v1beta/online_return_policy_service/rest/service_stub.rb +30 -14
- data/lib/google/shopping/merchant/accounts/v1beta/programs_service/client.rb +28 -5
- data/lib/google/shopping/merchant/accounts/v1beta/programs_service/rest/client.rb +28 -5
- data/lib/google/shopping/merchant/accounts/v1beta/programs_service/rest/service_stub.rb +46 -26
- data/lib/google/shopping/merchant/accounts/v1beta/regions_service/client.rb +28 -6
- data/lib/google/shopping/merchant/accounts/v1beta/regions_service/rest/client.rb +28 -6
- data/lib/google/shopping/merchant/accounts/v1beta/regions_service/rest/service_stub.rb +54 -32
- data/lib/google/shopping/merchant/accounts/v1beta/shipping_settings_service/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/shipping_settings_service/rest/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/shipping_settings_service/rest/service_stub.rb +30 -14
- data/lib/google/shopping/merchant/accounts/v1beta/terms_of_service_agreement_state_service/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/terms_of_service_agreement_state_service/rest/client.rb +27 -3
- data/lib/google/shopping/merchant/accounts/v1beta/terms_of_service_agreement_state_service/rest/service_stub.rb +30 -14
- data/lib/google/shopping/merchant/accounts/v1beta/terms_of_service_service/client.rb +27 -4
- data/lib/google/shopping/merchant/accounts/v1beta/terms_of_service_service/rest/client.rb +27 -4
- data/lib/google/shopping/merchant/accounts/v1beta/terms_of_service_service/rest/service_stub.rb +38 -20
- data/lib/google/shopping/merchant/accounts/v1beta/user_service/client.rb +28 -6
- data/lib/google/shopping/merchant/accounts/v1beta/user_service/rest/client.rb +28 -6
- data/lib/google/shopping/merchant/accounts/v1beta/user_service/rest/service_stub.rb +54 -32
- data/lib/google/shopping/merchant/accounts/v1beta/version.rb +1 -1
- data/proto_docs/google/api/client.rb +39 -0
- metadata +5 -5
@@ -156,8 +156,28 @@ module Google
|
|
156
156
|
endpoint: @config.endpoint,
|
157
157
|
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
158
158
|
universe_domain: @config.universe_domain,
|
159
|
-
credentials: credentials
|
159
|
+
credentials: credentials,
|
160
|
+
logger: @config.logger
|
160
161
|
)
|
162
|
+
|
163
|
+
@accounts_service_stub.logger(stub: true)&.info do |entry|
|
164
|
+
entry.set_system_name
|
165
|
+
entry.set_service
|
166
|
+
entry.message = "Created client for #{entry.service}"
|
167
|
+
entry.set_credentials_fields credentials
|
168
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
169
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
170
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
##
|
175
|
+
# The logger used for request/response debug logging.
|
176
|
+
#
|
177
|
+
# @return [Logger]
|
178
|
+
#
|
179
|
+
def logger
|
180
|
+
@accounts_service_stub.logger
|
161
181
|
end
|
162
182
|
|
163
183
|
# Service calls
|
@@ -238,7 +258,6 @@ module Google
|
|
238
258
|
|
239
259
|
@accounts_service_stub.get_account request, options do |result, operation|
|
240
260
|
yield result, operation if block_given?
|
241
|
-
return result
|
242
261
|
end
|
243
262
|
rescue ::Gapic::Rest::Error => e
|
244
263
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -330,7 +349,6 @@ module Google
|
|
330
349
|
|
331
350
|
@accounts_service_stub.create_and_configure_account request, options do |result, operation|
|
332
351
|
yield result, operation if block_given?
|
333
|
-
return result
|
334
352
|
end
|
335
353
|
rescue ::Gapic::Rest::Error => e
|
336
354
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -418,7 +436,6 @@ module Google
|
|
418
436
|
|
419
437
|
@accounts_service_stub.delete_account request, options do |result, operation|
|
420
438
|
yield result, operation if block_given?
|
421
|
-
return result
|
422
439
|
end
|
423
440
|
rescue ::Gapic::Rest::Error => e
|
424
441
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -500,7 +517,6 @@ module Google
|
|
500
517
|
|
501
518
|
@accounts_service_stub.update_account request, options do |result, operation|
|
502
519
|
yield result, operation if block_given?
|
503
|
-
return result
|
504
520
|
end
|
505
521
|
rescue ::Gapic::Rest::Error => e
|
506
522
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -602,7 +618,7 @@ module Google
|
|
602
618
|
@accounts_service_stub.list_accounts request, options do |result, operation|
|
603
619
|
result = ::Gapic::Rest::PagedEnumerable.new @accounts_service_stub, :list_accounts, "accounts", request, result, options
|
604
620
|
yield result, operation if block_given?
|
605
|
-
|
621
|
+
throw :response, result
|
606
622
|
end
|
607
623
|
rescue ::Gapic::Rest::Error => e
|
608
624
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -701,7 +717,7 @@ module Google
|
|
701
717
|
@accounts_service_stub.list_sub_accounts request, options do |result, operation|
|
702
718
|
result = ::Gapic::Rest::PagedEnumerable.new @accounts_service_stub, :list_sub_accounts, "accounts", request, result, options
|
703
719
|
yield result, operation if block_given?
|
704
|
-
|
720
|
+
throw :response, result
|
705
721
|
end
|
706
722
|
rescue ::Gapic::Rest::Error => e
|
707
723
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -781,6 +797,11 @@ module Google
|
|
781
797
|
# default endpoint URL. The default value of nil uses the environment
|
782
798
|
# universe (usually the default "googleapis.com" universe).
|
783
799
|
# @return [::String,nil]
|
800
|
+
# @!attribute [rw] logger
|
801
|
+
# A custom logger to use for request/response debug logging, or the value
|
802
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
803
|
+
# explicitly disable logging.
|
804
|
+
# @return [::Logger,:default,nil]
|
784
805
|
#
|
785
806
|
class Configuration
|
786
807
|
extend ::Gapic::Config
|
@@ -802,6 +823,7 @@ module Google
|
|
802
823
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
803
824
|
config_attr :quota_project, nil, ::String, nil
|
804
825
|
config_attr :universe_domain, nil, ::String, nil
|
826
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
805
827
|
|
806
828
|
# @private
|
807
829
|
def initialize parent_config = nil
|
@@ -31,7 +31,8 @@ module Google
|
|
31
31
|
# including transcoding, making the REST call, and deserialing the response.
|
32
32
|
#
|
33
33
|
class ServiceStub
|
34
|
-
|
34
|
+
# @private
|
35
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
|
35
36
|
# These require statements are intentionally placed here to initialize
|
36
37
|
# the REST modules only when it's required.
|
37
38
|
require "gapic/rest"
|
@@ -41,7 +42,9 @@ module Google
|
|
41
42
|
universe_domain: universe_domain,
|
42
43
|
credentials: credentials,
|
43
44
|
numeric_enums: true,
|
44
|
-
|
45
|
+
service_name: self.class,
|
46
|
+
raise_faraday_errors: false,
|
47
|
+
logger: logger
|
45
48
|
end
|
46
49
|
|
47
50
|
##
|
@@ -62,6 +65,15 @@ module Google
|
|
62
65
|
@client_stub.endpoint
|
63
66
|
end
|
64
67
|
|
68
|
+
##
|
69
|
+
# The logger used for request/response debug logging.
|
70
|
+
#
|
71
|
+
# @return [Logger]
|
72
|
+
#
|
73
|
+
def logger stub: false
|
74
|
+
stub ? @client_stub.stub_logger : @client_stub.logger
|
75
|
+
end
|
76
|
+
|
65
77
|
##
|
66
78
|
# Baseline implementation for the get_account REST call
|
67
79
|
#
|
@@ -88,16 +100,18 @@ module Google
|
|
88
100
|
|
89
101
|
response = @client_stub.make_http_request(
|
90
102
|
verb,
|
91
|
-
uri:
|
92
|
-
body:
|
93
|
-
params:
|
103
|
+
uri: uri,
|
104
|
+
body: body || "",
|
105
|
+
params: query_string_params,
|
106
|
+
method_name: "get_account",
|
94
107
|
options: options
|
95
108
|
)
|
96
109
|
operation = ::Gapic::Rest::TransportOperation.new response
|
97
110
|
result = ::Google::Shopping::Merchant::Accounts::V1beta::Account.decode_json response.body, ignore_unknown_fields: true
|
98
|
-
|
99
|
-
|
100
|
-
|
111
|
+
catch :response do
|
112
|
+
yield result, operation if block_given?
|
113
|
+
result
|
114
|
+
end
|
101
115
|
end
|
102
116
|
|
103
117
|
##
|
@@ -126,16 +140,18 @@ module Google
|
|
126
140
|
|
127
141
|
response = @client_stub.make_http_request(
|
128
142
|
verb,
|
129
|
-
uri:
|
130
|
-
body:
|
131
|
-
params:
|
143
|
+
uri: uri,
|
144
|
+
body: body || "",
|
145
|
+
params: query_string_params,
|
146
|
+
method_name: "create_and_configure_account",
|
132
147
|
options: options
|
133
148
|
)
|
134
149
|
operation = ::Gapic::Rest::TransportOperation.new response
|
135
150
|
result = ::Google::Shopping::Merchant::Accounts::V1beta::Account.decode_json response.body, ignore_unknown_fields: true
|
136
|
-
|
137
|
-
|
138
|
-
|
151
|
+
catch :response do
|
152
|
+
yield result, operation if block_given?
|
153
|
+
result
|
154
|
+
end
|
139
155
|
end
|
140
156
|
|
141
157
|
##
|
@@ -164,16 +180,18 @@ module Google
|
|
164
180
|
|
165
181
|
response = @client_stub.make_http_request(
|
166
182
|
verb,
|
167
|
-
uri:
|
168
|
-
body:
|
169
|
-
params:
|
183
|
+
uri: uri,
|
184
|
+
body: body || "",
|
185
|
+
params: query_string_params,
|
186
|
+
method_name: "delete_account",
|
170
187
|
options: options
|
171
188
|
)
|
172
189
|
operation = ::Gapic::Rest::TransportOperation.new response
|
173
190
|
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
174
|
-
|
175
|
-
|
176
|
-
|
191
|
+
catch :response do
|
192
|
+
yield result, operation if block_given?
|
193
|
+
result
|
194
|
+
end
|
177
195
|
end
|
178
196
|
|
179
197
|
##
|
@@ -202,16 +220,18 @@ module Google
|
|
202
220
|
|
203
221
|
response = @client_stub.make_http_request(
|
204
222
|
verb,
|
205
|
-
uri:
|
206
|
-
body:
|
207
|
-
params:
|
223
|
+
uri: uri,
|
224
|
+
body: body || "",
|
225
|
+
params: query_string_params,
|
226
|
+
method_name: "update_account",
|
208
227
|
options: options
|
209
228
|
)
|
210
229
|
operation = ::Gapic::Rest::TransportOperation.new response
|
211
230
|
result = ::Google::Shopping::Merchant::Accounts::V1beta::Account.decode_json response.body, ignore_unknown_fields: true
|
212
|
-
|
213
|
-
|
214
|
-
|
231
|
+
catch :response do
|
232
|
+
yield result, operation if block_given?
|
233
|
+
result
|
234
|
+
end
|
215
235
|
end
|
216
236
|
|
217
237
|
##
|
@@ -240,16 +260,18 @@ module Google
|
|
240
260
|
|
241
261
|
response = @client_stub.make_http_request(
|
242
262
|
verb,
|
243
|
-
uri:
|
244
|
-
body:
|
245
|
-
params:
|
263
|
+
uri: uri,
|
264
|
+
body: body || "",
|
265
|
+
params: query_string_params,
|
266
|
+
method_name: "list_accounts",
|
246
267
|
options: options
|
247
268
|
)
|
248
269
|
operation = ::Gapic::Rest::TransportOperation.new response
|
249
270
|
result = ::Google::Shopping::Merchant::Accounts::V1beta::ListAccountsResponse.decode_json response.body, ignore_unknown_fields: true
|
250
|
-
|
251
|
-
|
252
|
-
|
271
|
+
catch :response do
|
272
|
+
yield result, operation if block_given?
|
273
|
+
result
|
274
|
+
end
|
253
275
|
end
|
254
276
|
|
255
277
|
##
|
@@ -278,16 +300,18 @@ module Google
|
|
278
300
|
|
279
301
|
response = @client_stub.make_http_request(
|
280
302
|
verb,
|
281
|
-
uri:
|
282
|
-
body:
|
283
|
-
params:
|
303
|
+
uri: uri,
|
304
|
+
body: body || "",
|
305
|
+
params: query_string_params,
|
306
|
+
method_name: "list_sub_accounts",
|
284
307
|
options: options
|
285
308
|
)
|
286
309
|
operation = ::Gapic::Rest::TransportOperation.new response
|
287
310
|
result = ::Google::Shopping::Merchant::Accounts::V1beta::ListSubAccountsResponse.decode_json response.body, ignore_unknown_fields: true
|
288
|
-
|
289
|
-
|
290
|
-
|
311
|
+
catch :response do
|
312
|
+
yield result, operation if block_given?
|
313
|
+
result
|
314
|
+
end
|
291
315
|
end
|
292
316
|
|
293
317
|
##
|
@@ -164,8 +164,28 @@ module Google
|
|
164
164
|
universe_domain: @config.universe_domain,
|
165
165
|
channel_args: @config.channel_args,
|
166
166
|
interceptors: @config.interceptors,
|
167
|
-
channel_pool_config: @config.channel_pool
|
167
|
+
channel_pool_config: @config.channel_pool,
|
168
|
+
logger: @config.logger
|
168
169
|
)
|
170
|
+
|
171
|
+
@autofeed_settings_service_stub.stub_logger&.info do |entry|
|
172
|
+
entry.set_system_name
|
173
|
+
entry.set_service
|
174
|
+
entry.message = "Created client for #{entry.service}"
|
175
|
+
entry.set_credentials_fields credentials
|
176
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
177
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
178
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
##
|
183
|
+
# The logger used for request/response debug logging.
|
184
|
+
#
|
185
|
+
# @return [Logger]
|
186
|
+
#
|
187
|
+
def logger
|
188
|
+
@autofeed_settings_service_stub.logger
|
169
189
|
end
|
170
190
|
|
171
191
|
# Service calls
|
@@ -251,7 +271,6 @@ module Google
|
|
251
271
|
|
252
272
|
@autofeed_settings_service_stub.call_rpc :get_autofeed_settings, request, options: options do |response, operation|
|
253
273
|
yield response, operation if block_given?
|
254
|
-
return response
|
255
274
|
end
|
256
275
|
rescue ::GRPC::BadStatus => e
|
257
276
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -339,7 +358,6 @@ module Google
|
|
339
358
|
|
340
359
|
@autofeed_settings_service_stub.call_rpc :update_autofeed_settings, request, options: options do |response, operation|
|
341
360
|
yield response, operation if block_given?
|
342
|
-
return response
|
343
361
|
end
|
344
362
|
rescue ::GRPC::BadStatus => e
|
345
363
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -428,6 +446,11 @@ module Google
|
|
428
446
|
# default endpoint URL. The default value of nil uses the environment
|
429
447
|
# universe (usually the default "googleapis.com" universe).
|
430
448
|
# @return [::String,nil]
|
449
|
+
# @!attribute [rw] logger
|
450
|
+
# A custom logger to use for request/response debug logging, or the value
|
451
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
452
|
+
# explicitly disable logging.
|
453
|
+
# @return [::Logger,:default,nil]
|
431
454
|
#
|
432
455
|
class Configuration
|
433
456
|
extend ::Gapic::Config
|
@@ -452,6 +475,7 @@ module Google
|
|
452
475
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
453
476
|
config_attr :quota_project, nil, ::String, nil
|
454
477
|
config_attr :universe_domain, nil, ::String, nil
|
478
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
455
479
|
|
456
480
|
# @private
|
457
481
|
def initialize parent_config = nil
|
@@ -157,8 +157,28 @@ module Google
|
|
157
157
|
endpoint: @config.endpoint,
|
158
158
|
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
159
159
|
universe_domain: @config.universe_domain,
|
160
|
-
credentials: credentials
|
160
|
+
credentials: credentials,
|
161
|
+
logger: @config.logger
|
161
162
|
)
|
163
|
+
|
164
|
+
@autofeed_settings_service_stub.logger(stub: true)&.info do |entry|
|
165
|
+
entry.set_system_name
|
166
|
+
entry.set_service
|
167
|
+
entry.message = "Created client for #{entry.service}"
|
168
|
+
entry.set_credentials_fields credentials
|
169
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
170
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
171
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
##
|
176
|
+
# The logger used for request/response debug logging.
|
177
|
+
#
|
178
|
+
# @return [Logger]
|
179
|
+
#
|
180
|
+
def logger
|
181
|
+
@autofeed_settings_service_stub.logger
|
162
182
|
end
|
163
183
|
|
164
184
|
# Service calls
|
@@ -237,7 +257,6 @@ module Google
|
|
237
257
|
|
238
258
|
@autofeed_settings_service_stub.get_autofeed_settings request, options do |result, operation|
|
239
259
|
yield result, operation if block_given?
|
240
|
-
return result
|
241
260
|
end
|
242
261
|
rescue ::Gapic::Rest::Error => e
|
243
262
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -318,7 +337,6 @@ module Google
|
|
318
337
|
|
319
338
|
@autofeed_settings_service_stub.update_autofeed_settings request, options do |result, operation|
|
320
339
|
yield result, operation if block_given?
|
321
|
-
return result
|
322
340
|
end
|
323
341
|
rescue ::Gapic::Rest::Error => e
|
324
342
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -398,6 +416,11 @@ module Google
|
|
398
416
|
# default endpoint URL. The default value of nil uses the environment
|
399
417
|
# universe (usually the default "googleapis.com" universe).
|
400
418
|
# @return [::String,nil]
|
419
|
+
# @!attribute [rw] logger
|
420
|
+
# A custom logger to use for request/response debug logging, or the value
|
421
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
422
|
+
# explicitly disable logging.
|
423
|
+
# @return [::Logger,:default,nil]
|
401
424
|
#
|
402
425
|
class Configuration
|
403
426
|
extend ::Gapic::Config
|
@@ -419,6 +442,7 @@ module Google
|
|
419
442
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
420
443
|
config_attr :quota_project, nil, ::String, nil
|
421
444
|
config_attr :universe_domain, nil, ::String, nil
|
445
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
422
446
|
|
423
447
|
# @private
|
424
448
|
def initialize parent_config = nil
|
data/lib/google/shopping/merchant/accounts/v1beta/autofeed_settings_service/rest/service_stub.rb
CHANGED
@@ -31,7 +31,8 @@ module Google
|
|
31
31
|
# including transcoding, making the REST call, and deserialing the response.
|
32
32
|
#
|
33
33
|
class ServiceStub
|
34
|
-
|
34
|
+
# @private
|
35
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
|
35
36
|
# These require statements are intentionally placed here to initialize
|
36
37
|
# the REST modules only when it's required.
|
37
38
|
require "gapic/rest"
|
@@ -41,7 +42,9 @@ module Google
|
|
41
42
|
universe_domain: universe_domain,
|
42
43
|
credentials: credentials,
|
43
44
|
numeric_enums: true,
|
44
|
-
|
45
|
+
service_name: self.class,
|
46
|
+
raise_faraday_errors: false,
|
47
|
+
logger: logger
|
45
48
|
end
|
46
49
|
|
47
50
|
##
|
@@ -62,6 +65,15 @@ module Google
|
|
62
65
|
@client_stub.endpoint
|
63
66
|
end
|
64
67
|
|
68
|
+
##
|
69
|
+
# The logger used for request/response debug logging.
|
70
|
+
#
|
71
|
+
# @return [Logger]
|
72
|
+
#
|
73
|
+
def logger stub: false
|
74
|
+
stub ? @client_stub.stub_logger : @client_stub.logger
|
75
|
+
end
|
76
|
+
|
65
77
|
##
|
66
78
|
# Baseline implementation for the get_autofeed_settings REST call
|
67
79
|
#
|
@@ -88,16 +100,18 @@ module Google
|
|
88
100
|
|
89
101
|
response = @client_stub.make_http_request(
|
90
102
|
verb,
|
91
|
-
uri:
|
92
|
-
body:
|
93
|
-
params:
|
103
|
+
uri: uri,
|
104
|
+
body: body || "",
|
105
|
+
params: query_string_params,
|
106
|
+
method_name: "get_autofeed_settings",
|
94
107
|
options: options
|
95
108
|
)
|
96
109
|
operation = ::Gapic::Rest::TransportOperation.new response
|
97
110
|
result = ::Google::Shopping::Merchant::Accounts::V1beta::AutofeedSettings.decode_json response.body, ignore_unknown_fields: true
|
98
|
-
|
99
|
-
|
100
|
-
|
111
|
+
catch :response do
|
112
|
+
yield result, operation if block_given?
|
113
|
+
result
|
114
|
+
end
|
101
115
|
end
|
102
116
|
|
103
117
|
##
|
@@ -126,16 +140,18 @@ module Google
|
|
126
140
|
|
127
141
|
response = @client_stub.make_http_request(
|
128
142
|
verb,
|
129
|
-
uri:
|
130
|
-
body:
|
131
|
-
params:
|
143
|
+
uri: uri,
|
144
|
+
body: body || "",
|
145
|
+
params: query_string_params,
|
146
|
+
method_name: "update_autofeed_settings",
|
132
147
|
options: options
|
133
148
|
)
|
134
149
|
operation = ::Gapic::Rest::TransportOperation.new response
|
135
150
|
result = ::Google::Shopping::Merchant::Accounts::V1beta::AutofeedSettings.decode_json response.body, ignore_unknown_fields: true
|
136
|
-
|
137
|
-
|
138
|
-
|
151
|
+
catch :response do
|
152
|
+
yield result, operation if block_given?
|
153
|
+
result
|
154
|
+
end
|
139
155
|
end
|
140
156
|
|
141
157
|
##
|
@@ -164,8 +164,28 @@ module Google
|
|
164
164
|
universe_domain: @config.universe_domain,
|
165
165
|
channel_args: @config.channel_args,
|
166
166
|
interceptors: @config.interceptors,
|
167
|
-
channel_pool_config: @config.channel_pool
|
167
|
+
channel_pool_config: @config.channel_pool,
|
168
|
+
logger: @config.logger
|
168
169
|
)
|
170
|
+
|
171
|
+
@business_identity_service_stub.stub_logger&.info do |entry|
|
172
|
+
entry.set_system_name
|
173
|
+
entry.set_service
|
174
|
+
entry.message = "Created client for #{entry.service}"
|
175
|
+
entry.set_credentials_fields credentials
|
176
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
177
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
178
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
##
|
183
|
+
# The logger used for request/response debug logging.
|
184
|
+
#
|
185
|
+
# @return [Logger]
|
186
|
+
#
|
187
|
+
def logger
|
188
|
+
@business_identity_service_stub.logger
|
169
189
|
end
|
170
190
|
|
171
191
|
# Service calls
|
@@ -251,7 +271,6 @@ module Google
|
|
251
271
|
|
252
272
|
@business_identity_service_stub.call_rpc :get_business_identity, request, options: options do |response, operation|
|
253
273
|
yield response, operation if block_given?
|
254
|
-
return response
|
255
274
|
end
|
256
275
|
rescue ::GRPC::BadStatus => e
|
257
276
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -340,7 +359,6 @@ module Google
|
|
340
359
|
|
341
360
|
@business_identity_service_stub.call_rpc :update_business_identity, request, options: options do |response, operation|
|
342
361
|
yield response, operation if block_given?
|
343
|
-
return response
|
344
362
|
end
|
345
363
|
rescue ::GRPC::BadStatus => e
|
346
364
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -429,6 +447,11 @@ module Google
|
|
429
447
|
# default endpoint URL. The default value of nil uses the environment
|
430
448
|
# universe (usually the default "googleapis.com" universe).
|
431
449
|
# @return [::String,nil]
|
450
|
+
# @!attribute [rw] logger
|
451
|
+
# A custom logger to use for request/response debug logging, or the value
|
452
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
453
|
+
# explicitly disable logging.
|
454
|
+
# @return [::Logger,:default,nil]
|
432
455
|
#
|
433
456
|
class Configuration
|
434
457
|
extend ::Gapic::Config
|
@@ -453,6 +476,7 @@ module Google
|
|
453
476
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
454
477
|
config_attr :quota_project, nil, ::String, nil
|
455
478
|
config_attr :universe_domain, nil, ::String, nil
|
479
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
456
480
|
|
457
481
|
# @private
|
458
482
|
def initialize parent_config = nil
|
@@ -157,8 +157,28 @@ module Google
|
|
157
157
|
endpoint: @config.endpoint,
|
158
158
|
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
159
159
|
universe_domain: @config.universe_domain,
|
160
|
-
credentials: credentials
|
160
|
+
credentials: credentials,
|
161
|
+
logger: @config.logger
|
161
162
|
)
|
163
|
+
|
164
|
+
@business_identity_service_stub.logger(stub: true)&.info do |entry|
|
165
|
+
entry.set_system_name
|
166
|
+
entry.set_service
|
167
|
+
entry.message = "Created client for #{entry.service}"
|
168
|
+
entry.set_credentials_fields credentials
|
169
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
170
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
171
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
##
|
176
|
+
# The logger used for request/response debug logging.
|
177
|
+
#
|
178
|
+
# @return [Logger]
|
179
|
+
#
|
180
|
+
def logger
|
181
|
+
@business_identity_service_stub.logger
|
162
182
|
end
|
163
183
|
|
164
184
|
# Service calls
|
@@ -237,7 +257,6 @@ module Google
|
|
237
257
|
|
238
258
|
@business_identity_service_stub.get_business_identity request, options do |result, operation|
|
239
259
|
yield result, operation if block_given?
|
240
|
-
return result
|
241
260
|
end
|
242
261
|
rescue ::Gapic::Rest::Error => e
|
243
262
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -319,7 +338,6 @@ module Google
|
|
319
338
|
|
320
339
|
@business_identity_service_stub.update_business_identity request, options do |result, operation|
|
321
340
|
yield result, operation if block_given?
|
322
|
-
return result
|
323
341
|
end
|
324
342
|
rescue ::Gapic::Rest::Error => e
|
325
343
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -399,6 +417,11 @@ module Google
|
|
399
417
|
# default endpoint URL. The default value of nil uses the environment
|
400
418
|
# universe (usually the default "googleapis.com" universe).
|
401
419
|
# @return [::String,nil]
|
420
|
+
# @!attribute [rw] logger
|
421
|
+
# A custom logger to use for request/response debug logging, or the value
|
422
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
423
|
+
# explicitly disable logging.
|
424
|
+
# @return [::Logger,:default,nil]
|
402
425
|
#
|
403
426
|
class Configuration
|
404
427
|
extend ::Gapic::Config
|
@@ -420,6 +443,7 @@ module Google
|
|
420
443
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
421
444
|
config_attr :quota_project, nil, ::String, nil
|
422
445
|
config_attr :universe_domain, nil, ::String, nil
|
446
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
423
447
|
|
424
448
|
# @private
|
425
449
|
def initialize parent_config = nil
|