google-shopping-merchant-notifications-v1beta 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +30 -21
- data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/client.rb +41 -11
- data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/rest/client.rb +41 -11
- data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/rest/service_stub.rb +54 -32
- data/lib/google/shopping/merchant/notifications/v1beta/version.rb +1 -1
- data/proto_docs/google/api/client.rb +70 -10
- data/proto_docs/google/api/resource.rb +7 -2
- data/proto_docs/google/shopping/type/types.rb +29 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b5d3b4a938eca91788e42bce5879feebd917936c54ce9931602cd46fb2c9f2f
|
4
|
+
data.tar.gz: 706fef0196cf4ced733a9bd276701b3f94a0e9553ec1040baf19685ef54e2e00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1518a1146edae6d8278954829c27a1e3ebd1391c8a19ed14e27a985690ab5d5c2e866d2586419ef3608003b5baf1943b15fcd618787e281b3fdc803b4832094e
|
7
|
+
data.tar.gz: 3171881173e028aa6b47f9cba4e80868161a577c742f331db326024d837cd8a1de002c7ebbfd9e7d0cb065ea5c44cf25a157e1d5331fa031a6d970b00a895fac
|
data/README.md
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
Programmatically manage your Merchant Center accounts.
|
4
4
|
|
5
|
-
Programmatically manage your Merchant Center accounts.
|
6
5
|
|
7
6
|
https://github.com/googleapis/google-cloud-ruby
|
8
7
|
|
@@ -43,33 +42,43 @@ for class and method documentation.
|
|
43
42
|
See also the [Product Documentation](https://developers.google.com/merchant/api)
|
44
43
|
for general usage information.
|
45
44
|
|
46
|
-
##
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
45
|
+
## Debug Logging
|
46
|
+
|
47
|
+
This library comes with opt-in Debug Logging that can help you troubleshoot
|
48
|
+
your application's integration with the API. When logging is activated, key
|
49
|
+
events such as requests and responses, along with data payloads and metadata
|
50
|
+
such as headers and client configuration, are logged to the standard error
|
51
|
+
stream.
|
52
|
+
|
53
|
+
**WARNING:** Client Library Debug Logging includes your data payloads in
|
54
|
+
plaintext, which could include sensitive data such as PII for yourself or your
|
55
|
+
customers, private keys, or other security data that could be compromising if
|
56
|
+
leaked. Always practice good data hygiene with your application logs, and follow
|
57
|
+
the principle of least access. Google also recommends that Client Library Debug
|
58
|
+
Logging be enabled only temporarily during active debugging, and not used
|
59
|
+
permanently in production.
|
60
|
+
|
61
|
+
To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
|
62
|
+
to the value `all`. Alternatively, you can set the value to a comma-delimited
|
63
|
+
list of client library gem names. This will select the default logging behavior,
|
64
|
+
which writes logs to the standard error stream. On a local workstation, this may
|
65
|
+
result in logs appearing on the console. When running on a Google Cloud hosting
|
66
|
+
service such as [Google Cloud Run](https://cloud.google.com/run), this generally
|
67
|
+
results in logs appearing alongside your application logs in the
|
68
|
+
[Google Cloud Logging](https://cloud.google.com/logging/) service.
|
69
|
+
|
70
|
+
You can customize logging by modifying the `logger` configuration when
|
71
|
+
constructing a client object. For example:
|
55
72
|
|
56
73
|
```ruby
|
74
|
+
require "google/shopping/merchant/notifications/v1beta"
|
57
75
|
require "logger"
|
58
76
|
|
59
|
-
|
60
|
-
|
61
|
-
def logger
|
62
|
-
LOGGER
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
# Define a gRPC module-level logger method before grpc/logconfig.rb loads.
|
67
|
-
module GRPC
|
68
|
-
extend MyLogger
|
77
|
+
client = ::Google::Shopping::Merchant::Notifications::V1beta::NotificationsApiService::Client.new do |config|
|
78
|
+
config.logger = Logger.new "my-app.log"
|
69
79
|
end
|
70
80
|
```
|
71
81
|
|
72
|
-
|
73
82
|
## Google Cloud Samples
|
74
83
|
|
75
84
|
To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
|
@@ -31,6 +31,9 @@ module Google
|
|
31
31
|
# Service to manage notification subscriptions for merchants
|
32
32
|
#
|
33
33
|
class Client
|
34
|
+
# @private
|
35
|
+
API_VERSION = ""
|
36
|
+
|
34
37
|
# @private
|
35
38
|
DEFAULT_ENDPOINT_TEMPLATE = "merchantapi.$UNIVERSE_DOMAIN$"
|
36
39
|
|
@@ -160,8 +163,28 @@ module Google
|
|
160
163
|
universe_domain: @config.universe_domain,
|
161
164
|
channel_args: @config.channel_args,
|
162
165
|
interceptors: @config.interceptors,
|
163
|
-
channel_pool_config: @config.channel_pool
|
166
|
+
channel_pool_config: @config.channel_pool,
|
167
|
+
logger: @config.logger
|
164
168
|
)
|
169
|
+
|
170
|
+
@notifications_api_service_stub.stub_logger&.info do |entry|
|
171
|
+
entry.set_system_name
|
172
|
+
entry.set_service
|
173
|
+
entry.message = "Created client for #{entry.service}"
|
174
|
+
entry.set_credentials_fields credentials
|
175
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
176
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
177
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
##
|
182
|
+
# The logger used for request/response debug logging.
|
183
|
+
#
|
184
|
+
# @return [Logger]
|
185
|
+
#
|
186
|
+
def logger
|
187
|
+
@notifications_api_service_stub.logger
|
165
188
|
end
|
166
189
|
|
167
190
|
# Service calls
|
@@ -221,10 +244,11 @@ module Google
|
|
221
244
|
# Customize the options with defaults
|
222
245
|
metadata = @config.rpcs.get_notification_subscription.metadata.to_h
|
223
246
|
|
224
|
-
# Set x-goog-api-client
|
247
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
225
248
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
226
249
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
227
250
|
gapic_version: ::Google::Shopping::Merchant::Notifications::V1beta::VERSION
|
251
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
228
252
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
229
253
|
|
230
254
|
header_params = {}
|
@@ -245,7 +269,6 @@ module Google
|
|
245
269
|
|
246
270
|
@notifications_api_service_stub.call_rpc :get_notification_subscription, request, options: options do |response, operation|
|
247
271
|
yield response, operation if block_given?
|
248
|
-
return response
|
249
272
|
end
|
250
273
|
rescue ::GRPC::BadStatus => e
|
251
274
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -320,10 +343,11 @@ module Google
|
|
320
343
|
# Customize the options with defaults
|
321
344
|
metadata = @config.rpcs.create_notification_subscription.metadata.to_h
|
322
345
|
|
323
|
-
# Set x-goog-api-client
|
346
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
324
347
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
325
348
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
326
349
|
gapic_version: ::Google::Shopping::Merchant::Notifications::V1beta::VERSION
|
350
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
327
351
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
328
352
|
|
329
353
|
header_params = {}
|
@@ -344,7 +368,6 @@ module Google
|
|
344
368
|
|
345
369
|
@notifications_api_service_stub.call_rpc :create_notification_subscription, request, options: options do |response, operation|
|
346
370
|
yield response, operation if block_given?
|
347
|
-
return response
|
348
371
|
end
|
349
372
|
rescue ::GRPC::BadStatus => e
|
350
373
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -408,10 +431,11 @@ module Google
|
|
408
431
|
# Customize the options with defaults
|
409
432
|
metadata = @config.rpcs.update_notification_subscription.metadata.to_h
|
410
433
|
|
411
|
-
# Set x-goog-api-client
|
434
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
412
435
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
413
436
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
414
437
|
gapic_version: ::Google::Shopping::Merchant::Notifications::V1beta::VERSION
|
438
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
415
439
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
416
440
|
|
417
441
|
header_params = {}
|
@@ -432,7 +456,6 @@ module Google
|
|
432
456
|
|
433
457
|
@notifications_api_service_stub.call_rpc :update_notification_subscription, request, options: options do |response, operation|
|
434
458
|
yield response, operation if block_given?
|
435
|
-
return response
|
436
459
|
end
|
437
460
|
rescue ::GRPC::BadStatus => e
|
438
461
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -493,10 +516,11 @@ module Google
|
|
493
516
|
# Customize the options with defaults
|
494
517
|
metadata = @config.rpcs.delete_notification_subscription.metadata.to_h
|
495
518
|
|
496
|
-
# Set x-goog-api-client
|
519
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
497
520
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
498
521
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
499
522
|
gapic_version: ::Google::Shopping::Merchant::Notifications::V1beta::VERSION
|
523
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
500
524
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
501
525
|
|
502
526
|
header_params = {}
|
@@ -517,7 +541,6 @@ module Google
|
|
517
541
|
|
518
542
|
@notifications_api_service_stub.call_rpc :delete_notification_subscription, request, options: options do |response, operation|
|
519
543
|
yield response, operation if block_given?
|
520
|
-
return response
|
521
544
|
end
|
522
545
|
rescue ::GRPC::BadStatus => e
|
523
546
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -590,10 +613,11 @@ module Google
|
|
590
613
|
# Customize the options with defaults
|
591
614
|
metadata = @config.rpcs.list_notification_subscriptions.metadata.to_h
|
592
615
|
|
593
|
-
# Set x-goog-api-client
|
616
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
594
617
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
595
618
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
596
619
|
gapic_version: ::Google::Shopping::Merchant::Notifications::V1beta::VERSION
|
620
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
597
621
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
598
622
|
|
599
623
|
header_params = {}
|
@@ -615,7 +639,7 @@ module Google
|
|
615
639
|
@notifications_api_service_stub.call_rpc :list_notification_subscriptions, request, options: options do |response, operation|
|
616
640
|
response = ::Gapic::PagedEnumerable.new @notifications_api_service_stub, :list_notification_subscriptions, request, response, operation, options
|
617
641
|
yield response, operation if block_given?
|
618
|
-
|
642
|
+
throw :response, response
|
619
643
|
end
|
620
644
|
rescue ::GRPC::BadStatus => e
|
621
645
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -704,6 +728,11 @@ module Google
|
|
704
728
|
# default endpoint URL. The default value of nil uses the environment
|
705
729
|
# universe (usually the default "googleapis.com" universe).
|
706
730
|
# @return [::String,nil]
|
731
|
+
# @!attribute [rw] logger
|
732
|
+
# A custom logger to use for request/response debug logging, or the value
|
733
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
734
|
+
# explicitly disable logging.
|
735
|
+
# @return [::Logger,:default,nil]
|
707
736
|
#
|
708
737
|
class Configuration
|
709
738
|
extend ::Gapic::Config
|
@@ -728,6 +757,7 @@ module Google
|
|
728
757
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
729
758
|
config_attr :quota_project, nil, ::String, nil
|
730
759
|
config_attr :universe_domain, nil, ::String, nil
|
760
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
731
761
|
|
732
762
|
# @private
|
733
763
|
def initialize parent_config = nil
|
data/lib/google/shopping/merchant/notifications/v1beta/notifications_api_service/rest/client.rb
CHANGED
@@ -33,6 +33,9 @@ module Google
|
|
33
33
|
# Service to manage notification subscriptions for merchants
|
34
34
|
#
|
35
35
|
class Client
|
36
|
+
# @private
|
37
|
+
API_VERSION = ""
|
38
|
+
|
36
39
|
# @private
|
37
40
|
DEFAULT_ENDPOINT_TEMPLATE = "merchantapi.$UNIVERSE_DOMAIN$"
|
38
41
|
|
@@ -153,8 +156,28 @@ module Google
|
|
153
156
|
endpoint: @config.endpoint,
|
154
157
|
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
155
158
|
universe_domain: @config.universe_domain,
|
156
|
-
credentials: credentials
|
159
|
+
credentials: credentials,
|
160
|
+
logger: @config.logger
|
157
161
|
)
|
162
|
+
|
163
|
+
@notifications_api_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
|
+
@notifications_api_service_stub.logger
|
158
181
|
end
|
159
182
|
|
160
183
|
# Service calls
|
@@ -213,12 +236,13 @@ module Google
|
|
213
236
|
# Customize the options with defaults
|
214
237
|
call_metadata = @config.rpcs.get_notification_subscription.metadata.to_h
|
215
238
|
|
216
|
-
# Set x-goog-api-client
|
239
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
217
240
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
218
241
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
219
242
|
gapic_version: ::Google::Shopping::Merchant::Notifications::V1beta::VERSION,
|
220
243
|
transports_version_send: [:rest]
|
221
244
|
|
245
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
222
246
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
223
247
|
|
224
248
|
options.apply_defaults timeout: @config.rpcs.get_notification_subscription.timeout,
|
@@ -231,7 +255,6 @@ module Google
|
|
231
255
|
|
232
256
|
@notifications_api_service_stub.get_notification_subscription request, options do |result, operation|
|
233
257
|
yield result, operation if block_given?
|
234
|
-
return result
|
235
258
|
end
|
236
259
|
rescue ::Gapic::Rest::Error => e
|
237
260
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -305,12 +328,13 @@ module Google
|
|
305
328
|
# Customize the options with defaults
|
306
329
|
call_metadata = @config.rpcs.create_notification_subscription.metadata.to_h
|
307
330
|
|
308
|
-
# Set x-goog-api-client
|
331
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
309
332
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
310
333
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
311
334
|
gapic_version: ::Google::Shopping::Merchant::Notifications::V1beta::VERSION,
|
312
335
|
transports_version_send: [:rest]
|
313
336
|
|
337
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
314
338
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
315
339
|
|
316
340
|
options.apply_defaults timeout: @config.rpcs.create_notification_subscription.timeout,
|
@@ -323,7 +347,6 @@ module Google
|
|
323
347
|
|
324
348
|
@notifications_api_service_stub.create_notification_subscription request, options do |result, operation|
|
325
349
|
yield result, operation if block_given?
|
326
|
-
return result
|
327
350
|
end
|
328
351
|
rescue ::Gapic::Rest::Error => e
|
329
352
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -386,12 +409,13 @@ module Google
|
|
386
409
|
# Customize the options with defaults
|
387
410
|
call_metadata = @config.rpcs.update_notification_subscription.metadata.to_h
|
388
411
|
|
389
|
-
# Set x-goog-api-client
|
412
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
390
413
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
391
414
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
392
415
|
gapic_version: ::Google::Shopping::Merchant::Notifications::V1beta::VERSION,
|
393
416
|
transports_version_send: [:rest]
|
394
417
|
|
418
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
395
419
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
396
420
|
|
397
421
|
options.apply_defaults timeout: @config.rpcs.update_notification_subscription.timeout,
|
@@ -404,7 +428,6 @@ module Google
|
|
404
428
|
|
405
429
|
@notifications_api_service_stub.update_notification_subscription request, options do |result, operation|
|
406
430
|
yield result, operation if block_given?
|
407
|
-
return result
|
408
431
|
end
|
409
432
|
rescue ::Gapic::Rest::Error => e
|
410
433
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -464,12 +487,13 @@ module Google
|
|
464
487
|
# Customize the options with defaults
|
465
488
|
call_metadata = @config.rpcs.delete_notification_subscription.metadata.to_h
|
466
489
|
|
467
|
-
# Set x-goog-api-client
|
490
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
468
491
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
469
492
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
470
493
|
gapic_version: ::Google::Shopping::Merchant::Notifications::V1beta::VERSION,
|
471
494
|
transports_version_send: [:rest]
|
472
495
|
|
496
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
473
497
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
474
498
|
|
475
499
|
options.apply_defaults timeout: @config.rpcs.delete_notification_subscription.timeout,
|
@@ -482,7 +506,6 @@ module Google
|
|
482
506
|
|
483
507
|
@notifications_api_service_stub.delete_notification_subscription request, options do |result, operation|
|
484
508
|
yield result, operation if block_given?
|
485
|
-
return result
|
486
509
|
end
|
487
510
|
rescue ::Gapic::Rest::Error => e
|
488
511
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -554,12 +577,13 @@ module Google
|
|
554
577
|
# Customize the options with defaults
|
555
578
|
call_metadata = @config.rpcs.list_notification_subscriptions.metadata.to_h
|
556
579
|
|
557
|
-
# Set x-goog-api-client
|
580
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
558
581
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
559
582
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
560
583
|
gapic_version: ::Google::Shopping::Merchant::Notifications::V1beta::VERSION,
|
561
584
|
transports_version_send: [:rest]
|
562
585
|
|
586
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
563
587
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
564
588
|
|
565
589
|
options.apply_defaults timeout: @config.rpcs.list_notification_subscriptions.timeout,
|
@@ -573,7 +597,7 @@ module Google
|
|
573
597
|
@notifications_api_service_stub.list_notification_subscriptions request, options do |result, operation|
|
574
598
|
result = ::Gapic::Rest::PagedEnumerable.new @notifications_api_service_stub, :list_notification_subscriptions, "notification_subscriptions", request, result, options
|
575
599
|
yield result, operation if block_given?
|
576
|
-
|
600
|
+
throw :response, result
|
577
601
|
end
|
578
602
|
rescue ::Gapic::Rest::Error => e
|
579
603
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -653,6 +677,11 @@ module Google
|
|
653
677
|
# default endpoint URL. The default value of nil uses the environment
|
654
678
|
# universe (usually the default "googleapis.com" universe).
|
655
679
|
# @return [::String,nil]
|
680
|
+
# @!attribute [rw] logger
|
681
|
+
# A custom logger to use for request/response debug logging, or the value
|
682
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
683
|
+
# explicitly disable logging.
|
684
|
+
# @return [::Logger,:default,nil]
|
656
685
|
#
|
657
686
|
class Configuration
|
658
687
|
extend ::Gapic::Config
|
@@ -674,6 +703,7 @@ module Google
|
|
674
703
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
675
704
|
config_attr :quota_project, nil, ::String, nil
|
676
705
|
config_attr :universe_domain, nil, ::String, nil
|
706
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
677
707
|
|
678
708
|
# @private
|
679
709
|
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_notification_subscription 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_notification_subscription",
|
94
107
|
options: options
|
95
108
|
)
|
96
109
|
operation = ::Gapic::Rest::TransportOperation.new response
|
97
110
|
result = ::Google::Shopping::Merchant::Notifications::V1beta::NotificationSubscription.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_notification_subscription",
|
132
147
|
options: options
|
133
148
|
)
|
134
149
|
operation = ::Gapic::Rest::TransportOperation.new response
|
135
150
|
result = ::Google::Shopping::Merchant::Notifications::V1beta::NotificationSubscription.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: "update_notification_subscription",
|
170
187
|
options: options
|
171
188
|
)
|
172
189
|
operation = ::Gapic::Rest::TransportOperation.new response
|
173
190
|
result = ::Google::Shopping::Merchant::Notifications::V1beta::NotificationSubscription.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: "delete_notification_subscription",
|
208
227
|
options: options
|
209
228
|
)
|
210
229
|
operation = ::Gapic::Rest::TransportOperation.new response
|
211
230
|
result = ::Google::Protobuf::Empty.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_notification_subscriptions",
|
246
267
|
options: options
|
247
268
|
)
|
248
269
|
operation = ::Gapic::Rest::TransportOperation.new response
|
249
270
|
result = ::Google::Shopping::Merchant::Notifications::V1beta::ListNotificationSubscriptionsResponse.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
|
##
|
@@ -28,6 +28,9 @@ module Google
|
|
28
28
|
# @!attribute [rw] destinations
|
29
29
|
# @return [::Array<::Google::Api::ClientLibraryDestination>]
|
30
30
|
# The destination where API teams want this client library to be published.
|
31
|
+
# @!attribute [rw] selective_gapic_generation
|
32
|
+
# @return [::Google::Api::SelectiveGapicGeneration]
|
33
|
+
# Configuration for which RPCs should be generated in the GAPIC client.
|
31
34
|
class CommonLanguageSettings
|
32
35
|
include ::Google::Protobuf::MessageExts
|
33
36
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -196,9 +199,32 @@ module Google
|
|
196
199
|
# @!attribute [rw] common
|
197
200
|
# @return [::Google::Api::CommonLanguageSettings]
|
198
201
|
# Some settings.
|
202
|
+
# @!attribute [rw] experimental_features
|
203
|
+
# @return [::Google::Api::PythonSettings::ExperimentalFeatures]
|
204
|
+
# Experimental features to be included during client library generation.
|
199
205
|
class PythonSettings
|
200
206
|
include ::Google::Protobuf::MessageExts
|
201
207
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
208
|
+
|
209
|
+
# Experimental features to be included during client library generation.
|
210
|
+
# These fields will be deprecated once the feature graduates and is enabled
|
211
|
+
# by default.
|
212
|
+
# @!attribute [rw] rest_async_io_enabled
|
213
|
+
# @return [::Boolean]
|
214
|
+
# Enables generation of asynchronous REST clients if `rest` transport is
|
215
|
+
# enabled. By default, asynchronous REST clients will not be generated.
|
216
|
+
# This feature will be enabled by default 1 month after launching the
|
217
|
+
# feature in preview packages.
|
218
|
+
# @!attribute [rw] protobuf_pythonic_types_enabled
|
219
|
+
# @return [::Boolean]
|
220
|
+
# Enables generation of protobuf code using new types that are more
|
221
|
+
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
|
+
# enabled by default 1 month after launching the feature in preview
|
223
|
+
# packages.
|
224
|
+
class ExperimentalFeatures
|
225
|
+
include ::Google::Protobuf::MessageExts
|
226
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
227
|
+
end
|
202
228
|
end
|
203
229
|
|
204
230
|
# Settings for Node client libraries.
|
@@ -280,9 +306,28 @@ module Google
|
|
280
306
|
# @!attribute [rw] common
|
281
307
|
# @return [::Google::Api::CommonLanguageSettings]
|
282
308
|
# Some settings.
|
309
|
+
# @!attribute [rw] renamed_services
|
310
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
311
|
+
# Map of service names to renamed services. Keys are the package relative
|
312
|
+
# service names and values are the name to be used for the service client
|
313
|
+
# and call options.
|
314
|
+
#
|
315
|
+
# publishing:
|
316
|
+
# go_settings:
|
317
|
+
# renamed_services:
|
318
|
+
# Publisher: TopicAdmin
|
283
319
|
class GoSettings
|
284
320
|
include ::Google::Protobuf::MessageExts
|
285
321
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
322
|
+
|
323
|
+
# @!attribute [rw] key
|
324
|
+
# @return [::String]
|
325
|
+
# @!attribute [rw] value
|
326
|
+
# @return [::String]
|
327
|
+
class RenamedServicesEntry
|
328
|
+
include ::Google::Protobuf::MessageExts
|
329
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
330
|
+
end
|
286
331
|
end
|
287
332
|
|
288
333
|
# Describes the generator configuration for a method.
|
@@ -290,6 +335,13 @@ module Google
|
|
290
335
|
# @return [::String]
|
291
336
|
# The fully qualified name of the method, for which the options below apply.
|
292
337
|
# This is used to find the method to apply the options.
|
338
|
+
#
|
339
|
+
# Example:
|
340
|
+
#
|
341
|
+
# publishing:
|
342
|
+
# method_settings:
|
343
|
+
# - selector: google.storage.control.v2.StorageControl.CreateFolder
|
344
|
+
# # method settings for CreateFolder...
|
293
345
|
# @!attribute [rw] long_running
|
294
346
|
# @return [::Google::Api::MethodSettings::LongRunning]
|
295
347
|
# Describes settings to use for long-running operations when generating
|
@@ -298,17 +350,14 @@ module Google
|
|
298
350
|
#
|
299
351
|
# Example of a YAML configuration::
|
300
352
|
#
|
301
|
-
#
|
302
|
-
#
|
353
|
+
# publishing:
|
354
|
+
# method_settings:
|
303
355
|
# - selector: google.cloud.speech.v2.Speech.BatchRecognize
|
304
356
|
# long_running:
|
305
|
-
# initial_poll_delay:
|
306
|
-
# seconds: 60 # 1 minute
|
357
|
+
# initial_poll_delay: 60s # 1 minute
|
307
358
|
# poll_delay_multiplier: 1.5
|
308
|
-
# max_poll_delay:
|
309
|
-
#
|
310
|
-
# total_poll_timeout:
|
311
|
-
# seconds: 54000 # 90 minutes
|
359
|
+
# max_poll_delay: 360s # 6 minutes
|
360
|
+
# total_poll_timeout: 54000s # 90 minutes
|
312
361
|
# @!attribute [rw] auto_populated_fields
|
313
362
|
# @return [::Array<::String>]
|
314
363
|
# List of top-level fields of the request message, that should be
|
@@ -317,8 +366,8 @@ module Google
|
|
317
366
|
#
|
318
367
|
# Example of a YAML configuration:
|
319
368
|
#
|
320
|
-
#
|
321
|
-
#
|
369
|
+
# publishing:
|
370
|
+
# method_settings:
|
322
371
|
# - selector: google.example.v1.ExampleService.CreateExample
|
323
372
|
# auto_populated_fields:
|
324
373
|
# - request_id
|
@@ -354,6 +403,17 @@ module Google
|
|
354
403
|
end
|
355
404
|
end
|
356
405
|
|
406
|
+
# This message is used to configure the generation of a subset of the RPCs in
|
407
|
+
# a service for client libraries.
|
408
|
+
# @!attribute [rw] methods
|
409
|
+
# @return [::Array<::String>]
|
410
|
+
# An allowlist of the fully qualified names of RPCs that should be included
|
411
|
+
# on public client surfaces.
|
412
|
+
class SelectiveGapicGeneration
|
413
|
+
include ::Google::Protobuf::MessageExts
|
414
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
415
|
+
end
|
416
|
+
|
357
417
|
# The organization for which the client libraries are being published.
|
358
418
|
# Affects the url where generated docs are published, etc.
|
359
419
|
module ClientLibraryOrganization
|
@@ -124,8 +124,13 @@ module Google
|
|
124
124
|
# @return [::String]
|
125
125
|
# The plural name used in the resource name and permission names, such as
|
126
126
|
# 'projects' for the resource name of 'projects/\\{project}' and the permission
|
127
|
-
# name of 'cloudresourcemanager.googleapis.com/projects.get'.
|
128
|
-
#
|
127
|
+
# name of 'cloudresourcemanager.googleapis.com/projects.get'. One exception
|
128
|
+
# to this is for Nested Collections that have stuttering names, as defined
|
129
|
+
# in [AIP-122](https://google.aip.dev/122#nested-collections), where the
|
130
|
+
# collection ID in the resource name pattern does not necessarily directly
|
131
|
+
# match the `plural` value.
|
132
|
+
#
|
133
|
+
# It is the same concept of the `plural` field in k8s CRD spec
|
129
134
|
# https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
|
130
135
|
#
|
131
136
|
# Note: The plural form is required even for singleton resources. See
|
@@ -20,14 +20,41 @@
|
|
20
20
|
module Google
|
21
21
|
module Shopping
|
22
22
|
module Type
|
23
|
+
# The weight represented as the value in string and the unit.
|
24
|
+
# @!attribute [rw] amount_micros
|
25
|
+
# @return [::Integer]
|
26
|
+
# Required. The weight represented as a number in micros (1 million micros is
|
27
|
+
# an equivalent to one's currency standard unit, for example, 1 kg = 1000000
|
28
|
+
# micros).
|
29
|
+
# This field can also be set as infinity by setting to -1.
|
30
|
+
# This field only support -1 and positive value.
|
31
|
+
# @!attribute [rw] unit
|
32
|
+
# @return [::Google::Shopping::Type::Weight::WeightUnit]
|
33
|
+
# Required. The weight unit.
|
34
|
+
# Acceptable values are: kg and lb
|
35
|
+
class Weight
|
36
|
+
include ::Google::Protobuf::MessageExts
|
37
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
38
|
+
|
39
|
+
# The weight unit.
|
40
|
+
module WeightUnit
|
41
|
+
# unit unspecified
|
42
|
+
WEIGHT_UNIT_UNSPECIFIED = 0
|
43
|
+
|
44
|
+
# lb unit.
|
45
|
+
POUND = 1
|
46
|
+
|
47
|
+
# kg unit.
|
48
|
+
KILOGRAM = 2
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
23
52
|
# The price represented as a number and currency.
|
24
53
|
# @!attribute [rw] amount_micros
|
25
54
|
# @return [::Integer]
|
26
55
|
# The price represented as a number in micros (1 million micros is an
|
27
56
|
# equivalent to one's currency standard unit, for example, 1 USD = 1000000
|
28
57
|
# micros).
|
29
|
-
# This field can also be set as infinity by setting to -1.
|
30
|
-
# This field only support -1 and positive value.
|
31
58
|
# @!attribute [rw] currency_code
|
32
59
|
# @return [::String]
|
33
60
|
# The currency of the price using three-letter acronyms according to [ISO
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-shopping-merchant-notifications-v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.24.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.24.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
119
|
- !ruby/object:Gem::Version
|
120
120
|
version: '0'
|
121
121
|
requirements: []
|
122
|
-
rubygems_version: 3.5.
|
122
|
+
rubygems_version: 3.5.23
|
123
123
|
signing_key:
|
124
124
|
specification_version: 4
|
125
125
|
summary: Programmatically manage your Merchant Center accounts.
|