google-cloud-recommendation_engine-v1beta1 0.3.1 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHENTICATION.md +8 -8
  3. data/README.md +1 -1
  4. data/lib/google/cloud/recommendation_engine/v1beta1/catalog_service/client.rb +54 -67
  5. data/lib/google/cloud/recommendation_engine/v1beta1/catalog_service/operations.rb +34 -25
  6. data/lib/google/cloud/recommendation_engine/v1beta1/prediction_api_key_registry/client.rb +42 -52
  7. data/lib/google/cloud/recommendation_engine/v1beta1/prediction_service/client.rb +34 -42
  8. data/lib/google/cloud/recommendation_engine/v1beta1/user_event_service/client.rb +50 -62
  9. data/lib/google/cloud/recommendation_engine/v1beta1/user_event_service/operations.rb +34 -25
  10. data/lib/google/cloud/recommendation_engine/v1beta1/version.rb +1 -1
  11. data/lib/google/cloud/recommendationengine/v1beta1/catalog_pb.rb +2 -2
  12. data/lib/google/cloud/recommendationengine/v1beta1/catalog_service_pb.rb +2 -2
  13. data/lib/google/cloud/recommendationengine/v1beta1/catalog_service_services_pb.rb +1 -1
  14. data/lib/google/cloud/recommendationengine/v1beta1/common_pb.rb +1 -1
  15. data/lib/google/cloud/recommendationengine/v1beta1/import_pb.rb +2 -2
  16. data/lib/google/cloud/recommendationengine/v1beta1/prediction_apikey_registry_service_pb.rb +2 -2
  17. data/lib/google/cloud/recommendationengine/v1beta1/prediction_apikey_registry_service_services_pb.rb +1 -1
  18. data/lib/google/cloud/recommendationengine/v1beta1/prediction_service_pb.rb +2 -2
  19. data/lib/google/cloud/recommendationengine/v1beta1/prediction_service_services_pb.rb +1 -1
  20. data/lib/google/cloud/recommendationengine/v1beta1/recommendationengine_resources_pb.rb +1 -1
  21. data/lib/google/cloud/recommendationengine/v1beta1/user_event_pb.rb +2 -2
  22. data/lib/google/cloud/recommendationengine/v1beta1/user_event_service_pb.rb +2 -2
  23. data/lib/google/cloud/recommendationengine/v1beta1/user_event_service_services_pb.rb +1 -1
  24. data/proto_docs/google/api/field_behavior.rb +7 -1
  25. data/proto_docs/google/api/httpbody.rb +9 -4
  26. data/proto_docs/google/type/date.rb +14 -11
  27. metadata +13 -7
@@ -41,13 +41,12 @@ module Google
41
41
  # See {::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client::Configuration}
42
42
  # for a description of the configuration fields.
43
43
  #
44
- # ## Example
44
+ # @example
45
45
  #
46
- # To modify the configuration for all PredictionService clients:
47
- #
48
- # ::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client.configure do |config|
49
- # config.timeout = 10.0
50
- # end
46
+ # # Modify the configuration for all PredictionService clients
47
+ # ::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client.configure do |config|
48
+ # config.timeout = 10.0
49
+ # end
51
50
  #
52
51
  # @yield [config] Configure the Client client.
53
52
  # @yieldparam config [Client::Configuration]
@@ -67,10 +66,7 @@ module Google
67
66
 
68
67
  default_config.rpcs.predict.timeout = 600.0
69
68
  default_config.rpcs.predict.retry_policy = {
70
- initial_delay: 0.1,
71
- max_delay: 60.0,
72
- multiplier: 1.3,
73
- retry_codes: [14, 4]
69
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
74
70
  }
75
71
 
76
72
  default_config
@@ -102,19 +98,15 @@ module Google
102
98
  ##
103
99
  # Create a new PredictionService client object.
104
100
  #
105
- # ## Examples
106
- #
107
- # To create a new PredictionService client with the default
108
- # configuration:
101
+ # @example
109
102
  #
110
- # client = ::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client.new
103
+ # # Create a client using the default configuration
104
+ # client = ::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client.new
111
105
  #
112
- # To create a new PredictionService client with a custom
113
- # configuration:
114
- #
115
- # client = ::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client.new do |config|
116
- # config.timeout = 10.0
117
- # end
106
+ # # Create a client using a custom configuration
107
+ # client = ::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client.new do |config|
108
+ # config.timeout = 10.0
109
+ # end
118
110
  #
119
111
  # @yield [config] Configure the PredictionService client.
120
112
  # @yieldparam config [Client::Configuration]
@@ -134,14 +126,13 @@ module Google
134
126
 
135
127
  # Create credentials
136
128
  credentials = @config.credentials
137
- # Use self-signed JWT if the scope and endpoint are unchanged from default,
129
+ # Use self-signed JWT if the endpoint is unchanged from default,
138
130
  # but only if the default endpoint does not have a region prefix.
139
- enable_self_signed_jwt = @config.scope == Client.configure.scope &&
140
- @config.endpoint == Client.configure.endpoint &&
131
+ enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
141
132
  !@config.endpoint.split(".").first.include?("-")
142
133
  credentials ||= Credentials.default scope: @config.scope,
143
134
  enable_self_signed_jwt: enable_self_signed_jwt
144
- if credentials.is_a?(String) || credentials.is_a?(Hash)
135
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
145
136
  credentials = Credentials.new credentials, scope: @config.scope
146
137
  end
147
138
  @quota_project_id = @config.quota_project
@@ -303,7 +294,9 @@ module Google
303
294
  options.apply_defaults timeout: @config.rpcs.predict.timeout,
304
295
  metadata: metadata,
305
296
  retry_policy: @config.rpcs.predict.retry_policy
306
- options.apply_defaults metadata: @config.metadata,
297
+
298
+ options.apply_defaults timeout: @config.timeout,
299
+ metadata: @config.metadata,
307
300
  retry_policy: @config.retry_policy
308
301
 
309
302
  @prediction_service_stub.call_rpc :predict, request, options: options do |response, operation|
@@ -328,22 +321,21 @@ module Google
328
321
  # Configuration can be applied globally to all clients, or to a single client
329
322
  # on construction.
330
323
  #
331
- # # Examples
332
- #
333
- # To modify the global config, setting the timeout for predict
334
- # to 20 seconds, and all remaining timeouts to 10 seconds:
335
- #
336
- # ::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client.configure do |config|
337
- # config.timeout = 10.0
338
- # config.rpcs.predict.timeout = 20.0
339
- # end
340
- #
341
- # To apply the above configuration only to a new client:
342
- #
343
- # client = ::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client.new do |config|
344
- # config.timeout = 10.0
345
- # config.rpcs.predict.timeout = 20.0
346
- # end
324
+ # @example
325
+ #
326
+ # # Modify the global config, setting the timeout for
327
+ # # predict to 20 seconds,
328
+ # # and all remaining timeouts to 10 seconds.
329
+ # ::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client.configure do |config|
330
+ # config.timeout = 10.0
331
+ # config.rpcs.predict.timeout = 20.0
332
+ # end
333
+ #
334
+ # # Apply the above configuration only to a new client.
335
+ # client = ::Google::Cloud::RecommendationEngine::V1beta1::PredictionService::Client.new do |config|
336
+ # config.timeout = 10.0
337
+ # config.rpcs.predict.timeout = 20.0
338
+ # end
347
339
  #
348
340
  # @!attribute [rw] endpoint
349
341
  # The hostname or hostname:port of the service endpoint.
@@ -41,13 +41,12 @@ module Google
41
41
  # See {::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client::Configuration}
42
42
  # for a description of the configuration fields.
43
43
  #
44
- # ## Example
44
+ # @example
45
45
  #
46
- # To modify the configuration for all UserEventService clients:
47
- #
48
- # ::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client.configure do |config|
49
- # config.timeout = 10.0
50
- # end
46
+ # # Modify the configuration for all UserEventService clients
47
+ # ::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client.configure do |config|
48
+ # config.timeout = 10.0
49
+ # end
51
50
  #
52
51
  # @yield [config] Configure the Client client.
53
52
  # @yieldparam config [Client::Configuration]
@@ -67,42 +66,27 @@ module Google
67
66
 
68
67
  default_config.rpcs.write_user_event.timeout = 600.0
69
68
  default_config.rpcs.write_user_event.retry_policy = {
70
- initial_delay: 0.1,
71
- max_delay: 60.0,
72
- multiplier: 1.3,
73
- retry_codes: [14, 4]
69
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
74
70
  }
75
71
 
76
72
  default_config.rpcs.collect_user_event.timeout = 600.0
77
73
  default_config.rpcs.collect_user_event.retry_policy = {
78
- initial_delay: 0.1,
79
- max_delay: 60.0,
80
- multiplier: 1.3,
81
- retry_codes: [14, 4]
74
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
82
75
  }
83
76
 
84
77
  default_config.rpcs.list_user_events.timeout = 600.0
85
78
  default_config.rpcs.list_user_events.retry_policy = {
86
- initial_delay: 0.1,
87
- max_delay: 60.0,
88
- multiplier: 1.3,
89
- retry_codes: [14, 4]
79
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
90
80
  }
91
81
 
92
82
  default_config.rpcs.purge_user_events.timeout = 600.0
93
83
  default_config.rpcs.purge_user_events.retry_policy = {
94
- initial_delay: 0.1,
95
- max_delay: 60.0,
96
- multiplier: 1.3,
97
- retry_codes: [14, 4]
84
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
98
85
  }
99
86
 
100
87
  default_config.rpcs.import_user_events.timeout = 600.0
101
88
  default_config.rpcs.import_user_events.retry_policy = {
102
- initial_delay: 0.1,
103
- max_delay: 60.0,
104
- multiplier: 1.3,
105
- retry_codes: [14, 4]
89
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
106
90
  }
107
91
 
108
92
  default_config
@@ -134,19 +118,15 @@ module Google
134
118
  ##
135
119
  # Create a new UserEventService client object.
136
120
  #
137
- # ## Examples
138
- #
139
- # To create a new UserEventService client with the default
140
- # configuration:
141
- #
142
- # client = ::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client.new
121
+ # @example
143
122
  #
144
- # To create a new UserEventService client with a custom
145
- # configuration:
123
+ # # Create a client using the default configuration
124
+ # client = ::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client.new
146
125
  #
147
- # client = ::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client.new do |config|
148
- # config.timeout = 10.0
149
- # end
126
+ # # Create a client using a custom configuration
127
+ # client = ::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client.new do |config|
128
+ # config.timeout = 10.0
129
+ # end
150
130
  #
151
131
  # @yield [config] Configure the UserEventService client.
152
132
  # @yieldparam config [Client::Configuration]
@@ -166,14 +146,13 @@ module Google
166
146
 
167
147
  # Create credentials
168
148
  credentials = @config.credentials
169
- # Use self-signed JWT if the scope and endpoint are unchanged from default,
149
+ # Use self-signed JWT if the endpoint is unchanged from default,
170
150
  # but only if the default endpoint does not have a region prefix.
171
- enable_self_signed_jwt = @config.scope == Client.configure.scope &&
172
- @config.endpoint == Client.configure.endpoint &&
151
+ enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
173
152
  !@config.endpoint.split(".").first.include?("-")
174
153
  credentials ||= Credentials.default scope: @config.scope,
175
154
  enable_self_signed_jwt: enable_self_signed_jwt
176
- if credentials.is_a?(String) || credentials.is_a?(Hash)
155
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
177
156
  credentials = Credentials.new credentials, scope: @config.scope
178
157
  end
179
158
  @quota_project_id = @config.quota_project
@@ -260,7 +239,9 @@ module Google
260
239
  options.apply_defaults timeout: @config.rpcs.write_user_event.timeout,
261
240
  metadata: metadata,
262
241
  retry_policy: @config.rpcs.write_user_event.retry_policy
263
- options.apply_defaults metadata: @config.metadata,
242
+
243
+ options.apply_defaults timeout: @config.timeout,
244
+ metadata: @config.metadata,
264
245
  retry_policy: @config.retry_policy
265
246
 
266
247
  @user_event_service_stub.call_rpc :write_user_event, request, options: options do |response, operation|
@@ -342,7 +323,9 @@ module Google
342
323
  options.apply_defaults timeout: @config.rpcs.collect_user_event.timeout,
343
324
  metadata: metadata,
344
325
  retry_policy: @config.rpcs.collect_user_event.retry_policy
345
- options.apply_defaults metadata: @config.metadata,
326
+
327
+ options.apply_defaults timeout: @config.timeout,
328
+ metadata: @config.metadata,
346
329
  retry_policy: @config.retry_policy
347
330
 
348
331
  @user_event_service_stub.call_rpc :collect_user_event, request, options: options do |response, operation|
@@ -447,7 +430,9 @@ module Google
447
430
  options.apply_defaults timeout: @config.rpcs.list_user_events.timeout,
448
431
  metadata: metadata,
449
432
  retry_policy: @config.rpcs.list_user_events.retry_policy
450
- options.apply_defaults metadata: @config.metadata,
433
+
434
+ options.apply_defaults timeout: @config.timeout,
435
+ metadata: @config.metadata,
451
436
  retry_policy: @config.retry_policy
452
437
 
453
438
  @user_event_service_stub.call_rpc :list_user_events, request, options: options do |response, operation|
@@ -542,7 +527,9 @@ module Google
542
527
  options.apply_defaults timeout: @config.rpcs.purge_user_events.timeout,
543
528
  metadata: metadata,
544
529
  retry_policy: @config.rpcs.purge_user_events.retry_policy
545
- options.apply_defaults metadata: @config.metadata,
530
+
531
+ options.apply_defaults timeout: @config.timeout,
532
+ metadata: @config.metadata,
546
533
  retry_policy: @config.retry_policy
547
534
 
548
535
  @user_event_service_stub.call_rpc :purge_user_events, request, options: options do |response, operation|
@@ -627,7 +614,9 @@ module Google
627
614
  options.apply_defaults timeout: @config.rpcs.import_user_events.timeout,
628
615
  metadata: metadata,
629
616
  retry_policy: @config.rpcs.import_user_events.retry_policy
630
- options.apply_defaults metadata: @config.metadata,
617
+
618
+ options.apply_defaults timeout: @config.timeout,
619
+ metadata: @config.metadata,
631
620
  retry_policy: @config.retry_policy
632
621
 
633
622
  @user_event_service_stub.call_rpc :import_user_events, request, options: options do |response, operation|
@@ -652,22 +641,21 @@ module Google
652
641
  # Configuration can be applied globally to all clients, or to a single client
653
642
  # on construction.
654
643
  #
655
- # # Examples
656
- #
657
- # To modify the global config, setting the timeout for write_user_event
658
- # to 20 seconds, and all remaining timeouts to 10 seconds:
659
- #
660
- # ::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client.configure do |config|
661
- # config.timeout = 10.0
662
- # config.rpcs.write_user_event.timeout = 20.0
663
- # end
664
- #
665
- # To apply the above configuration only to a new client:
666
- #
667
- # client = ::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client.new do |config|
668
- # config.timeout = 10.0
669
- # config.rpcs.write_user_event.timeout = 20.0
670
- # end
644
+ # @example
645
+ #
646
+ # # Modify the global config, setting the timeout for
647
+ # # write_user_event to 20 seconds,
648
+ # # and all remaining timeouts to 10 seconds.
649
+ # ::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client.configure do |config|
650
+ # config.timeout = 10.0
651
+ # config.rpcs.write_user_event.timeout = 20.0
652
+ # end
653
+ #
654
+ # # Apply the above configuration only to a new client.
655
+ # client = ::Google::Cloud::RecommendationEngine::V1beta1::UserEventService::Client.new do |config|
656
+ # config.timeout = 10.0
657
+ # config.rpcs.write_user_event.timeout = 20.0
658
+ # end
671
659
  #
672
660
  # @!attribute [rw] endpoint
673
661
  # The hostname or hostname:port of the service endpoint.
@@ -82,7 +82,7 @@ module Google
82
82
  # Create credentials
83
83
  credentials = @config.credentials
84
84
  credentials ||= Credentials.default scope: @config.scope
85
- if credentials.is_a?(String) || credentials.is_a?(Hash)
85
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
86
86
  credentials = Credentials.new credentials, scope: @config.scope
87
87
  end
88
88
  @quota_project_id = @config.quota_project
@@ -169,7 +169,9 @@ module Google
169
169
  options.apply_defaults timeout: @config.rpcs.list_operations.timeout,
170
170
  metadata: metadata,
171
171
  retry_policy: @config.rpcs.list_operations.retry_policy
172
- options.apply_defaults metadata: @config.metadata,
172
+
173
+ options.apply_defaults timeout: @config.timeout,
174
+ metadata: @config.metadata,
173
175
  retry_policy: @config.retry_policy
174
176
 
175
177
  @operations_stub.call_rpc :list_operations, request, options: options do |response, operation|
@@ -239,7 +241,9 @@ module Google
239
241
  options.apply_defaults timeout: @config.rpcs.get_operation.timeout,
240
242
  metadata: metadata,
241
243
  retry_policy: @config.rpcs.get_operation.retry_policy
242
- options.apply_defaults metadata: @config.metadata,
244
+
245
+ options.apply_defaults timeout: @config.timeout,
246
+ metadata: @config.metadata,
243
247
  retry_policy: @config.retry_policy
244
248
 
245
249
  @operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
@@ -309,7 +313,9 @@ module Google
309
313
  options.apply_defaults timeout: @config.rpcs.delete_operation.timeout,
310
314
  metadata: metadata,
311
315
  retry_policy: @config.rpcs.delete_operation.retry_policy
312
- options.apply_defaults metadata: @config.metadata,
316
+
317
+ options.apply_defaults timeout: @config.timeout,
318
+ metadata: @config.metadata,
313
319
  retry_policy: @config.retry_policy
314
320
 
315
321
  @operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
@@ -384,7 +390,9 @@ module Google
384
390
  options.apply_defaults timeout: @config.rpcs.cancel_operation.timeout,
385
391
  metadata: metadata,
386
392
  retry_policy: @config.rpcs.cancel_operation.retry_policy
387
- options.apply_defaults metadata: @config.metadata,
393
+
394
+ options.apply_defaults timeout: @config.timeout,
395
+ metadata: @config.metadata,
388
396
  retry_policy: @config.retry_policy
389
397
 
390
398
  @operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
@@ -396,9 +404,9 @@ module Google
396
404
  end
397
405
 
398
406
  ##
399
- # Waits for the specified long-running operation until it is done or reaches
400
- # at most a specified timeout, returning the latest state. If the operation
401
- # is already done, the latest state is immediately returned. If the timeout
407
+ # Waits until the specified long-running operation is done or reaches at most
408
+ # a specified timeout, returning the latest state. If the operation is
409
+ # already done, the latest state is immediately returned. If the timeout
402
410
  # specified is greater than the default HTTP/RPC timeout, the HTTP/RPC
403
411
  # timeout is used. If the server does not support this method, it returns
404
412
  # `google.rpc.Code.UNIMPLEMENTED`.
@@ -456,7 +464,9 @@ module Google
456
464
  options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
457
465
  metadata: metadata,
458
466
  retry_policy: @config.rpcs.wait_operation.retry_policy
459
- options.apply_defaults metadata: @config.metadata,
467
+
468
+ options.apply_defaults timeout: @config.timeout,
469
+ metadata: @config.metadata,
460
470
  retry_policy: @config.retry_policy
461
471
 
462
472
  @operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
@@ -481,22 +491,21 @@ module Google
481
491
  # Configuration can be applied globally to all clients, or to a single client
482
492
  # on construction.
483
493
  #
484
- # # Examples
485
- #
486
- # To modify the global config, setting the timeout for list_operations
487
- # to 20 seconds, and all remaining timeouts to 10 seconds:
488
- #
489
- # ::Google::Longrunning::Operations::Client.configure do |config|
490
- # config.timeout = 10.0
491
- # config.rpcs.list_operations.timeout = 20.0
492
- # end
493
- #
494
- # To apply the above configuration only to a new client:
495
- #
496
- # client = ::Google::Longrunning::Operations::Client.new do |config|
497
- # config.timeout = 10.0
498
- # config.rpcs.list_operations.timeout = 20.0
499
- # end
494
+ # @example
495
+ #
496
+ # # Modify the global config, setting the timeout for
497
+ # # list_operations to 20 seconds,
498
+ # # and all remaining timeouts to 10 seconds.
499
+ # ::Google::Longrunning::Operations::Client.configure do |config|
500
+ # config.timeout = 10.0
501
+ # config.rpcs.list_operations.timeout = 20.0
502
+ # end
503
+ #
504
+ # # Apply the above configuration only to a new client.
505
+ # client = ::Google::Longrunning::Operations::Client.new do |config|
506
+ # config.timeout = 10.0
507
+ # config.rpcs.list_operations.timeout = 20.0
508
+ # end
500
509
  #
501
510
  # @!attribute [rw] endpoint
502
511
  # The hostname or hostname:port of the service endpoint.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module RecommendationEngine
23
23
  module V1beta1
24
- VERSION = "0.3.1"
24
+ VERSION = "0.3.5"
25
25
  end
26
26
  end
27
27
  end
@@ -1,12 +1,12 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/recommendationengine/v1beta1/catalog.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/field_behavior_pb'
7
5
  require 'google/cloud/recommendationengine/v1beta1/common_pb'
8
6
  require 'google/protobuf/struct_pb'
9
7
  require 'google/api/annotations_pb'
8
+ require 'google/protobuf'
9
+
10
10
  Google::Protobuf::DescriptorPool.generated_pool.build do
11
11
  add_file("google/cloud/recommendationengine/v1beta1/catalog.proto", :syntax => :proto3) do
12
12
  add_message "google.cloud.recommendationengine.v1beta1.CatalogItem" do
@@ -1,8 +1,6 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/recommendationengine/v1beta1/catalog_service.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/annotations_pb'
7
5
  require 'google/api/client_pb'
8
6
  require 'google/api/field_behavior_pb'
@@ -13,6 +11,8 @@ require 'google/cloud/recommendationengine/v1beta1/recommendationengine_resource
13
11
  require 'google/longrunning/operations_pb'
14
12
  require 'google/protobuf/empty_pb'
15
13
  require 'google/protobuf/field_mask_pb'
14
+ require 'google/protobuf'
15
+
16
16
  Google::Protobuf::DescriptorPool.generated_pool.build do
17
17
  add_file("google/cloud/recommendationengine/v1beta1/catalog_service.proto", :syntax => :proto3) do
18
18
  add_message "google.cloud.recommendationengine.v1beta1.CreateCatalogItemRequest" do
@@ -27,7 +27,7 @@ module Google
27
27
  # Service for ingesting catalog information of the customer's website.
28
28
  class Service
29
29
 
30
- include GRPC::GenericService
30
+ include ::GRPC::GenericService
31
31
 
32
32
  self.marshal_class_method = :encode
33
33
  self.unmarshal_class_method = :decode
@@ -1,9 +1,9 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/recommendationengine/v1beta1/common.proto
3
3
 
4
+ require 'google/api/annotations_pb'
4
5
  require 'google/protobuf'
5
6
 
6
- require 'google/api/annotations_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_file("google/cloud/recommendationengine/v1beta1/common.proto", :syntax => :proto3) do
9
9
  add_message "google.cloud.recommendationengine.v1beta1.FeatureMap" do
@@ -1,8 +1,6 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/recommendationengine/v1beta1/import.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/field_behavior_pb'
7
5
  require 'google/api/resource_pb'
8
6
  require 'google/cloud/recommendationengine/v1beta1/catalog_pb'
@@ -11,6 +9,8 @@ require 'google/cloud/recommendationengine/v1beta1/recommendationengine_resource
11
9
  require 'google/protobuf/timestamp_pb'
12
10
  require 'google/rpc/status_pb'
13
11
  require 'google/api/annotations_pb'
12
+ require 'google/protobuf'
13
+
14
14
  Google::Protobuf::DescriptorPool.generated_pool.build do
15
15
  add_file("google/cloud/recommendationengine/v1beta1/import.proto", :syntax => :proto3) do
16
16
  add_message "google.cloud.recommendationengine.v1beta1.GcsSource" do
@@ -1,14 +1,14 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/recommendationengine/v1beta1/prediction_apikey_registry_service.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/annotations_pb'
7
5
  require 'google/api/field_behavior_pb'
8
6
  require 'google/api/resource_pb'
9
7
  require 'google/protobuf/empty_pb'
10
8
  require 'google/api/client_pb'
11
9
  require 'google/cloud/recommendationengine/v1beta1/recommendationengine_resources_pb'
10
+ require 'google/protobuf'
11
+
12
12
  Google::Protobuf::DescriptorPool.generated_pool.build do
13
13
  add_file("google/cloud/recommendationengine/v1beta1/prediction_apikey_registry_service.proto", :syntax => :proto3) do
14
14
  add_message "google.cloud.recommendationengine.v1beta1.PredictionApiKeyRegistration" do
@@ -31,7 +31,7 @@ module Google
31
31
  # key. You can register up to 20 API keys per project.
32
32
  class Service
33
33
 
34
- include GRPC::GenericService
34
+ include ::GRPC::GenericService
35
35
 
36
36
  self.marshal_class_method = :encode
37
37
  self.unmarshal_class_method = :decode
@@ -1,14 +1,14 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/recommendationengine/v1beta1/prediction_service.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/annotations_pb'
7
5
  require 'google/api/field_behavior_pb'
8
6
  require 'google/api/resource_pb'
9
7
  require 'google/cloud/recommendationengine/v1beta1/user_event_pb'
10
8
  require 'google/protobuf/struct_pb'
11
9
  require 'google/api/client_pb'
10
+ require 'google/protobuf'
11
+
12
12
  Google::Protobuf::DescriptorPool.generated_pool.build do
13
13
  add_file("google/cloud/recommendationengine/v1beta1/prediction_service.proto", :syntax => :proto3) do
14
14
  add_message "google.cloud.recommendationengine.v1beta1.PredictRequest" do
@@ -27,7 +27,7 @@ module Google
27
27
  # Service for making recommendation prediction.
28
28
  class Service
29
29
 
30
- include GRPC::GenericService
30
+ include ::GRPC::GenericService
31
31
 
32
32
  self.marshal_class_method = :encode
33
33
  self.unmarshal_class_method = :decode
@@ -1,9 +1,9 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/recommendationengine/v1beta1/recommendationengine_resources.proto
3
3
 
4
+ require 'google/api/resource_pb'
4
5
  require 'google/protobuf'
5
6
 
6
- require 'google/api/resource_pb'
7
7
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
8
  add_file("google/cloud/recommendationengine/v1beta1/recommendationengine_resources.proto", :syntax => :proto3) do
9
9
  end
@@ -1,13 +1,13 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/recommendationengine/v1beta1/user_event.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/field_behavior_pb'
7
5
  require 'google/cloud/recommendationengine/v1beta1/catalog_pb'
8
6
  require 'google/cloud/recommendationengine/v1beta1/common_pb'
9
7
  require 'google/protobuf/timestamp_pb'
10
8
  require 'google/api/annotations_pb'
9
+ require 'google/protobuf'
10
+
11
11
  Google::Protobuf::DescriptorPool.generated_pool.build do
12
12
  add_file("google/cloud/recommendationengine/v1beta1/user_event.proto", :syntax => :proto3) do
13
13
  add_message "google.cloud.recommendationengine.v1beta1.UserEvent" do
@@ -1,8 +1,6 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/recommendationengine/v1beta1/user_event_service.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/annotations_pb'
7
5
  require 'google/api/field_behavior_pb'
8
6
  require 'google/api/httpbody_pb'
@@ -13,6 +11,8 @@ require 'google/longrunning/operations_pb'
13
11
  require 'google/protobuf/timestamp_pb'
14
12
  require 'google/type/date_pb'
15
13
  require 'google/api/client_pb'
14
+ require 'google/protobuf'
15
+
16
16
  Google::Protobuf::DescriptorPool.generated_pool.build do
17
17
  add_file("google/cloud/recommendationengine/v1beta1/user_event_service.proto", :syntax => :proto3) do
18
18
  add_message "google.cloud.recommendationengine.v1beta1.PurgeUserEventsRequest" do
@@ -27,7 +27,7 @@ module Google
27
27
  # Service for ingesting end user actions on the customer website.
28
28
  class Service
29
29
 
30
- include GRPC::GenericService
30
+ include ::GRPC::GenericService
31
31
 
32
32
  self.marshal_class_method = :encode
33
33
  self.unmarshal_class_method = :decode