google-cloud-retail-v2 1.0.1 → 1.2.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/retail/v2/analytics_service/client.rb +29 -2
- data/lib/google/cloud/retail/v2/analytics_service/operations.rb +12 -15
- data/lib/google/cloud/retail/v2/analytics_service/rest/client.rb +29 -2
- data/lib/google/cloud/retail/v2/analytics_service/rest/operations.rb +43 -38
- data/lib/google/cloud/retail/v2/analytics_service/rest/service_stub.rb +22 -8
- data/lib/google/cloud/retail/v2/catalog_service/client.rb +29 -12
- data/lib/google/cloud/retail/v2/catalog_service/rest/client.rb +29 -12
- data/lib/google/cloud/retail/v2/catalog_service/rest/service_stub.rb +102 -68
- data/lib/google/cloud/retail/v2/completion_service/client.rb +31 -5
- data/lib/google/cloud/retail/v2/completion_service/operations.rb +12 -15
- data/lib/google/cloud/retail/v2/completion_service/rest/client.rb +31 -5
- data/lib/google/cloud/retail/v2/completion_service/rest/operations.rb +43 -38
- data/lib/google/cloud/retail/v2/completion_service/rest/service_stub.rb +30 -14
- data/lib/google/cloud/retail/v2/completion_service_pb.rb +2 -1
- data/lib/google/cloud/retail/v2/control_service/client.rb +29 -6
- data/lib/google/cloud/retail/v2/control_service/rest/client.rb +29 -6
- data/lib/google/cloud/retail/v2/control_service/rest/service_stub.rb +54 -32
- data/lib/google/cloud/retail/v2/generative_question_pb.rb +45 -0
- data/lib/google/cloud/retail/v2/generative_question_service/client.rb +853 -0
- data/lib/google/cloud/retail/v2/generative_question_service/credentials.rb +51 -0
- data/lib/google/cloud/retail/v2/generative_question_service/paths.rb +52 -0
- data/lib/google/cloud/retail/v2/generative_question_service/rest/client.rb +792 -0
- data/lib/google/cloud/retail/v2/generative_question_service/rest/service_stub.rb +389 -0
- data/lib/google/cloud/retail/v2/generative_question_service/rest.rb +52 -0
- data/lib/google/cloud/retail/v2/generative_question_service.rb +55 -0
- data/lib/google/cloud/retail/v2/generative_question_service_pb.rb +57 -0
- data/lib/google/cloud/retail/v2/generative_question_service_services_pb.rb +55 -0
- data/lib/google/cloud/retail/v2/model_service/client.rb +31 -9
- data/lib/google/cloud/retail/v2/model_service/operations.rb +12 -15
- data/lib/google/cloud/retail/v2/model_service/rest/client.rb +31 -9
- data/lib/google/cloud/retail/v2/model_service/rest/operations.rb +43 -38
- data/lib/google/cloud/retail/v2/model_service/rest/service_stub.rb +78 -50
- data/lib/google/cloud/retail/v2/prediction_service/client.rb +28 -2
- data/lib/google/cloud/retail/v2/prediction_service/rest/client.rb +28 -2
- data/lib/google/cloud/retail/v2/prediction_service/rest/service_stub.rb +22 -8
- data/lib/google/cloud/retail/v2/product_service/client.rb +36 -13
- data/lib/google/cloud/retail/v2/product_service/operations.rb +12 -15
- data/lib/google/cloud/retail/v2/product_service/rest/client.rb +36 -13
- data/lib/google/cloud/retail/v2/product_service/rest/operations.rb +43 -38
- data/lib/google/cloud/retail/v2/product_service/rest/service_stub.rb +110 -74
- data/lib/google/cloud/retail/v2/rest.rb +1 -0
- data/lib/google/cloud/retail/v2/search_service/client.rb +35 -3
- data/lib/google/cloud/retail/v2/search_service/rest/client.rb +34 -3
- data/lib/google/cloud/retail/v2/search_service/rest/service_stub.rb +22 -8
- data/lib/google/cloud/retail/v2/search_service_pb.rb +13 -2
- data/lib/google/cloud/retail/v2/serving_config_service/client.rb +29 -8
- data/lib/google/cloud/retail/v2/serving_config_service/rest/client.rb +29 -8
- data/lib/google/cloud/retail/v2/serving_config_service/rest/service_stub.rb +70 -44
- data/lib/google/cloud/retail/v2/user_event_service/client.rb +31 -6
- data/lib/google/cloud/retail/v2/user_event_service/operations.rb +12 -15
- data/lib/google/cloud/retail/v2/user_event_service/rest/client.rb +31 -6
- data/lib/google/cloud/retail/v2/user_event_service/rest/operations.rb +43 -38
- data/lib/google/cloud/retail/v2/user_event_service/rest/service_stub.rb +54 -32
- data/lib/google/cloud/retail/v2/version.rb +1 -1
- data/lib/google/cloud/retail/v2.rb +1 -0
- data/proto_docs/google/api/client.rb +39 -0
- data/proto_docs/google/cloud/retail/v2/common.rb +1 -1
- data/proto_docs/google/cloud/retail/v2/completion_service.rb +30 -2
- data/proto_docs/google/cloud/retail/v2/generative_question.rb +75 -0
- data/proto_docs/google/cloud/retail/v2/generative_question_service.rb +109 -0
- data/proto_docs/google/cloud/retail/v2/product.rb +9 -2
- data/proto_docs/google/cloud/retail/v2/search_service.rb +204 -0
- data/proto_docs/google/longrunning/operations.rb +19 -14
- metadata +17 -5
@@ -163,14 +163,26 @@ module Google
|
|
163
163
|
universe_domain: @config.universe_domain,
|
164
164
|
channel_args: @config.channel_args,
|
165
165
|
interceptors: @config.interceptors,
|
166
|
-
channel_pool_config: @config.channel_pool
|
166
|
+
channel_pool_config: @config.channel_pool,
|
167
|
+
logger: @config.logger
|
167
168
|
)
|
168
169
|
|
170
|
+
@catalog_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
|
+
|
169
180
|
@location_client = Google::Cloud::Location::Locations::Client.new do |config|
|
170
181
|
config.credentials = credentials
|
171
182
|
config.quota_project = @quota_project_id
|
172
183
|
config.endpoint = @catalog_service_stub.endpoint
|
173
184
|
config.universe_domain = @catalog_service_stub.universe_domain
|
185
|
+
config.logger = @catalog_service_stub.logger if config.respond_to? :logger=
|
174
186
|
end
|
175
187
|
end
|
176
188
|
|
@@ -181,6 +193,15 @@ module Google
|
|
181
193
|
#
|
182
194
|
attr_reader :location_client
|
183
195
|
|
196
|
+
##
|
197
|
+
# The logger used for request/response debug logging.
|
198
|
+
#
|
199
|
+
# @return [Logger]
|
200
|
+
#
|
201
|
+
def logger
|
202
|
+
@catalog_service_stub.logger
|
203
|
+
end
|
204
|
+
|
184
205
|
# Service calls
|
185
206
|
|
186
207
|
##
|
@@ -291,7 +312,7 @@ module Google
|
|
291
312
|
@catalog_service_stub.call_rpc :list_catalogs, request, options: options do |response, operation|
|
292
313
|
response = ::Gapic::PagedEnumerable.new @catalog_service_stub, :list_catalogs, request, response, operation, options
|
293
314
|
yield response, operation if block_given?
|
294
|
-
|
315
|
+
throw :response, response
|
295
316
|
end
|
296
317
|
rescue ::GRPC::BadStatus => e
|
297
318
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -390,7 +411,6 @@ module Google
|
|
390
411
|
|
391
412
|
@catalog_service_stub.call_rpc :update_catalog, request, options: options do |response, operation|
|
392
413
|
yield response, operation if block_given?
|
393
|
-
return response
|
394
414
|
end
|
395
415
|
rescue ::GRPC::BadStatus => e
|
396
416
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -529,7 +549,6 @@ module Google
|
|
529
549
|
|
530
550
|
@catalog_service_stub.call_rpc :set_default_branch, request, options: options do |response, operation|
|
531
551
|
yield response, operation if block_given?
|
532
|
-
return response
|
533
552
|
end
|
534
553
|
rescue ::GRPC::BadStatus => e
|
535
554
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -618,7 +637,6 @@ module Google
|
|
618
637
|
|
619
638
|
@catalog_service_stub.call_rpc :get_default_branch, request, options: options do |response, operation|
|
620
639
|
yield response, operation if block_given?
|
621
|
-
return response
|
622
640
|
end
|
623
641
|
rescue ::GRPC::BadStatus => e
|
624
642
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -705,7 +723,6 @@ module Google
|
|
705
723
|
|
706
724
|
@catalog_service_stub.call_rpc :get_completion_config, request, options: options do |response, operation|
|
707
725
|
yield response, operation if block_given?
|
708
|
-
return response
|
709
726
|
end
|
710
727
|
rescue ::GRPC::BadStatus => e
|
711
728
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -810,7 +827,6 @@ module Google
|
|
810
827
|
|
811
828
|
@catalog_service_stub.call_rpc :update_completion_config, request, options: options do |response, operation|
|
812
829
|
yield response, operation if block_given?
|
813
|
-
return response
|
814
830
|
end
|
815
831
|
rescue ::GRPC::BadStatus => e
|
816
832
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -897,7 +913,6 @@ module Google
|
|
897
913
|
|
898
914
|
@catalog_service_stub.call_rpc :get_attributes_config, request, options: options do |response, operation|
|
899
915
|
yield response, operation if block_given?
|
900
|
-
return response
|
901
916
|
end
|
902
917
|
rescue ::GRPC::BadStatus => e
|
903
918
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -999,7 +1014,6 @@ module Google
|
|
999
1014
|
|
1000
1015
|
@catalog_service_stub.call_rpc :update_attributes_config, request, options: options do |response, operation|
|
1001
1016
|
yield response, operation if block_given?
|
1002
|
-
return response
|
1003
1017
|
end
|
1004
1018
|
rescue ::GRPC::BadStatus => e
|
1005
1019
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1094,7 +1108,6 @@ module Google
|
|
1094
1108
|
|
1095
1109
|
@catalog_service_stub.call_rpc :add_catalog_attribute, request, options: options do |response, operation|
|
1096
1110
|
yield response, operation if block_given?
|
1097
|
-
return response
|
1098
1111
|
end
|
1099
1112
|
rescue ::GRPC::BadStatus => e
|
1100
1113
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1189,7 +1202,6 @@ module Google
|
|
1189
1202
|
|
1190
1203
|
@catalog_service_stub.call_rpc :remove_catalog_attribute, request, options: options do |response, operation|
|
1191
1204
|
yield response, operation if block_given?
|
1192
|
-
return response
|
1193
1205
|
end
|
1194
1206
|
rescue ::GRPC::BadStatus => e
|
1195
1207
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1294,7 +1306,6 @@ module Google
|
|
1294
1306
|
|
1295
1307
|
@catalog_service_stub.call_rpc :replace_catalog_attribute, request, options: options do |response, operation|
|
1296
1308
|
yield response, operation if block_given?
|
1297
|
-
return response
|
1298
1309
|
end
|
1299
1310
|
rescue ::GRPC::BadStatus => e
|
1300
1311
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1383,6 +1394,11 @@ module Google
|
|
1383
1394
|
# default endpoint URL. The default value of nil uses the environment
|
1384
1395
|
# universe (usually the default "googleapis.com" universe).
|
1385
1396
|
# @return [::String,nil]
|
1397
|
+
# @!attribute [rw] logger
|
1398
|
+
# A custom logger to use for request/response debug logging, or the value
|
1399
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
1400
|
+
# explicitly disable logging.
|
1401
|
+
# @return [::Logger,:default,nil]
|
1386
1402
|
#
|
1387
1403
|
class Configuration
|
1388
1404
|
extend ::Gapic::Config
|
@@ -1407,6 +1423,7 @@ module Google
|
|
1407
1423
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1408
1424
|
config_attr :quota_project, nil, ::String, nil
|
1409
1425
|
config_attr :universe_domain, nil, ::String, nil
|
1426
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
1410
1427
|
|
1411
1428
|
# @private
|
1412
1429
|
def initialize parent_config = nil
|
@@ -156,14 +156,26 @@ 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
|
)
|
161
162
|
|
163
|
+
@catalog_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
|
+
|
162
173
|
@location_client = Google::Cloud::Location::Locations::Rest::Client.new do |config|
|
163
174
|
config.credentials = credentials
|
164
175
|
config.quota_project = @quota_project_id
|
165
176
|
config.endpoint = @catalog_service_stub.endpoint
|
166
177
|
config.universe_domain = @catalog_service_stub.universe_domain
|
178
|
+
config.logger = @catalog_service_stub.logger if config.respond_to? :logger=
|
167
179
|
end
|
168
180
|
end
|
169
181
|
|
@@ -174,6 +186,15 @@ module Google
|
|
174
186
|
#
|
175
187
|
attr_reader :location_client
|
176
188
|
|
189
|
+
##
|
190
|
+
# The logger used for request/response debug logging.
|
191
|
+
#
|
192
|
+
# @return [Logger]
|
193
|
+
#
|
194
|
+
def logger
|
195
|
+
@catalog_service_stub.logger
|
196
|
+
end
|
197
|
+
|
177
198
|
# Service calls
|
178
199
|
|
179
200
|
##
|
@@ -277,7 +298,7 @@ module Google
|
|
277
298
|
@catalog_service_stub.list_catalogs request, options do |result, operation|
|
278
299
|
result = ::Gapic::Rest::PagedEnumerable.new @catalog_service_stub, :list_catalogs, "catalogs", request, result, options
|
279
300
|
yield result, operation if block_given?
|
280
|
-
|
301
|
+
throw :response, result
|
281
302
|
end
|
282
303
|
rescue ::Gapic::Rest::Error => e
|
283
304
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -369,7 +390,6 @@ module Google
|
|
369
390
|
|
370
391
|
@catalog_service_stub.update_catalog request, options do |result, operation|
|
371
392
|
yield result, operation if block_given?
|
372
|
-
return result
|
373
393
|
end
|
374
394
|
rescue ::Gapic::Rest::Error => e
|
375
395
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -501,7 +521,6 @@ module Google
|
|
501
521
|
|
502
522
|
@catalog_service_stub.set_default_branch request, options do |result, operation|
|
503
523
|
yield result, operation if block_given?
|
504
|
-
return result
|
505
524
|
end
|
506
525
|
rescue ::Gapic::Rest::Error => e
|
507
526
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -583,7 +602,6 @@ module Google
|
|
583
602
|
|
584
603
|
@catalog_service_stub.get_default_branch request, options do |result, operation|
|
585
604
|
yield result, operation if block_given?
|
586
|
-
return result
|
587
605
|
end
|
588
606
|
rescue ::Gapic::Rest::Error => e
|
589
607
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -663,7 +681,6 @@ module Google
|
|
663
681
|
|
664
682
|
@catalog_service_stub.get_completion_config request, options do |result, operation|
|
665
683
|
yield result, operation if block_given?
|
666
|
-
return result
|
667
684
|
end
|
668
685
|
rescue ::Gapic::Rest::Error => e
|
669
686
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -761,7 +778,6 @@ module Google
|
|
761
778
|
|
762
779
|
@catalog_service_stub.update_completion_config request, options do |result, operation|
|
763
780
|
yield result, operation if block_given?
|
764
|
-
return result
|
765
781
|
end
|
766
782
|
rescue ::Gapic::Rest::Error => e
|
767
783
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -841,7 +857,6 @@ module Google
|
|
841
857
|
|
842
858
|
@catalog_service_stub.get_attributes_config request, options do |result, operation|
|
843
859
|
yield result, operation if block_given?
|
844
|
-
return result
|
845
860
|
end
|
846
861
|
rescue ::Gapic::Rest::Error => e
|
847
862
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -936,7 +951,6 @@ module Google
|
|
936
951
|
|
937
952
|
@catalog_service_stub.update_attributes_config request, options do |result, operation|
|
938
953
|
yield result, operation if block_given?
|
939
|
-
return result
|
940
954
|
end
|
941
955
|
rescue ::Gapic::Rest::Error => e
|
942
956
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1024,7 +1038,6 @@ module Google
|
|
1024
1038
|
|
1025
1039
|
@catalog_service_stub.add_catalog_attribute request, options do |result, operation|
|
1026
1040
|
yield result, operation if block_given?
|
1027
|
-
return result
|
1028
1041
|
end
|
1029
1042
|
rescue ::Gapic::Rest::Error => e
|
1030
1043
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1112,7 +1125,6 @@ module Google
|
|
1112
1125
|
|
1113
1126
|
@catalog_service_stub.remove_catalog_attribute request, options do |result, operation|
|
1114
1127
|
yield result, operation if block_given?
|
1115
|
-
return result
|
1116
1128
|
end
|
1117
1129
|
rescue ::Gapic::Rest::Error => e
|
1118
1130
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1210,7 +1222,6 @@ module Google
|
|
1210
1222
|
|
1211
1223
|
@catalog_service_stub.replace_catalog_attribute request, options do |result, operation|
|
1212
1224
|
yield result, operation if block_given?
|
1213
|
-
return result
|
1214
1225
|
end
|
1215
1226
|
rescue ::Gapic::Rest::Error => e
|
1216
1227
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1290,6 +1301,11 @@ module Google
|
|
1290
1301
|
# default endpoint URL. The default value of nil uses the environment
|
1291
1302
|
# universe (usually the default "googleapis.com" universe).
|
1292
1303
|
# @return [::String,nil]
|
1304
|
+
# @!attribute [rw] logger
|
1305
|
+
# A custom logger to use for request/response debug logging, or the value
|
1306
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
1307
|
+
# explicitly disable logging.
|
1308
|
+
# @return [::Logger,:default,nil]
|
1293
1309
|
#
|
1294
1310
|
class Configuration
|
1295
1311
|
extend ::Gapic::Config
|
@@ -1311,6 +1327,7 @@ module Google
|
|
1311
1327
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1312
1328
|
config_attr :quota_project, nil, ::String, nil
|
1313
1329
|
config_attr :universe_domain, nil, ::String, nil
|
1330
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
1314
1331
|
|
1315
1332
|
# @private
|
1316
1333
|
def initialize parent_config = nil
|
@@ -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 list_catalogs 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: "list_catalogs",
|
93
106
|
options: options
|
94
107
|
)
|
95
108
|
operation = ::Gapic::Rest::TransportOperation.new response
|
96
109
|
result = ::Google::Cloud::Retail::V2::ListCatalogsResponse.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: "update_catalog",
|
131
146
|
options: options
|
132
147
|
)
|
133
148
|
operation = ::Gapic::Rest::TransportOperation.new response
|
134
149
|
result = ::Google::Cloud::Retail::V2::Catalog.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: "set_default_branch",
|
169
186
|
options: options
|
170
187
|
)
|
171
188
|
operation = ::Gapic::Rest::TransportOperation.new response
|
172
189
|
result = ::Google::Protobuf::Empty.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
|
##
|
@@ -201,16 +219,18 @@ module Google
|
|
201
219
|
|
202
220
|
response = @client_stub.make_http_request(
|
203
221
|
verb,
|
204
|
-
uri:
|
205
|
-
body:
|
206
|
-
params:
|
222
|
+
uri: uri,
|
223
|
+
body: body || "",
|
224
|
+
params: query_string_params,
|
225
|
+
method_name: "get_default_branch",
|
207
226
|
options: options
|
208
227
|
)
|
209
228
|
operation = ::Gapic::Rest::TransportOperation.new response
|
210
229
|
result = ::Google::Cloud::Retail::V2::GetDefaultBranchResponse.decode_json response.body, ignore_unknown_fields: true
|
211
|
-
|
212
|
-
|
213
|
-
|
230
|
+
catch :response do
|
231
|
+
yield result, operation if block_given?
|
232
|
+
result
|
233
|
+
end
|
214
234
|
end
|
215
235
|
|
216
236
|
##
|
@@ -239,16 +259,18 @@ module Google
|
|
239
259
|
|
240
260
|
response = @client_stub.make_http_request(
|
241
261
|
verb,
|
242
|
-
uri:
|
243
|
-
body:
|
244
|
-
params:
|
262
|
+
uri: uri,
|
263
|
+
body: body || "",
|
264
|
+
params: query_string_params,
|
265
|
+
method_name: "get_completion_config",
|
245
266
|
options: options
|
246
267
|
)
|
247
268
|
operation = ::Gapic::Rest::TransportOperation.new response
|
248
269
|
result = ::Google::Cloud::Retail::V2::CompletionConfig.decode_json response.body, ignore_unknown_fields: true
|
249
|
-
|
250
|
-
|
251
|
-
|
270
|
+
catch :response do
|
271
|
+
yield result, operation if block_given?
|
272
|
+
result
|
273
|
+
end
|
252
274
|
end
|
253
275
|
|
254
276
|
##
|
@@ -277,16 +299,18 @@ module Google
|
|
277
299
|
|
278
300
|
response = @client_stub.make_http_request(
|
279
301
|
verb,
|
280
|
-
uri:
|
281
|
-
body:
|
282
|
-
params:
|
302
|
+
uri: uri,
|
303
|
+
body: body || "",
|
304
|
+
params: query_string_params,
|
305
|
+
method_name: "update_completion_config",
|
283
306
|
options: options
|
284
307
|
)
|
285
308
|
operation = ::Gapic::Rest::TransportOperation.new response
|
286
309
|
result = ::Google::Cloud::Retail::V2::CompletionConfig.decode_json response.body, ignore_unknown_fields: true
|
287
|
-
|
288
|
-
|
289
|
-
|
310
|
+
catch :response do
|
311
|
+
yield result, operation if block_given?
|
312
|
+
result
|
313
|
+
end
|
290
314
|
end
|
291
315
|
|
292
316
|
##
|
@@ -315,16 +339,18 @@ module Google
|
|
315
339
|
|
316
340
|
response = @client_stub.make_http_request(
|
317
341
|
verb,
|
318
|
-
uri:
|
319
|
-
body:
|
320
|
-
params:
|
342
|
+
uri: uri,
|
343
|
+
body: body || "",
|
344
|
+
params: query_string_params,
|
345
|
+
method_name: "get_attributes_config",
|
321
346
|
options: options
|
322
347
|
)
|
323
348
|
operation = ::Gapic::Rest::TransportOperation.new response
|
324
349
|
result = ::Google::Cloud::Retail::V2::AttributesConfig.decode_json response.body, ignore_unknown_fields: true
|
325
|
-
|
326
|
-
|
327
|
-
|
350
|
+
catch :response do
|
351
|
+
yield result, operation if block_given?
|
352
|
+
result
|
353
|
+
end
|
328
354
|
end
|
329
355
|
|
330
356
|
##
|
@@ -353,16 +379,18 @@ module Google
|
|
353
379
|
|
354
380
|
response = @client_stub.make_http_request(
|
355
381
|
verb,
|
356
|
-
uri:
|
357
|
-
body:
|
358
|
-
params:
|
382
|
+
uri: uri,
|
383
|
+
body: body || "",
|
384
|
+
params: query_string_params,
|
385
|
+
method_name: "update_attributes_config",
|
359
386
|
options: options
|
360
387
|
)
|
361
388
|
operation = ::Gapic::Rest::TransportOperation.new response
|
362
389
|
result = ::Google::Cloud::Retail::V2::AttributesConfig.decode_json response.body, ignore_unknown_fields: true
|
363
|
-
|
364
|
-
|
365
|
-
|
390
|
+
catch :response do
|
391
|
+
yield result, operation if block_given?
|
392
|
+
result
|
393
|
+
end
|
366
394
|
end
|
367
395
|
|
368
396
|
##
|
@@ -391,16 +419,18 @@ module Google
|
|
391
419
|
|
392
420
|
response = @client_stub.make_http_request(
|
393
421
|
verb,
|
394
|
-
uri:
|
395
|
-
body:
|
396
|
-
params:
|
422
|
+
uri: uri,
|
423
|
+
body: body || "",
|
424
|
+
params: query_string_params,
|
425
|
+
method_name: "add_catalog_attribute",
|
397
426
|
options: options
|
398
427
|
)
|
399
428
|
operation = ::Gapic::Rest::TransportOperation.new response
|
400
429
|
result = ::Google::Cloud::Retail::V2::AttributesConfig.decode_json response.body, ignore_unknown_fields: true
|
401
|
-
|
402
|
-
|
403
|
-
|
430
|
+
catch :response do
|
431
|
+
yield result, operation if block_given?
|
432
|
+
result
|
433
|
+
end
|
404
434
|
end
|
405
435
|
|
406
436
|
##
|
@@ -429,16 +459,18 @@ module Google
|
|
429
459
|
|
430
460
|
response = @client_stub.make_http_request(
|
431
461
|
verb,
|
432
|
-
uri:
|
433
|
-
body:
|
434
|
-
params:
|
462
|
+
uri: uri,
|
463
|
+
body: body || "",
|
464
|
+
params: query_string_params,
|
465
|
+
method_name: "remove_catalog_attribute",
|
435
466
|
options: options
|
436
467
|
)
|
437
468
|
operation = ::Gapic::Rest::TransportOperation.new response
|
438
469
|
result = ::Google::Cloud::Retail::V2::AttributesConfig.decode_json response.body, ignore_unknown_fields: true
|
439
|
-
|
440
|
-
|
441
|
-
|
470
|
+
catch :response do
|
471
|
+
yield result, operation if block_given?
|
472
|
+
result
|
473
|
+
end
|
442
474
|
end
|
443
475
|
|
444
476
|
##
|
@@ -467,16 +499,18 @@ module Google
|
|
467
499
|
|
468
500
|
response = @client_stub.make_http_request(
|
469
501
|
verb,
|
470
|
-
uri:
|
471
|
-
body:
|
472
|
-
params:
|
502
|
+
uri: uri,
|
503
|
+
body: body || "",
|
504
|
+
params: query_string_params,
|
505
|
+
method_name: "replace_catalog_attribute",
|
473
506
|
options: options
|
474
507
|
)
|
475
508
|
operation = ::Gapic::Rest::TransportOperation.new response
|
476
509
|
result = ::Google::Cloud::Retail::V2::AttributesConfig.decode_json response.body, ignore_unknown_fields: true
|
477
|
-
|
478
|
-
|
479
|
-
|
510
|
+
catch :response do
|
511
|
+
yield result, operation if block_given?
|
512
|
+
result
|
513
|
+
end
|
480
514
|
end
|
481
515
|
|
482
516
|
##
|